diff -Nru kget-20.12.3/CMakeLists.txt kget-21.04.0/CMakeLists.txt --- kget-20.12.3/CMakeLists.txt 2021-03-02 00:48:43.000000000 +0000 +++ kget-21.04.0/CMakeLists.txt 2021-04-16 08:44:10.000000000 +0000 @@ -1,15 +1,15 @@ -cmake_minimum_required(VERSION 3.0) +cmake_minimum_required(VERSION 3.5 FATAL_ERROR) # KDE Application Version, managed by release script -set(RELEASE_SERVICE_VERSION_MAJOR "20") -set(RELEASE_SERVICE_VERSION_MINOR "12") -set(RELEASE_SERVICE_VERSION_MICRO "3") +set(RELEASE_SERVICE_VERSION_MAJOR "21") +set(RELEASE_SERVICE_VERSION_MINOR "04") +set(RELEASE_SERVICE_VERSION_MICRO "0") set(RELEASE_SERVICE_VERSION "${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}") project(kget VERSION ${RELEASE_SERVICE_VERSION}) -set(KF5_VERSION "5.55.0") -set(REQUIRED_QT_VERSION "5.7.0") +set(KF5_VERSION "5.68.0") +set(REQUIRED_QT_VERSION "5.12.0") find_package(ECM ${KF5_VERSION} REQUIRED NO_MODULE) @@ -24,6 +24,7 @@ include(GenerateExportHeader) include(ECMQtDeclareLoggingCategory) include(ECMSetupVersion) +include(ECMSetupQtPluginMacroNames) ecm_setup_version(PROJECT VARIABLE_PREFIX KGET VERSION_HEADER "kget_version.h") @@ -115,7 +116,9 @@ add_definitions(-DHAVE_QGPGME) endif() -set (KGET_PLUGIN_INSTALL_DIR ${PLUGIN_INSTALL_DIR}/kget) +set (KGET_PLUGIN_INSTALL_DIR ${KDE_INSTALL_PLUGINDIR}/kget) + +ecm_setup_qtplugin_macro_names(JSON_NONE KGET_EXPORT_PLUGIN KGET_EXPORT_PLUGIN_CONFIG) add_subdirectory(conf) add_subdirectory(core) @@ -195,7 +198,8 @@ ecm_qt_declare_logging_category(kgetcore_SRCS HEADER kget_debug.h IDENTIFIER KGET_DEBUG - CATEGORY_NAME kget) + CATEGORY_NAME kget + DESCRIPTION "KGet" EXPORT KGET) kconfig_add_kcfg_files(kgetcore_SRCS conf/settings.kcfgc) @@ -227,7 +231,7 @@ set_target_properties(kgetcore PROPERTIES VERSION 5.0.0 SOVERSION 5 ) -install(TARGETS kgetcore ${INSTALL_TARGETS_DEFAULT_ARGS}) +install(TARGETS kgetcore ${KDE_INSTALL_TARGETS_DEFAULT_ARGS}) # kget @@ -325,15 +329,14 @@ target_link_libraries(kget QGpgme) endif() -install(TARGETS kget ${INSTALL_TARGETS_DEFAULT_ARGS}) - -if (${ECM_VERSION} STRGREATER "5.58.0") - install(FILES kget.categories DESTINATION ${KDE_INSTALL_LOGGINGCATEGORIESDIR}) -else() - install(FILES kget.categories DESTINATION ${KDE_INSTALL_CONFDIR}) -endif() +install(TARGETS kget ${KDE_INSTALL_TARGETS_DEFAULT_ARGS}) -install(FILES org.kde.kget.appdata.xml DESTINATION ${CMAKE_INSTALL_METAINFODIR}) +ecm_qt_install_logging_categories( + EXPORT KGET + FILE kget.categories + DESTINATION ${KDE_INSTALL_LOGGINGCATEGORIESDIR} + ) +install(FILES org.kde.kget.appdata.xml DESTINATION ${KDE_INSTALL_METAINFODIR}) feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES) ki18n_install(po) diff -Nru kget-20.12.3/CMakePresets.json kget-21.04.0/CMakePresets.json --- kget-20.12.3/CMakePresets.json 1970-01-01 00:00:00.000000000 +0000 +++ kget-21.04.0/CMakePresets.json 2021-04-14 15:24:35.000000000 +0000 @@ -0,0 +1,45 @@ +{ + "version": 1, + "configurePresets": [ + { + "name": "dev", + "displayName": "Build as debug", + "generator": "Ninja", + "binaryDir": "${sourceDir}/build", + "cacheVariables": { + "CMAKE_BUILD_TYPE": "Debug", + "CMAKE_EXPORT_COMPILE_COMMANDS": "ON" + } + }, + { + "name": "asan", + "displayName": "Build with Asan support.", + "generator": "Ninja", + "binaryDir": "${sourceDir}/build-asan", + "cacheVariables": { + "CMAKE_BUILD_TYPE": "Debug", + "ECM_ENABLE_SANITIZERS" : "'address;undefined'", + "CMAKE_EXPORT_COMPILE_COMMANDS": "ON" + } + }, + { + "name": "release", + "displayName": "Build as release mode.", + "generator": "Ninja", + "binaryDir": "${sourceDir}/build-release", + "cacheVariables": { + "CMAKE_BUILD_TYPE": "Release" + } + }, + { + "name": "profile", + "displayName": "profile", + "generator": "Ninja", + "binaryDir": "${sourceDir}/build-profile", + "cacheVariables": { + "CMAKE_BUILD_TYPE": "RelWithDebInfo", + "CMAKE_EXPORT_COMPILE_COMMANDS": "ON" + } + } + ] +} diff -Nru kget-20.12.3/conf/autopastemodel.cpp kget-21.04.0/conf/autopastemodel.cpp --- kget-20.12.3/conf/autopastemodel.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/conf/autopastemodel.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -42,16 +42,16 @@ switch(index.column()) { case AutoPasteModel::Type: { - KComboBox *types = new KComboBox(parent); + auto *types = new KComboBox(parent); types->setModel(m_types); return types; } case AutoPasteModel::Pattern: { - KLineEdit *pattern = new KLineEdit(parent); + auto *pattern = new KLineEdit(parent); return pattern; } case AutoPasteModel::PatternSyntax: { - KComboBox *syntaxes = new KComboBox(parent); + auto *syntaxes = new KComboBox(parent); syntaxes->setModel(m_syntaxes); return syntaxes; } @@ -68,18 +68,18 @@ switch (index.column()) { case AutoPasteModel::Type: { - KComboBox *type = static_cast(editor); + auto *type = static_cast(editor); const int row = type->findData(index.data(Qt::EditRole)); type->setCurrentIndex(row); break; } case AutoPasteModel::Pattern: { - KLineEdit *line = static_cast(editor); + auto *line = static_cast(editor); line->setText(index.data(Qt::EditRole).toString()); break; } case AutoPasteModel::PatternSyntax: { - KComboBox *syntax = static_cast(editor); + auto *syntax = static_cast(editor); const int row = syntax->findData(index.data(Qt::EditRole)); syntax->setCurrentIndex(row); break; @@ -97,13 +97,13 @@ switch (index.column()) { case AutoPasteModel::Type: { - KComboBox *typeBox = static_cast(editor); + auto *typeBox = static_cast(editor); const int type = typeBox->itemData(typeBox->currentIndex()).toInt(); model->setData(index, type); break; } case AutoPasteModel::Pattern: { - KLineEdit *line = static_cast(editor); + auto *line = static_cast(editor); const QString text = line->text(); if (!text.isEmpty()) { model->setData(index, text); @@ -111,7 +111,7 @@ break; } case AutoPasteModel::PatternSyntax: { - KComboBox *syntaxBox = static_cast(editor); + auto *syntaxBox = static_cast(editor); const int syntax = syntaxBox->itemData(syntaxBox->currentIndex()).toInt(); model->setData(index, syntax); break; @@ -252,7 +252,7 @@ return false; } - emit dataChanged(index, index); + Q_EMIT dataChanged(index, index); return true; } diff -Nru kget-20.12.3/conf/autopastemodel.h kget-21.04.0/conf/autopastemodel.h --- kget-20.12.3/conf/autopastemodel.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/conf/autopastemodel.h 2021-04-14 15:24:35.000000000 +0000 @@ -60,7 +60,7 @@ RegExp }; - explicit AutoPasteModel(QObject *parent = 0); + explicit AutoPasteModel(QObject *parent = nullptr); ~AutoPasteModel() override; int rowCount(const QModelIndex &index = QModelIndex()) const override; @@ -87,7 +87,7 @@ */ bool moveItem(int sourceRow, int destinationRow); - public slots: + public Q_SLOTS: /** * Loads the stored data * @see save() diff -Nru kget-20.12.3/conf/CMakeLists.txt kget-21.04.0/conf/CMakeLists.txt --- kget-20.12.3/conf/CMakeLists.txt 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/conf/CMakeLists.txt 2021-04-14 15:24:35.000000000 +0000 @@ -1,4 +1,4 @@ -install(FILES kget.kcfg DESTINATION ${KCFG_INSTALL_DIR}) -install(FILES kget.upd DESTINATION ${KCONF_UPDATE_INSTALL_DIR}) -install(PROGRAMS kget_sensitive.pl DESTINATION ${KCONF_UPDATE_INSTALL_DIR}) -install(PROGRAMS kget_limitdownloads.pl DESTINATION ${KCONF_UPDATE_INSTALL_DIR}) +install(FILES kget.kcfg DESTINATION ${KDE_INSTALL_KCFGDIR}) +install(FILES kget.upd DESTINATION ${KDE_INSTALL_KCONFUPDATEDIR}) +install(PROGRAMS kget_sensitive.pl DESTINATION ${KDE_INSTALL_KCONFUPDATEDIR}) +install(PROGRAMS kget_limitdownloads.pl DESTINATION ${KDE_INSTALL_KCONFUPDATEDIR}) diff -Nru kget-20.12.3/conf/dlgwebinterface.cpp kget-21.04.0/conf/dlgwebinterface.cpp --- kget-20.12.3/conf/dlgwebinterface.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/conf/dlgwebinterface.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -17,8 +17,7 @@ #include DlgWebinterface::DlgWebinterface(QDialog *parent) - : QWidget(parent), - m_wallet(nullptr) + : QWidget(parent) { setupUi(this); @@ -66,7 +65,7 @@ if (m_wallet) { m_wallet->writePassword("Webinterface", webinterfacePwd->text()); } - emit saved(); + Q_EMIT saved(); } diff -Nru kget-20.12.3/conf/dlgwebinterface.h kget-21.04.0/conf/dlgwebinterface.h --- kget-20.12.3/conf/dlgwebinterface.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/conf/dlgwebinterface.h 2021-04-14 15:24:35.000000000 +0000 @@ -27,7 +27,7 @@ DlgWebinterface(QDialog *parent = nullptr); ~DlgWebinterface() override; -signals: +Q_SIGNALS: void changed(); void saved(); @@ -37,7 +37,7 @@ void walletOpened(bool); private: - KWallet::Wallet *m_wallet; + KWallet::Wallet *m_wallet = nullptr; }; #endif diff -Nru kget-20.12.3/conf/integrationpreferences.cpp kget-21.04.0/conf/integrationpreferences.cpp --- kget-20.12.3/conf/integrationpreferences.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/conf/integrationpreferences.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -46,7 +46,7 @@ m_model = new AutoPasteModel(this); m_model->load(); ui.list->setModel(m_model); - AutoPasteDelegate *delegate = new AutoPasteDelegate(ui.type->model(), ui.patternSyntax->model(), this); + auto *delegate = new AutoPasteDelegate(ui.type->model(), ui.patternSyntax->model(), this); ui.list->setItemDelegate(delegate); QByteArray loadedState = QByteArray::fromBase64(Settings::autoPasteHeaderState().toLatin1()); @@ -100,7 +100,7 @@ ui.pattern->clear(); ui.pattern->setFocus(); - emit changed(); + Q_EMIT changed(); } void IntegrationPreferences::slotRemoveItem() @@ -111,7 +111,7 @@ const QModelIndex index = selection->selectedRows().first(); m_model->removeRow(index.row()); } - emit changed(); + Q_EMIT changed(); } } @@ -120,7 +120,7 @@ const int row = ui.list->currentIndex().row(); m_model->moveItem(row, row - 1); slotUpdateButtons(); - emit changed(); + Q_EMIT changed(); } void IntegrationPreferences::slotDecreasePriority() @@ -128,6 +128,6 @@ const int row = ui.list->currentIndex().row(); m_model->moveItem(row, row + 2); slotUpdateButtons(); - emit changed(); + Q_EMIT changed(); } diff -Nru kget-20.12.3/conf/integrationpreferences.h kget-21.04.0/conf/integrationpreferences.h --- kget-20.12.3/conf/integrationpreferences.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/conf/integrationpreferences.h 2021-04-14 15:24:35.000000000 +0000 @@ -35,14 +35,14 @@ explicit IntegrationPreferences(KConfigDialog *parent, Qt::WindowFlags f = Qt::Widget); ~IntegrationPreferences() override; - private slots: + private Q_SLOTS: void slotUpdateButtons(); void slotAddItem(); void slotRemoveItem(); void slotIncreasePriority(); void slotDecreasePriority(); - signals: + Q_SIGNALS: /** * Emitted whenever something changes */ diff -Nru kget-20.12.3/conf/pluginselector.cpp kget-21.04.0/conf/pluginselector.cpp --- kget-20.12.3/conf/pluginselector.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/conf/pluginselector.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -11,12 +11,9 @@ #include "core/kget.h" -#include -#include #include #include #include -#include #include PluginSelector::PluginSelector(QDialog * parent) diff -Nru kget-20.12.3/conf/pluginselector.h kget-21.04.0/conf/pluginselector.h --- kget-20.12.3/conf/pluginselector.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/conf/pluginselector.h 2021-04-14 15:24:35.000000000 +0000 @@ -21,7 +21,7 @@ PluginSelector(QDialog * parent); ~PluginSelector() override; - private slots: + private Q_SLOTS: void saveState(); void loadDefaults(); }; diff -Nru kget-20.12.3/conf/preferencesdialog.cpp kget-21.04.0/conf/preferencesdialog.cpp --- kget-20.12.3/conf/preferencesdialog.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/conf/preferencesdialog.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -27,18 +27,18 @@ PreferencesDialog::PreferencesDialog(QWidget * parent, KConfigSkeleton * skeleton) : KConfigDialog(parent, "preferences", skeleton) { - QWidget *appearance = new QWidget(this); - TransfersGroupWidget *groups = new TransfersGroupWidget(this); - DlgWebinterface *webinterface = new DlgWebinterface(this); + auto *appearance = new QWidget(this); + auto *groups = new TransfersGroupWidget(this); + auto *webinterface = new DlgWebinterface(this); connect(webinterface, &DlgWebinterface::changed, this, &PreferencesDialog::enableApplyButton); connect(webinterface, &DlgWebinterface::saved, this, &PreferencesDialog::settingsChangedSlot); - QWidget *network = new QWidget(this); - QWidget *advanced = new QWidget(this); - IntegrationPreferences *integration = new IntegrationPreferences(this); + auto *network = new QWidget(this); + auto *advanced = new QWidget(this); + auto *integration = new IntegrationPreferences(this); connect(integration, &IntegrationPreferences::changed, this, &PreferencesDialog::enableApplyButton); - VerificationPreferences *verification = new VerificationPreferences(this); + auto *verification = new VerificationPreferences(this); connect(verification, &VerificationPreferences::changed, this, &PreferencesDialog::enableApplyButton); - PluginSelector * pluginSelector = new PluginSelector(this); + auto * pluginSelector = new PluginSelector(this); connect(pluginSelector, &PluginSelector::changed, this, &PreferencesDialog::enableApplyButton); Ui::DlgAppearance dlgApp; @@ -98,7 +98,7 @@ void PreferencesDialog::updateWidgetsDefault() { - emit resetDefaults(); + Q_EMIT resetDefaults(); KConfigDialog::updateWidgetsDefault(); } diff -Nru kget-20.12.3/conf/preferencesdialog.h kget-21.04.0/conf/preferencesdialog.h --- kget-20.12.3/conf/preferencesdialog.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/conf/preferencesdialog.h 2021-04-14 15:24:35.000000000 +0000 @@ -12,7 +12,7 @@ #include "ui_dlgadvanced.h" -#include +#include class QWidget; class KConfigSkeleton; @@ -23,10 +23,10 @@ public: PreferencesDialog( QWidget * parent, KConfigSkeleton * config ); - signals: + Q_SIGNALS: void resetDefaults(); - private slots: + private Q_SLOTS: void slotToggleAfterFinishAction(int state); void disableApplyButton(); void enableApplyButton(); diff -Nru kget-20.12.3/conf/transfersgrouptree.cpp kget-21.04.0/conf/transfersgrouptree.cpp --- kget-20.12.3/conf/transfersgrouptree.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/conf/transfersgrouptree.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -42,7 +42,7 @@ void TransfersGroupDelegate::setEditorData(QWidget *editor, const QModelIndex &index) const { if (index.column() == TransferTreeModel::Name) { - KLineEdit *groupEditor = static_cast(editor); + auto *groupEditor = static_cast(editor); groupEditor->setText(index.data().toString()); } else { BasicTransfersViewDelegate::setEditorData(editor, index); @@ -52,7 +52,7 @@ void TransfersGroupDelegate::setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const { if (index.column() == TransferTreeModel::Name) { - KLineEdit *groupEditor = static_cast(editor); + auto *groupEditor = static_cast(editor); const QString newName = groupEditor->text(); const QString oldName = index.data().toString(); @@ -150,5 +150,5 @@ group->setIconName(icon); } } - emit dataChanged(indexList.first(),indexList.last()); + Q_EMIT dataChanged(indexList.first(),indexList.last()); } diff -Nru kget-20.12.3/conf/transfersgrouptree.h kget-21.04.0/conf/transfersgrouptree.h --- kget-20.12.3/conf/transfersgrouptree.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/conf/transfersgrouptree.h 2021-04-14 15:24:35.000000000 +0000 @@ -39,7 +39,7 @@ TransfersGroupTree(QWidget *parent = nullptr); void setModel(QAbstractItemModel *model) override; - public slots: + public Q_SLOTS: void editCurrent(); void addGroup(); void deleteSelectedGroup(); diff -Nru kget-20.12.3/conf/transfersgroupwidget.h kget-21.04.0/conf/transfersgroupwidget.h --- kget-20.12.3/conf/transfersgroupwidget.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/conf/transfersgroupwidget.h 2021-04-14 15:24:35.000000000 +0000 @@ -22,7 +22,7 @@ public: TransfersGroupWidget(QWidget *parent = nullptr); - private slots: + private Q_SLOTS: void slotSelectionChanged(); private: diff -Nru kget-20.12.3/conf/verificationpreferences.h kget-21.04.0/conf/verificationpreferences.h --- kget-20.12.3/conf/verificationpreferences.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/conf/verificationpreferences.h 2021-04-14 15:24:35.000000000 +0000 @@ -33,13 +33,13 @@ public: explicit VerificationPreferences(KConfigDialog *parent, Qt::WindowFlags f = Qt::Widget); - signals: + Q_SIGNALS: /** * Emitted when the mirrors change */ void changed(); - private slots: + private Q_SLOTS: void slotDefaultClicked(); void slotAccpeted(); void slotRejected(); diff -Nru kget-20.12.3/core/basedialog.h kget-21.04.0/core/basedialog.h --- kget-20.12.3/core/basedialog.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/basedialog.h 2021-04-14 15:24:35.000000000 +0000 @@ -40,7 +40,7 @@ ~KGetSaveSizeDialog() override; private: - QByteArray m_name; + const QByteArray m_name; }; #endif diff -Nru kget-20.12.3/core/datasourcefactory.cpp kget-21.04.0/core/datasourcefactory.cpp --- kget-20.12.3/core/datasourcefactory.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/datasourcefactory.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -27,7 +27,7 @@ #include #include #include -#include +#include #include "kget_debug.h" @@ -38,7 +38,7 @@ DataSourceFactory::DataSourceFactory(QObject *parent, const QUrl &dest, KIO::filesize_t size, KIO::fileoffset_t segSize) : QObject(parent), - m_capabilities(0), + m_capabilities(), m_dest(dest), m_size(size), m_downloadedSize(0), @@ -46,8 +46,8 @@ m_speed(0), m_percent(0), m_tempOffset(0), - m_startedChunks(0), - m_finishedChunks(0), + m_startedChunks(nullptr), + m_finishedChunks(nullptr), m_putJob(nullptr), m_doDownload(true), m_open(false), @@ -61,7 +61,7 @@ m_sizeInitiallyDefined(m_size), m_sizeFoundOnFinish(false), m_maxMirrorsUsed(3), - m_speedTimer(0), + m_speedTimer(nullptr), m_status(Job::Stopped), m_statusBeforeMove(m_status), m_verifier(nullptr), @@ -139,7 +139,7 @@ { m_size = fileSize; qCDebug(KGET_DEBUG) << source << "found size" << m_size << "and is assigned segments" << segmentRange << this; - emit dataSourceFactoryChange(Transfer::Tc_TotalSize); + Q_EMIT dataSourceFactoryChange(Transfer::Tc_TotalSize); init(); @@ -497,7 +497,7 @@ { TransferDataSource * ds = m_sources.take(old); m_sources[newUrl] = ds; - emit dataSourceFactoryChange(Transfer::Tc_Source | Transfer::Tc_FileName); + Q_EMIT dataSourceFactoryChange(Transfer::Tc_Source | Transfer::Tc_FileName); } void DataSourceFactory::removeMirror(const QUrl &url) @@ -760,12 +760,12 @@ { Q_UNUSED(job) - KIO::filesize_t tempSize = static_cast(m_tempData.size()); + auto tempSize = static_cast(m_tempData.size()); //the complete data has been written if (written == tempSize)//TODO if not same cache it temporarily! { m_downloadedSize += written; - emit dataSourceFactoryChange(Transfer::Tc_DownloadedSize); + Q_EMIT dataSourceFactoryChange(Transfer::Tc_DownloadedSize); // m_tempCache.clear(); } @@ -783,7 +783,7 @@ { Q_UNUSED(job) m_percent = p; - emit dataSourceFactoryChange(Transfer::Tc_Percent); + Q_EMIT dataSourceFactoryChange(Transfer::Tc_Percent); } void DataSourceFactory::speedChanged() @@ -799,7 +799,7 @@ m_percent = percent; Transfer::ChangesFlags change = (percentChanged ? (Transfer::Tc_DownloadSpeed | Transfer::Tc_Percent) : Transfer::Tc_DownloadSpeed); - emit dataSourceFactoryChange(change); + Q_EMIT dataSourceFactoryChange(change); } void DataSourceFactory::killPutJob() @@ -943,7 +943,7 @@ change |= Transfer::Tc_Percent; m_percent = (m_downloadedSize * 100 / m_size); } - emit dataSourceFactoryChange(change); + Q_EMIT dataSourceFactoryChange(change); m_status = Job::Stopped; start(); @@ -1063,7 +1063,7 @@ //m_status = static_cast(e.attribute("status").toInt()); if (change != Transfer::Tc_None) { - emit dataSourceFactoryChange(change); + Q_EMIT dataSourceFactoryChange(change); } } @@ -1111,7 +1111,7 @@ break; } - emit dataSourceFactoryChange(change); + Q_EMIT dataSourceFactoryChange(change); } void DataSourceFactory::save(const QDomElement &element) @@ -1264,7 +1264,7 @@ if (oldCaps != newCaps) { m_capabilities = newCaps; - emit capabilitiesChanged(); + Q_EMIT capabilitiesChanged(); } } diff -Nru kget-20.12.3/core/datasourcefactory.h kget-21.04.0/core/datasourcefactory.h --- kget-20.12.3/core/datasourcefactory.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/datasourcefactory.h 2021-04-14 15:24:35.000000000 +0000 @@ -172,11 +172,11 @@ void dataSourceFactoryChange(Transfer::ChangesFlags change); void log(const QString &message, Transfer::LogLevel logLevel); - public slots: + public Q_SLOTS: void save(const QDomElement &element); void load(const QDomElement *e); - private slots: + private Q_SLOTS: void slotUpdateCapabilities(); void slotRemovedFile(); diff -Nru kget-20.12.3/core/download.cpp kget-21.04.0/core/download.cpp --- kget-20.12.3/core/download.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/download.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -53,22 +53,22 @@ //TODO: Do a Message box here torrentFile.write(m_data); torrentFile.close(); - emit finishedSuccessfully(m_destUrl, m_data); - m_data = 0; + Q_EMIT finishedSuccessfully(m_destUrl, m_data); + m_data = nullptr; break; } case KIO::ERR_FILE_ALREADY_EXIST: { qCDebug(KGET_DEBUG) << "ERROR - File already exists"; QFile file(m_destUrl.toLocalFile()); - emit finishedSuccessfully(m_destUrl, file.readAll()); - m_data = 0; + Q_EMIT finishedSuccessfully(m_destUrl, file.readAll()); + m_data = nullptr; break; } default: qCDebug(KGET_DEBUG) << "We are sorry to say you, that there were errors while downloading :("; - m_data = 0; - emit finishedWithError(); + m_data = nullptr; + Q_EMIT finishedWithError(); break; } } diff -Nru kget-20.12.3/core/download.h kget-21.04.0/core/download.h --- kget-20.12.3/core/download.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/download.h 2021-04-14 15:24:35.000000000 +0000 @@ -31,12 +31,12 @@ void finishedSuccessfully(QUrl dest, QByteArray data); void finishedWithError(); - private slots: + private Q_SLOTS: void slotResult(KJob * job); void slotData(KIO::Job *job, const QByteArray& data); private: - KIO::TransferJob *m_copyJob; + KIO::TransferJob *m_copyJob = nullptr; QUrl m_srcUrl; QUrl m_destUrl; QUrl m_destFile; diff -Nru kget-20.12.3/core/filedeleter.cpp kget-21.04.0/core/filedeleter.cpp --- kget-20.12.3/core/filedeleter.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/filedeleter.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -56,7 +56,7 @@ void FileDeleter::Private::slotResult(KJob *job) { - KIO::DeleteJob *deleteJob = static_cast(job); + auto *deleteJob = static_cast(job); m_jobs.remove(deleteJob->urls().first()); } diff -Nru kget-20.12.3/core/filemodel.cpp kget-21.04.0/core/filemodel.cpp --- kget-20.12.3/core/filemodel.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/filemodel.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -349,13 +349,13 @@ } - FileItem *item = static_cast(index.internalPointer()); + auto *item = static_cast(index.internalPointer()); const QVariant data = item->data(index.column(), role); //get the status icon as well as status text if (index.column() == FileItem::Status) { - const Job::Status status = static_cast(data.toInt()); + const auto status = static_cast(data.toInt()); if (item->isFile()) { if (role == Qt::DisplayRole) { @@ -394,7 +394,7 @@ return false; } - FileItem *item = static_cast(index.internalPointer()); + auto *item = static_cast(index.internalPointer()); if ((index.column() == FileItem::File) && (role == Qt::CheckStateRole)) { const bool worked = item->setData(index.column(), value, this, role); @@ -491,7 +491,7 @@ return QModelIndex(); } - FileItem *childItem = static_cast(index.internalPointer()); + auto *childItem = static_cast(index.internalPointer()); FileItem *parentItem = childItem->parent(); if ((parentItem == m_rootItem) || (!parentItem)) { @@ -526,11 +526,11 @@ void FileModel::changeData(int row, int column, FileItem *item, bool finished) { QModelIndex index = createIndex(row, column, item); - emit dataChanged(index, index); + Q_EMIT dataChanged(index, index); if (finished) { const QUrl file = getUrl(index); - emit fileFinished(file); + Q_EMIT fileFinished(file); } } @@ -609,7 +609,7 @@ if (item == m_rootItem) { - item = 0; + item = nullptr; } else { @@ -640,7 +640,7 @@ return false; } - FileItem *item = static_cast(index.internalPointer()); + auto *item = static_cast(index.internalPointer()); //only files can be renamed, no folders return item->isFile(); @@ -653,7 +653,7 @@ return; } - FileItem *item = static_cast(file.internalPointer()); + auto *item = static_cast(file.internalPointer()); //only files can be renamed, no folders if (!item->isFile()) { return; @@ -672,7 +672,7 @@ setData(file, newName); - emit rename(oldUrl, newUrl); + Q_EMIT rename(oldUrl, newUrl); } void FileModel::renameFailed(const QUrl &beforeRename, const QUrl &afterRename) @@ -690,7 +690,7 @@ { if (m_checkStateChanged) { - emit checkStateChanged(); + Q_EMIT checkStateChanged(); } m_checkStateChanged = false; diff -Nru kget-20.12.3/core/filemodel.h kget-21.04.0/core/filemodel.h --- kget-20.12.3/core/filemodel.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/filemodel.h 2021-04-14 15:24:35.000000000 +0000 @@ -162,7 +162,7 @@ */ bool isFile(const QModelIndex &index) const; - public slots: + public Q_SLOTS: /** * Watches if the check state changes, the result of that will be emitted * when stopWatchCheckState() is being called() @@ -203,7 +203,7 @@ void changeData(int row, int column, FileItem *item, bool fileFinished = false); - private slots: + private Q_SLOTS: void renameFailed(const QUrl &beforeRename, const QUrl &afterRename); private: diff -Nru kget-20.12.3/core/keydownloader.cpp kget-21.04.0/core/keydownloader.cpp --- kget-20.12.3/core/keydownloader.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/keydownloader.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -90,7 +90,7 @@ } if (mirror.isEmpty()) { - KMessageBox::error(0, + KMessageBox::error(nullptr, i18n("No useful key server found, key not downloaded. Add more servers to the settings or restart KGet and retry downloading."), i18n("No key server")); return; @@ -122,11 +122,11 @@ } const QString fingerprint = m_jobs[job]; - KIO::StoredTransferJob *transferJob = static_cast(job); + auto *transferJob = static_cast(job); if (transferJob->isErrorPage()) { qCDebug(KGET_DEBUG) << "Mirror did not work, try another one."; - downloadKey(fingerprint, 0, true); + downloadKey(fingerprint, nullptr, true); return; } @@ -134,7 +134,7 @@ QByteArray data = transferJob->data(); if (data.isEmpty()) { qCDebug(KGET_DEBUG) << "Downloaded data is empty."; - downloadKey(fingerprint, 0, true); + downloadKey(fingerprint, nullptr, true); return; } @@ -142,7 +142,7 @@ const int indexEnd = data.indexOf("", indexStart); if ((indexStart == -1) || (indexEnd == -1)) { qCDebug(KGET_DEBUG) << "Could not find a key."; - downloadKey(fingerprint, 0, true); + downloadKey(fingerprint, nullptr, true); return; } diff -Nru kget-20.12.3/core/keydownloader.h kget-21.04.0/core/keydownloader.h --- kget-20.12.3/core/keydownloader.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/keydownloader.h 2021-04-14 15:24:35.000000000 +0000 @@ -50,7 +50,7 @@ */ void downloadKey(QString fingerprint, Signature *sig); - private slots: + private Q_SLOTS: /** * Parses the downloaded data and if it is a key tries to add it to GnuPG, * if it is not a key try a different server. diff -Nru kget-20.12.3/core/kget.cpp kget-21.04.0/core/kget.cpp --- kget-20.12.3/core/kget.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/kget.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -36,7 +36,6 @@ #include #include -#include #include #include #include @@ -106,7 +105,7 @@ if (m_transferTreeModel->findGroup(groupName)) return false; - TransferGroup * group = new TransferGroup(m_transferTreeModel, m_scheduler, groupName); + auto * group = new TransferGroup(m_transferTreeModel, m_scheduler, groupName); m_transferTreeModel->addGroup(group); return true; @@ -542,7 +541,7 @@ { qCDebug(KGET_DEBUG) << "KGet::load -> group not found"; - TransferGroup * newGroup = new TransferGroup(m_transferTreeModel, m_scheduler); + auto * newGroup = new TransferGroup(m_transferTreeModel, m_scheduler); m_transferTreeModel->addGroup(newGroup); @@ -1481,7 +1480,7 @@ void GenericObserver::slotResolveTransferError() { - KNotification * notification = static_cast(QObject::sender()); + auto * notification = static_cast(QObject::sender()); if (notification) { TransferHandler * handler = m_notifications[notification]; qDebug() << "Resolve error for" << handler->source().toString() << "with id" << handler->error().id; @@ -1493,7 +1492,7 @@ void GenericObserver::slotNotificationClosed() { qDebug() << "Remove notification"; - KNotification * notification = static_cast(QObject::sender()); + auto * notification = static_cast(QObject::sender()); if (notification) m_notifications.remove(notification); } diff -Nru kget-20.12.3/core/kgetglobaljob.cpp kget-21.04.0/core/kgetglobaljob.cpp --- kget-20.12.3/core/kgetglobaljob.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/kgetglobaljob.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -15,7 +15,7 @@ #include "kget_debug.h" #include #include -#include +#include KGetGlobalJob::KGetGlobalJob(QObject *parent) @@ -53,7 +53,7 @@ else percent = 0; - emit description(this, "KGet global information", + Q_EMIT description(this, "KGet global information", qMakePair(QString("source"), i18np("KGet is downloading %1 file", "KGet is downloading %1 files", runningTransfers))); emitSpeed(speed); @@ -66,7 +66,7 @@ bool KGetGlobalJob::doKill() { qCDebug(KGET_DEBUG) << "Kill of global job called:" << this; - emit requestStop(this, nullptr); + Q_EMIT requestStop(this, nullptr); return KJob::doKill(); } diff -Nru kget-20.12.3/core/kgetglobaljob.h kget-21.04.0/core/kgetglobaljob.h --- kget-20.12.3/core/kgetglobaljob.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/kgetglobaljob.h 2021-04-14 15:24:35.000000000 +0000 @@ -26,7 +26,7 @@ void start() override {}; -signals: +Q_SIGNALS: /** * Emitted when doKill is called, e.g. when the gui is closed. * Not handling this signal might lead to a crash if something tries to diff -Nru kget-20.12.3/core/kget.h kget-21.04.0/core/kget.h --- kget-20.12.3/core/kget.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/kget.h 2021-04-14 15:24:35.000000000 +0000 @@ -470,7 +470,7 @@ GenericObserver(QObject *parent = nullptr); ~GenericObserver () override; - public slots: + public Q_SLOTS: void groupAddedEvent(TransferGroupHandler *handler); void groupRemovedEvent(TransferGroupHandler *handler); void transfersAddedEvent(const QList &handlers); @@ -479,7 +479,7 @@ void groupsChangedEvent(QMap groups); void transferMovedEvent(TransferHandler *, TransferGroupHandler *); - private slots: + private Q_SLOTS: void slotSave(); void slotAfterFinishAction(); void slotAbortAfterFinishAction(); diff -Nru kget-20.12.3/core/kgetkjobadapter.cpp kget-21.04.0/core/kgetkjobadapter.cpp --- kget-20.12.3/core/kgetkjobadapter.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/kgetkjobadapter.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -44,7 +44,7 @@ void KGetKJobAdapter::slotUpdateDescription() { - emit description(this, i18n("KGet Transfer"), + Q_EMIT description(this, i18n("KGet Transfer"), qMakePair(QString("source"), m_transferHandler->source().toString()), qMakePair(QString("destination"), m_transferHandler->dest().toString())); @@ -57,14 +57,14 @@ bool KGetKJobAdapter::doKill() { qCDebug(KGET_DEBUG) << "Kill of job adapter called:" << this << m_transferHandler->dest(); - emit requestStop(this, m_transferHandler); + Q_EMIT requestStop(this, m_transferHandler); return KJob::doKill(); } bool KGetKJobAdapter::doSuspend() { if (m_transferHandler->capabilities() & Transfer::Cap_Resuming) { - emit requestSuspend(this, m_transferHandler); + Q_EMIT requestSuspend(this, m_transferHandler); return true; } @@ -73,6 +73,6 @@ bool KGetKJobAdapter::doResume() { - emit requestResume(this, m_transferHandler); + Q_EMIT requestResume(this, m_transferHandler); return true; } diff -Nru kget-20.12.3/core/kgetkjobadapter.h kget-21.04.0/core/kgetkjobadapter.h --- kget-20.12.3/core/kgetkjobadapter.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/kgetkjobadapter.h 2021-04-14 15:24:35.000000000 +0000 @@ -33,10 +33,10 @@ qulonglong totalAmount(Unit unit) const; unsigned long percent() const; -public slots: +public Q_SLOTS: void slotUpdateDescription(); -signals: +Q_SIGNALS: /** * Emitted when doKill is called, e.g. when the gui is closed. * Not handling this signal might lead to a crash if something tries to diff -Nru kget-20.12.3/core/kuiserverjobs.h kget-21.04.0/core/kuiserverjobs.h --- kget-20.12.3/core/kuiserverjobs.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/kuiserverjobs.h 2021-04-14 15:24:35.000000000 +0000 @@ -34,12 +34,12 @@ void settingsChanged(); -public slots: +public Q_SLOTS: void slotTransfersAdded(QList transfers); void slotTransfersAboutToBeRemoved(const QList &transfer); void slotTransfersChanged(QMap transfers); -private slots: +private Q_SLOTS: void slotRequestStop(KJob *job, TransferHandler *transfer); void slotRequestSuspend(KJob *job, TransferHandler *transfer); void slotRequestResume(KJob *job, TransferHandler *transfer); diff -Nru kget-20.12.3/core/linkimporter.cpp kget-21.04.0/core/linkimporter.cpp --- kget-20.12.3/core/linkimporter.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/linkimporter.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -80,7 +80,7 @@ KIO::CopyJob *job = KIO::copy(m_url, aux, KIO::HideProgressInfo); if(!job->exec()) { - emit error(ki18n("Error trying to get %1").subs(m_url.url())); + Q_EMIT error(ki18n("Error trying to get %1").subs(m_url.url())); } } @@ -109,12 +109,12 @@ regexPos += rx.matchedLength(); position = lastPosition + regexPos; - emit progress(position * 100 / size); + Q_EMIT progress(position * 100 / size); } position += line.size(); - emit progress(position * 100 / size); + Q_EMIT progress(position * 100 / size); } if(!m_url.isLocalFile()) { diff -Nru kget-20.12.3/core/linkimporter.h kget-21.04.0/core/linkimporter.h --- kget-20.12.3/core/linkimporter.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/linkimporter.h 2021-04-14 15:24:35.000000000 +0000 @@ -53,11 +53,11 @@ return m_transfers; }; -signals: +Q_SIGNALS: void error(const KLocalizedString &); void progress(int progress); -private slots: +private Q_SLOTS: void slotReadFile(const QUrl &url); private: diff -Nru kget-20.12.3/core/plugin/CMakeLists.txt kget-21.04.0/core/plugin/CMakeLists.txt --- kget-20.12.3/core/plugin/CMakeLists.txt 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/plugin/CMakeLists.txt 2021-04-14 15:24:35.000000000 +0000 @@ -1 +1 @@ -install(FILES kget_plugin.desktop DESTINATION ${SERVICETYPES_INSTALL_DIR}) +install(FILES kget_plugin.desktop DESTINATION ${KDE_INSTALL_KSERVICETYPES5DIR}) diff -Nru kget-20.12.3/core/plugin/kget_plugin.desktop kget-21.04.0/core/plugin/kget_plugin.desktop --- kget-20.12.3/core/plugin/kget_plugin.desktop 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/plugin/kget_plugin.desktop 2021-04-14 15:24:35.000000000 +0000 @@ -36,7 +36,7 @@ Name[mr]=के-गेट प्लगइन Name[nb]=Programtillegg for KGet Name[nds]=KGet-Moduul -Name[nl]=KGet-plugin +Name[nl]=KGet-plug-in Name[nn]=KGet-programtillegg Name[pa]=ਕੇਗਿੱਟ ਪਲੱਗਇਨ Name[pl]=Wtyczka KGet diff -Nru kget-20.12.3/core/plugin/transferfactory.cpp kget-21.04.0/core/plugin/transferfactory.cpp --- kget-20.12.3/core/plugin/transferfactory.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/plugin/transferfactory.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -32,7 +32,7 @@ Q_UNUSED(parent) Q_UNUSED(scheduler) Q_UNUSED(n) - return 0; + return nullptr; } TransferHandler * TransferFactory::createTransferHandler(Transfer * transfer, Scheduler * scheduler) @@ -43,7 +43,7 @@ QWidget * TransferFactory::createDetailsWidget(TransferHandler * transfer) { Q_UNUSED(transfer) - return 0; + return nullptr; } QDialog * TransferFactory::createNewTransferDialog(const QUrl &srcUrl, const QString &suggestedFileName, TransferGroupHandler * defaultGroup) @@ -51,7 +51,7 @@ Q_UNUSED(srcUrl) Q_UNUSED(suggestedFileName) Q_UNUSED(defaultGroup) - return 0; + return nullptr; } const QList TransferFactory::actions(TransferHandler *handler) @@ -65,7 +65,7 @@ Q_UNUSED(srcUrl) Q_UNUSED(type) Q_UNUSED(parent) - return 0; + return nullptr; } bool TransferFactory::isSupported(const QUrl &url) const @@ -81,6 +81,6 @@ QString TransferFactory::displayName() const { - return "Undefined"; + return QStringLiteral("Undefined"); } diff -Nru kget-20.12.3/core/plugin/transferfactory.h kget-21.04.0/core/plugin/transferfactory.h --- kget-20.12.3/core/plugin/transferfactory.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/plugin/transferfactory.h 2021-04-14 15:24:35.000000000 +0000 @@ -59,16 +59,16 @@ virtual Transfer * createTransfer( const QUrl &srcUrl, const QUrl &destUrl, TransferGroup * parent, Scheduler * scheduler, - const QDomElement * n = 0 ); + const QDomElement * n = nullptr ); virtual TransferHandler * createTransferHandler(Transfer * transfer, Scheduler * scheduler); virtual QWidget * createDetailsWidget(TransferHandler * transfer); - virtual QDialog * createNewTransferDialog(const QUrl &srcUrl, const QString &suggestedFileName = QString(), TransferGroupHandler * defaultGroup = 0); + virtual QDialog * createNewTransferDialog(const QUrl &srcUrl, const QString &suggestedFileName = QString(), TransferGroupHandler * defaultGroup = nullptr); - virtual const QList actions(TransferHandler *handler = 0); + virtual const QList actions(TransferHandler *handler = nullptr); virtual void settingsChanged() {} diff -Nru kget-20.12.3/core/signature.cpp kget-21.04.0/core/signature.cpp --- kget-20.12.3/core/signature.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/signature.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -86,7 +86,7 @@ std::shared_ptr qFile(new QFile(dest.toDisplayString(QUrl::PreferLocalFile))); qFile->open(QIODevice::ReadOnly); - QGpgME::QIODeviceDataProvider *file = new QGpgME::QIODeviceDataProvider(qFile); + auto *file = new QGpgME::QIODeviceDataProvider(qFile); GpgME::Data dFile(file); QGpgME::QByteArrayDataProvider signatureBA(sig); @@ -163,7 +163,7 @@ d->verificationResult = GpgME::VerificationResult(); #endif //HAVE_QGPGME - emit verified(d->status);//FIXME + Q_EMIT verified(d->status);//FIXME } Signature::SignatureType Signature::type() const @@ -210,7 +210,7 @@ if (!d->verificationResult.numSignatures()) { qCDebug(KGET_DEBUG) << "No signatures\n"; - emit verified(d->status); + Q_EMIT verified(d->status); return; } @@ -230,7 +230,7 @@ i18n("The key to verify the signature is missing, do you want to download it?")) == KMessageBox::Yes)) { d->verifyTried = true; downloadKey(d->fingerprint); - emit verified(d->status); + Q_EMIT verified(d->status); return; } } @@ -254,7 +254,7 @@ } } - emit verified(d->status); + Q_EMIT verified(d->status); } #endif //HAVE_QGPGME diff -Nru kget-20.12.3/core/signature.h kget-21.04.0/core/signature.h --- kget-20.12.3/core/signature.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/signature.h 2021-04-14 15:24:35.000000000 +0000 @@ -90,10 +90,10 @@ void save(const QDomElement &element); void load(const QDomElement &e); - signals: + Q_SIGNALS: void verified(int verificationStatus); - private slots: + private Q_SLOTS: #ifdef HAVE_QGPGME void slotVerified(const GpgME::VerificationResult &result); #endif //HAVE_QGPGME diff -Nru kget-20.12.3/core/signaturethread.cpp kget-21.04.0/core/signaturethread.cpp --- kget-20.12.3/core/signaturethread.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/signaturethread.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -70,7 +70,7 @@ GpgME::VerificationResult result = SignaturePrivate::verify(dest, sig); if (!m_abort) { - emit verified(result); + Q_EMIT verified(result); } } #else //HAVE_QGPGME diff -Nru kget-20.12.3/core/signaturethread.h kget-21.04.0/core/signaturethread.h --- kget-20.12.3/core/signaturethread.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/signaturethread.h 2021-04-14 15:24:35.000000000 +0000 @@ -44,7 +44,7 @@ void verify(const QUrl &dest, const QByteArray &sig); #ifdef HAVE_QGPGME - signals: + Q_SIGNALS: /** * Emitted when the verification of a file finishes, connect to this signal * if you do the verification for one file only and do not want to bother with diff -Nru kget-20.12.3/core/transfer.cpp kget-21.04.0/core/transfer.cpp --- kget-20.12.3/core/transfer.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/transfer.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -48,7 +48,7 @@ m_totalSize(0), m_downloadedSize(0), m_uploadedSize(0), m_percent(0), m_downloadSpeed(0), m_uploadSpeed(0), m_uploadLimit(0), m_downloadLimit(0), m_isSelected(false), - m_capabilities(0), m_visibleUploadLimit(0), m_visibleDownloadLimit(0), + m_capabilities(), m_visibleUploadLimit(0), m_visibleDownloadLimit(0), m_runningSeconds(0), m_ratio(0), m_handler(nullptr), m_factory(factory) { Q_UNUSED(e) @@ -62,7 +62,7 @@ { if (m_capabilities != capabilities) { m_capabilities = capabilities; - emit capabilitiesChanged(); + Q_EMIT capabilitiesChanged(); } } diff -Nru kget-20.12.3/core/transferdatasource.cpp kget-21.04.0/core/transferdatasource.cpp --- kget-20.12.3/core/transferdatasource.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/transferdatasource.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -20,7 +20,7 @@ m_supposedSize(0), m_parallelSegments(1), m_currentSegments(0), - m_capabilities(0) + m_capabilities() { qCDebug(KGET_DEBUG) ; } @@ -38,7 +38,7 @@ void TransferDataSource::setCapabilities(Transfer::Capabilities capabilities) { m_capabilities = capabilities; - emit capabilitiesChanged(); + Q_EMIT capabilitiesChanged(); } void TransferDataSource::findFileSize(KIO::fileoffset_t segmentSize) diff -Nru kget-20.12.3/core/transferdatasource.h kget-21.04.0/core/transferdatasource.h --- kget-20.12.3/core/transferdatasource.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/transferdatasource.h 2021-04-14 15:24:35.000000000 +0000 @@ -141,7 +141,7 @@ */ virtual int changeNeeded() const; - signals: + Q_SIGNALS: /** * Emitted after findFileSize is called successfully * @param source that found the filesize diff -Nru kget-20.12.3/core/transfergroup.cpp kget-21.04.0/core/transfergroup.cpp --- kget-20.12.3/core/transfergroup.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/transfergroup.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -42,7 +42,7 @@ m_downloadSpeed = 0; foreach(Job *job, runningJobs()) { - Transfer *transfer = static_cast(job); + auto *transfer = static_cast(job); if (transfer) m_downloadSpeed += transfer->downloadSpeed(); } @@ -54,7 +54,7 @@ m_uploadSpeed = 0; foreach(Job *job, runningJobs()) { - Transfer *transfer = static_cast(job); + auto *transfer = static_cast(job); if (transfer) m_uploadSpeed += transfer->uploadSpeed(); } @@ -65,7 +65,7 @@ { QList jobs = runningJobs(); foreach (Job *job, jobs) { - Transfer * transfer = static_cast(job); + auto * transfer = static_cast(job); if (!(transfer->capabilities() & Transfer::Cap_SpeedLimit)) { return false; } @@ -148,7 +148,7 @@ for(; it!=itEnd ; ++it) { - Transfer * t = (Transfer *) *it; + auto * t = (Transfer *) *it; if( t->source().url() == src.url() ) return t; } @@ -161,7 +161,7 @@ iterator itEnd = end(); for(; it!=itEnd ; ++it) { - Transfer *t = (Transfer *) *it; + auto *t = (Transfer *) *it; if(t->dest().url() == dest.url()) { return t; } @@ -228,7 +228,7 @@ int pool = 0;//We create a pool where we have some KiB/s to go to other transfer's... QList transfersNeedSpeed; foreach (Job *job, running) { - Transfer * transfer = static_cast(job); + auto * transfer = static_cast(job); if (transfer) { if (m_downloadLimit == 0 && transfer->downloadLimit(Transfer::VisibleSpeedLimit) != 0) @@ -271,7 +271,7 @@ int pool = 0;//We create a pool where we have some KiB/s to go to other transfer's... QList transfersNeedSpeed; foreach (Job *job, running) { - Transfer * transfer = static_cast(job); + auto * transfer = static_cast(job); if (transfer) { if (m_uploadLimit == 0 && transfer->uploadLimit(Transfer::VisibleSpeedLimit) != 0) @@ -321,7 +321,7 @@ for( ; it!=itEnd; ++it ) { - Transfer* transfer = static_cast(*it); + auto* transfer = static_cast(*it); qCDebug(KGET_DEBUG) << " --> " << name() << " transfer: " << transfer->source(); QDomElement t = e.ownerDocument().createElement("Transfer"); e.appendChild(t); diff -Nru kget-20.12.3/core/transfergrouphandler.h kget-21.04.0/core/transfergrouphandler.h --- kget-20.12.3/core/transfergrouphandler.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/transfergrouphandler.h 2021-04-14 15:24:35.000000000 +0000 @@ -228,14 +228,14 @@ */ void calculateUploadLimit() {m_group->calculateUploadLimit();} - public slots: + public Q_SLOTS: /** * These are all JobQueue-related functions */ void start() override; void stop() override; - signals: + Q_SIGNALS: void groupChangedEvent(TransferGroupHandler * transfer, TransferGroupHandler::ChangesFlags flags); private: diff -Nru kget-20.12.3/core/transfer.h kget-21.04.0/core/transfer.h --- kget-20.12.3/core/transfer.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/transfer.h 2021-04-14 15:24:35.000000000 +0000 @@ -304,13 +304,13 @@ */ virtual void load(const QDomElement *element); - signals: + Q_SIGNALS: /** * Emitted when the capabilities of the Transfer change */ void capabilitiesChanged(); - public slots: + public Q_SLOTS: /** * Set Transfer history */ diff -Nru kget-20.12.3/core/transferhandler.h kget-21.04.0/core/transferhandler.h --- kget-20.12.3/core/transferhandler.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/transferhandler.h 2021-04-14 15:24:35.000000000 +0000 @@ -285,14 +285,14 @@ */ virtual Signature * signature(const QUrl &file) {return m_transfer->signature(file);} - public slots: + public Q_SLOTS: /** * These are all Job-related functions */ void start() override; void stop() override; - signals: + Q_SIGNALS: /** * Emitted when the capabilities of the Transfer change */ diff -Nru kget-20.12.3/core/transferhistorystore.h kget-21.04.0/core/transferhistorystore.h --- kget-20.12.3/core/transferhistorystore.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/transferhistorystore.h 2021-04-14 15:24:35.000000000 +0000 @@ -66,7 +66,7 @@ static TransferHistoryStore *getStore(); -public slots: +public Q_SLOTS: virtual void load() {}; virtual void clear() {}; virtual void saveItem(const TransferHistoryItem &item) @@ -85,7 +85,7 @@ Q_UNUSED(item) }; -signals: +Q_SIGNALS: void elementLoaded(int number, int total, const TransferHistoryItem &item); void loadFinished(); void saveFinished(); diff -Nru kget-20.12.3/core/transferhistorystore_sqlite.cpp kget-21.04.0/core/transferhistorystore_sqlite.cpp --- kget-20.12.3/core/transferhistorystore_sqlite.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/transferhistorystore_sqlite.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -59,14 +59,14 @@ item.setSize(query.value(rec.indexOf("size")).toInt()); m_items << item; - emit elementLoaded(query.at(), query.size(), item); + Q_EMIT elementLoaded(query.at(), query.size(), item); } } } sql().close(); - emit loadFinished(); + Q_EMIT loadFinished(); } void SQLiteStore::clear() @@ -109,7 +109,7 @@ } sql().close(); - emit saveFinished(); + Q_EMIT saveFinished(); } void SQLiteStore::deleteItem(const TransferHistoryItem &item) @@ -131,7 +131,7 @@ } sql().close(); - emit deleteFinished(); + Q_EMIT deleteFinished(); } QSqlDatabase SQLiteStore::sql() diff -Nru kget-20.12.3/core/transferhistorystore_sqlite_p.h kget-21.04.0/core/transferhistorystore_sqlite_p.h --- kget-20.12.3/core/transferhistorystore_sqlite_p.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/transferhistorystore_sqlite_p.h 2021-04-14 15:24:35.000000000 +0000 @@ -26,7 +26,7 @@ SQLiteStore(const QString &database); ~SQLiteStore() override; -public slots: +public Q_SLOTS: void load() override; void clear() override; void saveItem(const TransferHistoryItem &item) override; diff -Nru kget-20.12.3/core/transferhistorystore_xml.cpp kget-21.04.0/core/transferhistorystore_xml.cpp --- kget-20.12.3/core/transferhistorystore_xml.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/transferhistorystore_xml.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -164,7 +164,7 @@ item.setDateTime(QDateTime::fromSecsSinceEpoch(dom.attribute("Time").toUInt())); item.setState(dom.attribute("State").toInt()); - emit elementLoaded(i, total, item); + Q_EMIT elementLoaded(i, total, item); } doc.clear(); file.close(); @@ -249,7 +249,7 @@ m_items.clear(); m_items << m_deleteThread->items(); - emit loadFinished(); + Q_EMIT loadFinished(); } diff -Nru kget-20.12.3/core/transferhistorystore_xml_p.h kget-21.04.0/core/transferhistorystore_xml_p.h --- kget-20.12.3/core/transferhistorystore_xml_p.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/transferhistorystore_xml_p.h 2021-04-14 15:24:35.000000000 +0000 @@ -24,7 +24,7 @@ XmlStore(const QString &url); ~XmlStore() override; -public slots: +public Q_SLOTS: void load() override; void clear() override; void saveItem(const TransferHistoryItem &item) override; @@ -32,7 +32,7 @@ void slotLoadElement(int number, int total, const TransferHistoryItem &item); -private slots: +private Q_SLOTS: void slotDeleteElement(); private: @@ -57,7 +57,7 @@ void run() override; -signals: +Q_SIGNALS: void elementLoaded(int number, int total, const TransferHistoryItem &item); private: @@ -73,7 +73,7 @@ void run() override; -signals: +Q_SIGNALS: void elementLoaded(int number, int total, const TransferHistoryItem &item); private: diff -Nru kget-20.12.3/core/transfertreemodel.cpp kget-21.04.0/core/transfertreemodel.cpp --- kget-20.12.3/core/transfertreemodel.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/transfertreemodel.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -215,7 +215,7 @@ m_transferGroups.append(static_cast(items.first())); - emit groupAddedEvent(group->handler()); + Q_EMIT groupAddedEvent(group->handler()); KGet::m_scheduler->addQueue(group); } @@ -242,7 +242,7 @@ m_changedGroups.removeAll(group->handler()); - emit groupRemovedEvent(group->handler()); + Q_EMIT groupRemovedEvent(group->handler()); KGet::m_scheduler->delQueue(group); } @@ -273,7 +273,7 @@ m_transfers.append(static_cast(items.first())); - DBusTransferWrapper * wrapper = new DBusTransferWrapper(handler); + auto * wrapper = new DBusTransferWrapper(handler); new TransferAdaptor(wrapper); QDBusConnection::sessionBus().registerObject(handler->dBusObjectPath(), wrapper); } @@ -281,7 +281,7 @@ //notify the rest of the changes blockSignals(false); endInsertRows(); - emit transfersAddedEvent(handlers); + Q_EMIT transfersAddedEvent(handlers); } void TransferTreeModel::delTransfers(const QList &t) @@ -308,7 +308,7 @@ } } - emit transfersAboutToBeRemovedEvent(handlers); + Q_EMIT transfersAboutToBeRemovedEvent(handlers); //remove the items from the model { @@ -359,7 +359,7 @@ } } - emit transfersRemovedEvent(handlers); + Q_EMIT transfersRemovedEvent(handlers); } TransferModelItem * TransferTreeModel::itemFromTransferHandler(TransferHandler * handler) @@ -384,7 +384,7 @@ ModelItem * TransferTreeModel::itemFromHandler(Handler * handler) { - TransferHandler *transfer = qobject_cast(handler); + auto *transfer = qobject_cast(handler); if (transfer) { return itemFromTransferHandler(transfer); } @@ -433,7 +433,7 @@ itemFromHandler(destGroup->handler())->insertRow(destGroup->indexOf(transfer), items); if (!sameGroup) - emit transferMovedEvent(transfer->handler(), destGroup->handler()); + Q_EMIT transferMovedEvent(transfer->handler(), destGroup->handler()); KGet::selectionModel()->clearSelection(); } @@ -575,7 +575,7 @@ QMimeData * TransferTreeModel::mimeData(const QModelIndexList &indexes) const { - ItemMimeData *mimeData = new ItemMimeData(); + auto *mimeData = new ItemMimeData(); QModelIndexList sortedIndexes = indexes; std::sort(sortedIndexes.begin(), sortedIndexes.end(), [](const QModelIndex &a, const QModelIndex &b) { return b < a; }); @@ -597,7 +597,7 @@ if (action == Qt::IgnoreAction) return true; - const ItemMimeData *itemData = qobject_cast(mdata); + const auto *itemData = qobject_cast(mdata); if (!itemData) { qCWarning(KGET_DEBUG) << "Unsupported mime data dropped."; return false; @@ -715,7 +715,7 @@ ModelItem * item = itemFromHandler(group); Transfer::ChangesFlags changesFlags = transfer->changesFlags(); - emit transfer->transferChangedEvent(transfer, changesFlags); + Q_EMIT transfer->transferChangedEvent(transfer, changesFlags); int row = group->indexOf(transfer); @@ -744,7 +744,7 @@ } if(!updatedTransfers.isEmpty()) - emit transfersChangedEvent(updatedTransfers); + Q_EMIT transfersChangedEvent(updatedTransfers); foreach(TransferGroupHandler * group, m_changedGroups) { @@ -752,7 +752,7 @@ { TransferGroup::ChangesFlags changesFlags = group->changesFlags(); - emit group->groupChangedEvent(group, changesFlags); + Q_EMIT group->groupChangedEvent(group, changesFlags); int row = itemFromHandler(group)->row(); @@ -774,7 +774,7 @@ QStandardItem *groupItem = itemFromHandler(group); dynamic_cast(invisibleRootItem()->child(groupItem->row(), i))->emitDataChanged(); //QModelIndex index = createIndex(m_transferGroups.indexOf(group->m_group), i, group); - //emit dataChanged(index,index); + //Q_EMIT dataChanged(index,index); } }*/ @@ -784,7 +784,7 @@ } if(!updatedGroups.isEmpty()) - emit groupsChangedEvent(updatedGroups); + Q_EMIT groupsChangedEvent(updatedGroups); m_changedTransfers.clear(); m_changedGroups.clear(); diff -Nru kget-20.12.3/core/transfertreemodel.h kget-21.04.0/core/transfertreemodel.h --- kget-20.12.3/core/transfertreemodel.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/transfertreemodel.h 2021-04-14 15:24:35.000000000 +0000 @@ -166,7 +166,7 @@ static int column(Transfer::TransferChange flag); static int column(TransferGroup::GroupChange flag); - signals: + Q_SIGNALS: void groupAddedEvent(TransferGroupHandler *); void groupRemovedEvent(TransferGroupHandler *); void groupsChangedEvent(QMap); diff -Nru kget-20.12.3/core/urlchecker.cpp kget-21.04.0/core/urlchecker.cpp --- kget-20.12.3/core/urlchecker.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/urlchecker.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -51,10 +51,10 @@ setWindowTitle(caption.isEmpty() ? i18n("Question") : caption); setModal(true); - QVBoxLayout *layout = new QVBoxLayout; - QHBoxLayout *bottomLayout = new QHBoxLayout; + auto *layout = new QVBoxLayout; + auto *bottomLayout = new QHBoxLayout; - QLabel *label = new QLabel(text, this); + auto *label = new QLabel(text, this); layout->addWidget(label); layout->addWidget(new KSeparator(Qt::Horizontal, this)); @@ -62,7 +62,7 @@ bottomLayout->addStretch(1); bottomLayout->addWidget(m_applyAll); - QDialogButtonBox *buttonBox = new QDialogButtonBox(this); + auto *buttonBox = new QDialogButtonBox(this); buttonBox->setStandardButtons(QDialogButtonBox::Yes | QDialogButtonBox::No | QDialogButtonBox::Cancel); connect(buttonBox->button(QDialogButtonBox::Yes), &QPushButton::clicked, this, &ExistingTransferDialog::slotYesClicked); connect(buttonBox->button(QDialogButtonBox::No), &QPushButton::clicked, this, &ExistingTransferDialog::slotNoClicked); diff -Nru kget-20.12.3/core/urlchecker_p.h kget-21.04.0/core/urlchecker_p.h --- kget-20.12.3/core/urlchecker_p.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/urlchecker_p.h 2021-04-14 15:24:35.000000000 +0000 @@ -46,7 +46,7 @@ NoAll }; - private slots: + private Q_SLOTS: void slotYesClicked(); void slotNoClicked(); void slotCancelClicked(); diff -Nru kget-20.12.3/core/verificationdelegate.cpp kget-21.04.0/core/verificationdelegate.cpp --- kget-20.12.3/core/verificationdelegate.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/verificationdelegate.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -52,7 +52,7 @@ if (index.isValid()) { if (index.column() == VerificationModel::Type) { if (d->hashTypes.count()) { - KComboBox *hashTypes = new KComboBox(parent); + auto *hashTypes = new KComboBox(parent); hashTypes->addItems(d->hashTypes); return hashTypes; @@ -69,11 +69,11 @@ { if (index.isValid() && editor) { if (index.column() == VerificationModel::Type) { - KComboBox *hashTypes = static_cast(editor); + auto *hashTypes = static_cast(editor); const QString hashType = index.data().toString(); hashTypes->setCurrentItem(hashType); } else if (index.column() == VerificationModel::Checksum) { - KLineEdit *line = static_cast(editor); + auto *line = static_cast(editor); const QString checksum = index.data().toString(); line->setText(checksum); } @@ -84,10 +84,10 @@ { if (index.isValid() && editor && model) { if (index.column() == VerificationModel::Type) { - KComboBox *hashTypes = static_cast(editor); + auto *hashTypes = static_cast(editor); model->setData(index, hashTypes->currentText()); } else if (index.column() == VerificationModel::Checksum) { - KLineEdit *line = static_cast(editor); + auto *line = static_cast(editor); model->setData(index, line->text()); } } diff -Nru kget-20.12.3/core/verificationmodel.cpp kget-21.04.0/core/verificationmodel.cpp --- kget-20.12.3/core/verificationmodel.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/verificationmodel.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -107,7 +107,7 @@ const QString type = value.toString(); if (Verifier::supportedVerficationTypes().contains(type) && !d->types.contains(type)) { d->types[index.row()] = type; - emit dataChanged(index, index); + Q_EMIT dataChanged(index, index); return true; } } else if ((index.column() == VerificationModel::Checksum) && role == Qt::EditRole) { @@ -116,12 +116,12 @@ const QString checksum = value.toString(); if (Verifier::isChecksum(type, checksum)) { d->checksums[index.row()] = checksum; - emit dataChanged(index, index); + Q_EMIT dataChanged(index, index); return true; } } else if (index.column() == VerificationModel::Verified && role == Qt::EditRole) { d->verificationStatus[index.row()] = value.toInt(); - emit dataChanged(index, index); + Q_EMIT dataChanged(index, index); return true; } @@ -189,7 +189,7 @@ if (position > -1) { d->checksums[position] = checksum; const QModelIndex index = this->index(position, VerificationModel::Checksum, QModelIndex()); - emit dataChanged(index, index); + Q_EMIT dataChanged(index, index); return; } @@ -216,6 +216,6 @@ if (position > -1) { d->verificationStatus[position] = verified; const QModelIndex index = this->index(position, VerificationModel::Verified, QModelIndex()); - emit dataChanged(index, index); + Q_EMIT dataChanged(index, index); } } diff -Nru kget-20.12.3/core/verificationthread.cpp kget-21.04.0/core/verificationthread.cpp --- kget-20.12.3/core/verificationthread.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/verificationthread.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -124,8 +124,8 @@ m_mutex.lock(); if (!m_abort) { - emit verified(type, fileVerified, url); - emit verified(fileVerified); + Q_EMIT verified(type, fileVerified, url); + Q_EMIT verified(fileVerified); } run = m_files.count(); m_mutex.unlock(); @@ -149,28 +149,28 @@ QFile file(url.toString()); if (!file.open(QIODevice::ReadOnly)) { - emit brokenPieces(broken, length); + Q_EMIT brokenPieces(broken, length); return; } const KIO::filesize_t fileSize = file.size(); if (!length || !fileSize) { - emit brokenPieces(broken, length); + Q_EMIT brokenPieces(broken, length); return; } const QStringList fileChecksums = Verifier::partialChecksums(url, type, length, &m_abort).checksums(); if (m_abort) { - emit brokenPieces(broken, length); + Q_EMIT brokenPieces(broken, length); return; } if (fileChecksums.size() != checksums.size()) { qCDebug(KGET_DEBUG) << "Number of checksums differs!"; - emit brokenPieces(broken, length); + Q_EMIT brokenPieces(broken, length); return; } @@ -185,5 +185,5 @@ } } - emit brokenPieces(broken, length); + Q_EMIT brokenPieces(broken, length); } diff -Nru kget-20.12.3/core/verificationthread.h kget-21.04.0/core/verificationthread.h --- kget-20.12.3/core/verificationthread.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/verificationthread.h 2021-04-14 15:24:35.000000000 +0000 @@ -49,7 +49,7 @@ void doVerify(); void doBrokenPieces(); - signals: + Q_SIGNALS: /** * Emitted when the verification of a file finishes, connect to this signal * if you do the verification for one file only and do not want to bother with diff -Nru kget-20.12.3/core/verifier.cpp kget-21.04.0/core/verifier.cpp --- kget-20.12.3/core/verifier.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/verifier.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -169,7 +169,7 @@ static int dBusObjIdx = 0; d->dBusObjectPath = "/KGet/Verifiers/" + QString::number(dBusObjIdx++); - DBusVerifierWrapper *wrapper = new DBusVerifierWrapper(this); + auto *wrapper = new DBusVerifierWrapper(this); new VerifierAdaptor(wrapper); QDBusConnection::sessionBus().registerObject(d->dBusObjectPath, wrapper); @@ -357,7 +357,7 @@ qCDebug(KGET_DEBUG) << "Verified:" << isVerified; d->status = isVerified ? Verifier::Verified : Verifier::NotVerified; d->model->setVerificationStatus(type, d->status); - emit verified(isVerified); + Q_EMIT verified(isVerified); } void Verifier::verify(const QModelIndex &index) diff -Nru kget-20.12.3/core/verifier.h kget-21.04.0/core/verifier.h --- kget-20.12.3/core/verifier.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/core/verifier.h 2021-04-14 15:24:35.000000000 +0000 @@ -165,7 +165,7 @@ /** * Call this method after calling verify() with a negative result, it will - * emit a list of the broken pieces, if PartialChecksums were defined, + * Q_EMIT a list of the broken pieces, if PartialChecksums were defined, * otherwise and in case of any error an empty list will be emitted */ void brokenPieces() const; @@ -243,7 +243,7 @@ void save(const QDomElement &element); void load(const QDomElement &e); - signals: + Q_SIGNALS: /** * Emitted when the verification of a file finishes */ @@ -254,7 +254,7 @@ */ void brokenPieces(const QList &offsets, KIO::filesize_t length); - private slots: + private Q_SLOTS: void changeStatus(const QString &type, bool verified); private: diff -Nru kget-20.12.3/dbus/dbuskgetwrapper.cpp kget-21.04.0/dbus/dbuskgetwrapper.cpp --- kget-20.12.3/dbus/dbuskgetwrapper.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/dbus/dbuskgetwrapper.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -57,7 +57,8 @@ QStringList dBusPaths; QList urls; - foreach (const QString &s, src.split(";")) + const QStringList srcSplit = src.split(";"); + for (const QString &s : srcSplit) urls.append(QUrl(s)); // split src for the case it is a QStringList (e.g. from konqueror plugin) QList addedTransfers = KGet::addTransfer(urls, dest, QString(), start); @@ -85,7 +86,7 @@ void DBusKGetWrapper::showNewTransferDialog(const QStringList &urls) { QList qurls; - foreach (const QString &s, urls) + for (const QString &s : urls) qurls.append(QUrl(s)); NewTransferDialogHandler::showNewTransferDialog(qurls); } @@ -135,7 +136,7 @@ m_transfers[transfer] = qMakePair(url, objectPath); } - emit transfersAdded(urls, objectPaths); + Q_EMIT transfersAdded(urls, objectPaths); } void DBusKGetWrapper::slotTransfersRemoved(const QList &transfers) @@ -148,7 +149,7 @@ objectPaths << removed.second; } - emit transfersRemoved(urls, objectPaths); + Q_EMIT transfersRemoved(urls, objectPaths); } int DBusKGetWrapper::transfersSpeed() const @@ -159,7 +160,7 @@ void DBusKGetWrapper::importLinks(const QList &links) { - KGetLinkView *link_view = new KGetLinkView(m_mainWindow); + auto *link_view = new KGetLinkView(m_mainWindow); link_view->setLinks(links); link_view->show(); } diff -Nru kget-20.12.3/dbus/dbuskgetwrapper.h kget-21.04.0/dbus/dbuskgetwrapper.h --- kget-20.12.3/dbus/dbuskgetwrapper.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/dbus/dbuskgetwrapper.h 2021-04-14 15:24:35.000000000 +0000 @@ -34,7 +34,7 @@ Q_OBJECT public: - DBusKGetWrapper(MainWindow *parent); + explicit DBusKGetWrapper(MainWindow *parent); ~DBusKGetWrapper() override; QStringList addTransfer(const QString& src, const QString& destDir = QString(), bool start = false); @@ -49,12 +49,12 @@ void importLinks(const QList &links); bool isSupported(const QString &url) const; - signals: + Q_SIGNALS: void transferAddedRemoved(); void transfersAdded(const QStringList &urls, const QStringList &dBusObjectPaths); void transfersRemoved(const QStringList &urls, const QStringList &dbusObjectPaths); - private slots: + private Q_SLOTS: void slotTransfersAdded(const QList &transfers); void slotTransfersRemoved(const QList &transfers); diff -Nru kget-20.12.3/dbus/dbustransferwrapper.cpp kget-21.04.0/dbus/dbustransferwrapper.cpp --- kget-20.12.3/dbus/dbustransferwrapper.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/dbus/dbustransferwrapper.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -148,7 +148,7 @@ { Q_UNUSED(transfer) - emit transferChangedEvent(changeFlags); + Q_EMIT transferChangedEvent(changeFlags); } QString DBusTransferWrapper::verifier(const QString &file) diff -Nru kget-20.12.3/dbus/dbustransferwrapper.h kget-21.04.0/dbus/dbustransferwrapper.h --- kget-20.12.3/dbus/dbustransferwrapper.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/dbus/dbustransferwrapper.h 2021-04-14 15:24:35.000000000 +0000 @@ -21,10 +21,10 @@ { Q_OBJECT public: - DBusTransferWrapper(TransferHandler * parent); + explicit DBusTransferWrapper(TransferHandler * parent); ~DBusTransferWrapper() override; - public slots: + public Q_SLOTS: int capabilities() const; void start(); void stop(); @@ -145,7 +145,7 @@ */ bool repair(const QString &file); - signals: + Q_SIGNALS: /** * Emitted when the transfer changes */ @@ -156,7 +156,7 @@ */ void capabilitiesChanged(); - private slots: + private Q_SLOTS: void slotTransferChanged(TransferHandler *transfer, TransferHandler::ChangesFlags changeflags); private: diff -Nru kget-20.12.3/dbus/dbusverifierwrapper.cpp kget-21.04.0/dbus/dbusverifierwrapper.cpp --- kget-20.12.3/dbus/dbusverifierwrapper.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/dbus/dbusverifierwrapper.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -73,14 +73,14 @@ // // QDBusVariant dbusBroken; // dbusBroken.setVariant(QVariant(broken)); -// emit this->brokenPieces(dbusBroken); +// Q_EMIT this->brokenPieces(dbusBroken); QStringList broken; for (int i = 0; i < offsets.count(); ++i) { broken << QString::number(offsets[i]); } - emit brokenPieces(broken, length); + Q_EMIT brokenPieces(broken, length); } diff -Nru kget-20.12.3/dbus/dbusverifierwrapper.h kget-21.04.0/dbus/dbusverifierwrapper.h --- kget-20.12.3/dbus/dbusverifierwrapper.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/dbus/dbusverifierwrapper.h 2021-04-14 15:24:35.000000000 +0000 @@ -29,10 +29,10 @@ { Q_OBJECT public: - DBusVerifierWrapper(Verifier *parent); + explicit DBusVerifierWrapper(Verifier *parent); ~DBusVerifierWrapper() override; - public slots: + public Q_SLOTS: /** * @return the dest url */ @@ -60,12 +60,12 @@ /** * Call this method after calling verify() with a negative result, it will - * emit a list of the broken pieces, if PartialChecksums were defined, + * Q_EMIT a list of the broken pieces, if PartialChecksums were defined, * otherwise and in case of any error an empty list will be emitted */ void brokenPieces() const; - signals: + Q_SIGNALS: /** * Emitted when the verification of a file finishes */ @@ -78,7 +78,7 @@ */ void brokenPieces(const QStringList &offsets, qulonglong length); - private slots: + private Q_SLOTS: void slotBrokenPieces(const QList &offsets, KIO::filesize_t length); private: diff -Nru kget-20.12.3/debian/changelog kget-21.04.0/debian/changelog --- kget-20.12.3/debian/changelog 2021-03-04 15:19:48.000000000 +0000 +++ kget-21.04.0/debian/changelog 2021-04-29 00:35:19.000000000 +0000 @@ -1,3 +1,9 @@ +kget (4:21.04.0-0ubuntu1) impish; urgency=medium + + * New upstream release (21.04.0) + + -- Rik Mills Thu, 29 Apr 2021 01:35:19 +0100 + kget (4:20.12.3-0ubuntu1) hirsute; urgency=medium * New upstream release (20.12.3) diff -Nru kget-20.12.3/debian/control kget-21.04.0/debian/control --- kget-20.12.3/debian/control 2021-03-04 15:19:48.000000000 +0000 +++ kget-21.04.0/debian/control 2021-04-29 00:35:19.000000000 +0000 @@ -33,7 +33,7 @@ libkf5widgetsaddons-dev (>= 5.55.0~), libkf5windowsystem-dev (>= 5.55.0~), libkf5xmlgui-dev (>= 5.55.0~), - libktorrent-dev (>= 20.12.3~), + libktorrent-dev (>= 21.04.0~), libmms-dev, libqca-qt5-2-dev (>= 2.1.0~), libsqlite3-dev, diff -Nru kget-20.12.3/desktop/CMakeLists.txt kget-21.04.0/desktop/CMakeLists.txt --- kget-20.12.3/desktop/CMakeLists.txt 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/desktop/CMakeLists.txt 2021-04-14 15:24:35.000000000 +0000 @@ -1,12 +1,12 @@ # associate KGet with the correct mimetypes configure_file(org.kde.kget.desktop.cmake ${CMAKE_CURRENT_BINARY_DIR}/org.kde.kget.desktop) -install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/org.kde.kget.desktop DESTINATION ${XDG_APPS_INSTALL_DIR}) +install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/org.kde.kget.desktop DESTINATION ${KDE_INSTALL_APPDIR}) install(FILES kget_download.desktop DESTINATION -${SERVICES_INSTALL_DIR}/ServiceMenus) +${KDE_INSTALL_KSERVICES5DIR}/ServiceMenus) # For DBus activation: configure_file(org.kde.kget.service.in ${CMAKE_CURRENT_BINARY_DIR}/org.kde.kget.service) install(FILES ${CMAKE_CURRENT_BINARY_DIR}/org.kde.kget.service - DESTINATION ${DBUS_SERVICES_INSTALL_DIR}) + DESTINATION ${KDE_INSTALL_DBUSSERVICEDIR}) diff -Nru kget-20.12.3/desktop/org.kde.kget.desktop.cmake kget-21.04.0/desktop/org.kde.kget.desktop.cmake --- kget-20.12.3/desktop/org.kde.kget.desktop.cmake 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/desktop/org.kde.kget.desktop.cmake 2021-04-14 15:24:35.000000000 +0000 @@ -157,6 +157,26 @@ GenericName[zh_CN]=下载管理器 GenericName[zh_HK]=下載管理員 GenericName[zh_TW]=下載管理員 +Comment=KGet is a versatile and user-friendly download manager +Comment[ca]=El KGet és un gestor de baixades versàtil i fàcil d'emprar +Comment[ca@valencia]=El KGet és un gestor de baixades versàtil i fàcil d'emprar +Comment[cs]=KGet je všestranný a jednoduše použitelný správce stahování +Comment[de]=KGet ist ein vielseitiges und einfach zu benutzendes Download-Verwaltungsprogramm +Comment[el]=Το KGet είναι ένας ευέλικτος και εύκολος στη χρήση διαχειριστής λήψεων αρχείων +Comment[en_GB]=KGet is a versatile and user-friendly download manager +Comment[es]=KGet es un versátil y amigable gestor de descargas +Comment[fi]=KGet on monipuolinen ja helppokäyttöinen latauksenhallinta +Comment[fr]=KGet est un gestionnaire de téléchargement intuitif et polyvalent. +Comment[ia]=KGet es un gerente per discargar versatile e amical +Comment[it]=KGet è un gestore di scaricamenti versatile e facile da utilizzare +Comment[nl]=KGet is een veelzijdige en gebruikersvriendelijke downloadbeheerder +Comment[pl]=KGet jest wszechstronnym i przyjaznym użytkownikowi programem do zarządzania pobieraniem +Comment[pt]=O KGet é um gestor de transferências de ficheiros simples e versátil de usar +Comment[pt_BR]=O KGet é um gerenciador de downloads versátil e amigável +Comment[sl]=KGet je vsestranski in uporabniku prijazen upravitelj prenosov +Comment[sv]=Kget är en mångsidig och lättanvänd nerladdningshanterare +Comment[uk]=KGet — гнучка і зручна програма для отримання даних з мережі +Comment[x-test]=xxKGet is a versatile and user-friendly download managerxx Categories=Qt;KDE;Network;FileTransfer; X-DBUS-ServiceType=Unique X-DocPath=kget/index.html diff -Nru kget-20.12.3/doc/CMakeLists.txt kget-21.04.0/doc/CMakeLists.txt --- kget-20.12.3/doc/CMakeLists.txt 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/doc/CMakeLists.txt 2021-04-14 15:24:35.000000000 +0000 @@ -1,2 +1,2 @@ ########### install files ############### -kdoctools_create_handbook(index.docbook INSTALL_DESTINATION ${HTML_INSTALL_DIR}/en SUBDIR kget) +kdoctools_create_handbook(index.docbook INSTALL_DESTINATION ${KDE_INSTALL_DOCBUNDLEDIR}/en SUBDIR kget) diff -Nru kget-20.12.3/extensions/konqueror/CMakeLists.txt kget-21.04.0/extensions/konqueror/CMakeLists.txt --- kget-20.12.3/extensions/konqueror/CMakeLists.txt 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/extensions/konqueror/CMakeLists.txt 2021-04-14 15:24:35.000000000 +0000 @@ -10,9 +10,9 @@ target_link_libraries(kget_browser_integration KF5::CoreAddons KF5::IconThemes KF5::Parts) -install(TARGETS kget_browser_integration DESTINATION ${PLUGIN_INSTALL_DIR}) +install(TARGETS kget_browser_integration DESTINATION ${KDE_INSTALL_PLUGINDIR}) ########### install files ############### -install(FILES kget_plug_in.rc kget_plug_in.desktop DESTINATION ${DATA_INSTALL_DIR}/khtml/kpartplugins) -install(FILES kget_plug_in.rc kget_plug_in.desktop DESTINATION ${DATA_INSTALL_DIR}/dolphinpart/kpartplugins) -install(FILES kget_plug_in.rc kget_plug_in.desktop DESTINATION ${DATA_INSTALL_DIR}/kwebkitpart/kpartplugins) +install(FILES kget_plug_in.rc kget_plug_in.desktop DESTINATION ${KDE_INSTALL_DATADIR}/khtml/kpartplugins) +install(FILES kget_plug_in.rc kget_plug_in.desktop DESTINATION ${KDE_INSTALL_DATADIR}/dolphinpart/kpartplugins) +install(FILES kget_plug_in.rc kget_plug_in.desktop DESTINATION ${KDE_INSTALL_DATADIR}/kwebkitpart/kpartplugins) diff -Nru kget-20.12.3/extensions/konqueror/kget_plug_in.cpp kget-21.04.0/extensions/konqueror/kget_plug_in.cpp --- kget-20.12.3/extensions/konqueror/kget_plug_in.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/extensions/konqueror/kget_plug_in.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -45,14 +45,14 @@ static QWidget* partWidget(QObject* obj) { - KParts::ReadOnlyPart* part = qobject_cast(obj); + auto* part = qobject_cast(obj); return part ? part->widget() : nullptr; } KGetPlugin::KGetPlugin(QObject *parent, const QVariantList&) :KParts::Plugin(parent) { - KActionMenu *menu = new KActionMenu(QIcon::fromTheme("kget"), i18n("Download Manager"), actionCollection()); + auto *menu = new KActionMenu(QIcon::fromTheme("kget"), i18n("Download Manager"), actionCollection()); actionCollection()->addAction("kget_menu", menu); menu->setDelayed( false ); @@ -178,14 +178,6 @@ // Remove any duplicates links from the list... m_linkList.removeDuplicates(); - if (!QDBusConnection::sessionBus().interface()->isServiceRegistered("org.kde.kget") && - KToolInvocation::kdeinitExecWait("kget") != 0) { - KMessageBox::sorry(partWidget(parent()), - i18n("Unable to communicate with the KGet download manager."), - i18n("Communication Error")); - return; - } - OrgKdeKgetMainInterface kgetInterface("org.kde.kget", "/KGet", QDBusConnection::sessionBus()); kgetInterface.importLinks(m_linkList); } diff -Nru kget-20.12.3/extensions/konqueror/kget_plug_in.desktop kget-21.04.0/extensions/konqueror/kget_plug_in.desktop --- kget-20.12.3/extensions/konqueror/kget_plug_in.desktop 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/extensions/konqueror/kget_plug_in.desktop 2021-04-14 15:24:35.000000000 +0000 @@ -75,7 +75,7 @@ Comment[es]=Una manera sencilla y versátil de usar el gestor de descarga de archivos Comment[et]=Tubli ja lihtne failide allalaadimise haldur Comment[eu]=Erabilera askotako eta errazeko fitxategiak deskargatzeko kudeatzailea -Comment[fi]=Monipuolinen ja helppokäyttöinen tiedostonlataaja +Comment[fi]=Monipuolinen ja helppokäyttöinen latauksenhallinta Comment[fr]=Un gestionnaire de téléchargements facile et polyvalent Comment[gl]=Un xestor de descargas de ficheiros versátil e fácil de usar. Comment[hu]=Egy sokoldalú és egyszerűen használható letöltéskezelő diff -Nru kget-20.12.3/extensions/webinterface/httpserver.h kget-21.04.0/extensions/webinterface/httpserver.h --- kget-20.12.3/extensions/webinterface/httpserver.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/extensions/webinterface/httpserver.h 2021-04-14 15:24:35.000000000 +0000 @@ -29,7 +29,7 @@ void settingsChanged(); -private slots: +private Q_SLOTS: void init(bool); void handleRequest(); diff -Nru kget-20.12.3/extensions/webinterface/www/CMakeLists.txt kget-21.04.0/extensions/webinterface/www/CMakeLists.txt --- kget-20.12.3/extensions/webinterface/www/CMakeLists.txt 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/extensions/webinterface/www/CMakeLists.txt 2021-04-14 15:24:35.000000000 +0000 @@ -15,4 +15,4 @@ view-refresh.png ) -install(FILES ${www_data} DESTINATION ${DATA_INSTALL_DIR}/kget/www) +install(FILES ${www_data} DESTINATION ${KDE_INSTALL_DATADIR}/kget/www) diff -Nru kget-20.12.3/kget.categories kget-21.04.0/kget.categories --- kget-20.12.3/kget.categories 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/kget.categories 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -org.kde.kget KGet IDENTIFIER [KGET_DEBUG] diff -Nru kget-20.12.3/main.cpp kget-21.04.0/main.cpp --- kget-20.12.3/main.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/main.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -52,7 +52,7 @@ kget = new MainWindow(!parser->isSet("showDropTarget"), parser->isSet("startWithoutAnimation"), false); #endif - DBusKGetWrapper *wrapper = new DBusKGetWrapper(kget); + auto *wrapper = new DBusKGetWrapper(kget); new MainAdaptor(wrapper); QDBusConnection::sessionBus().registerObject("/KGet", wrapper); } else { @@ -82,7 +82,7 @@ return 0; } -public slots: +public Q_SLOTS: void slotActivateRequested (QStringList args, const QString & /*workingDir*/) { parser->parse(args); diff -Nru kget-20.12.3/mainwindow.cpp kget-21.04.0/mainwindow.cpp --- kget-20.12.3/mainwindow.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/mainwindow.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -201,13 +201,13 @@ //FIXME: Not needed maybe because the normal delete already deletes groups? QAction *deleteGroupAction = actionCollection()->addAction("delete_groups"); - deleteGroupAction->setText(i18n("Delete Group")); + deleteGroupAction->setText(i18nc("@action", "Delete Group")); deleteGroupAction->setIcon(QIcon::fromTheme("edit-delete")); //deleteGroupAction->setHelpText(i18n("Delete selected group")); connect(deleteGroupAction, &QAction::triggered, this, &MainWindow::slotDeleteGroup); QAction *renameGroupAction = actionCollection()->addAction("rename_groups"); - renameGroupAction->setText(i18n("Rename Group...")); + renameGroupAction->setText(i18nc("@action", "Rename Group...")); renameGroupAction->setIcon(QIcon::fromTheme("edit-rename")); connect(renameGroupAction, &QAction::triggered, this, &MainWindow::slotRenameGroup); @@ -294,7 +294,7 @@ //stopSelectedAction->setHelpText(i18n("Pauses selected transfer")); connect(stopSelectedAction, &QAction::triggered, this, &MainWindow::slotStopSelectedDownload); - KActionMenu *startActionMenu = new KActionMenu(QIcon::fromTheme("media-playback-start"), i18n("Start"), + auto *startActionMenu = new KActionMenu(QIcon::fromTheme("media-playback-start"), i18n("Start"), actionCollection()); actionCollection()->addAction("start_menu", startActionMenu); startActionMenu->setDelayed(true); @@ -302,7 +302,7 @@ startActionMenu->addAction(startAllAction); connect(startActionMenu, &QAction::triggered, this, &MainWindow::slotStartDownload); - KActionMenu *stopActionMenu = new KActionMenu(QIcon::fromTheme("media-playback-pause"), i18n("Pause"), + auto *stopActionMenu = new KActionMenu(QIcon::fromTheme("media-playback-pause"), i18n("Pause"), actionCollection()); actionCollection()->addAction("stop_menu", stopActionMenu); stopActionMenu->setDelayed(true); @@ -354,7 +354,7 @@ connect(listLinksAction, &QAction::triggered, this, &MainWindow::slotShowListLinks); //create the download finished actions which can be displayed in the toolbar - KSelectAction *downloadFinishedActions = new KSelectAction(i18n("After downloads finished action"), this);//TODO maybe with name?? + auto *downloadFinishedActions = new KSelectAction(i18n("After downloads finished action"), this);//TODO maybe with name?? actionCollection()->addAction("download_finished_actions", downloadFinishedActions); //downloadFinishedActions->setHelpText(i18n("Choose an action that is executed after all downloads have been finished.")); @@ -393,7 +393,7 @@ void MainWindow::slotDownloadFinishedActions() { - QAction *action = static_cast(QObject::sender()); + auto *action = static_cast(QObject::sender()); bool ok; const int type = action->data().toInt(&ok); if (ok) { @@ -587,7 +587,7 @@ void MainWindow::slotPreferences() { //never reuse the preference dialog, to make sure its settings are always reloaded - PreferencesDialog * dialog = new PreferencesDialog( this, Settings::self() ); + auto * dialog = new PreferencesDialog( this, Settings::self() ); dialog->setAttribute(Qt::WA_DeleteOnClose); // keep us informed when the user changes settings @@ -612,7 +612,7 @@ void MainWindow::slotCreateMetalink() { - MetalinkCreator *dialog = new MetalinkCreator(this); + auto *dialog = new MetalinkCreator(this); dialog->setAttribute(Qt::WA_DeleteOnClose); dialog->show(); } @@ -654,7 +654,7 @@ group->setIconName(iconName); } } - //emit dataChanged(indexList.first(),indexList.last()); + //Q_EMIT dataChanged(indexList.first(),indexList.last()); } void MainWindow::slotStartDownload() @@ -1119,7 +1119,7 @@ void MainWindow::slotTransferHistory() { - TransferHistory *history = new TransferHistory(); + auto *history = new TransferHistory(); history->exec(); } @@ -1150,14 +1150,14 @@ /** slots for link list **/ void MainWindow::slotShowListLinks() { - KGetLinkView *link_view = new KGetLinkView(this); + auto *link_view = new KGetLinkView(this); link_view->importUrl(); link_view->show(); } void MainWindow::slotImportUrl(const QString &url) { - KGetLinkView *link_view = new KGetLinkView(this); + auto *link_view = new KGetLinkView(this); link_view->importUrl(url); link_view->show(); } diff -Nru kget-20.12.3/mainwindow.h kget-21.04.0/mainwindow.h --- kget-20.12.3/mainwindow.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/mainwindow.h 2021-04-14 15:24:35.000000000 +0000 @@ -51,7 +51,7 @@ //no slot, to make sure that MainWindow is correctly initialized before any transfers get added void init(); -public slots: +public Q_SLOTS: void slotQuit(); void slotImportUrl(const QString &url); void slotUpdateTitlePercent(); @@ -69,7 +69,7 @@ // set sensitive initial size QSize sizeHint() const override; -private slots: +private Q_SLOTS: // slots connected to actions void slotToggleDropTarget(); void slotNewTransfer(); @@ -132,24 +132,24 @@ // one-time functions void setupActions(); - KGet * m_kget; + KGet * m_kget = nullptr; // internal widgets - ViewsContainer * m_viewsContainer; + ViewsContainer * m_viewsContainer = nullptr; // separated widgets - DropTarget * m_drop; - Tray * m_dock; + DropTarget * m_drop = nullptr; + Tray * m_dock = nullptr; // actions - KToggleAction * m_autoPasteAction; - KToggleAction * m_menubarAction; - KToggleAction * m_konquerorIntegration; + KToggleAction * m_autoPasteAction = nullptr; + KToggleAction * m_menubarAction = nullptr; + KToggleAction * m_konquerorIntegration = nullptr; // for autopaste function QString lastClipboard; // timer for checking clipboard - autopaste function - QTimer *clipboardTimer; + QTimer *clipboardTimer = nullptr; bool m_startWithoutAnimation; bool m_doTesting; // UnitTest flag diff -Nru kget-20.12.3/org.kde.kget.appdata.xml kget-21.04.0/org.kde.kget.appdata.xml --- kget-20.12.3/org.kde.kget.appdata.xml 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/org.kde.kget.appdata.xml 2021-04-14 15:24:35.000000000 +0000 @@ -4,6 +4,7 @@ FSFAP GPL-2.0+ KGet + KGet KGet KGet KGet @@ -34,6 +35,7 @@ KGet KGet Download Manager + Xestor de descargues Gestor de baixades Gestor de baixades Správce stahování @@ -67,6 +69,7 @@

KGet is a versatile and user-friendly download manager.

+

KGet ye un xestor de descargues versátil y amañosu.

El KGet és un gestor de baixades versàtil i fàcil d'emprar.

El KGet és un gestor de baixades versàtil i fàcil d'emprar.

KGet er en alsidig og brugervenlig downloadhåndtering.

@@ -95,6 +98,7 @@

KGet 是一个功能多样且用户友好的下载管理器。

KGet 是款多功能且使用者友善的下載管理器。

Features:

+

Carauterístiques:

Característiques:

Característiques:

Vlastnosti:

@@ -126,6 +130,7 @@

功能:

  • Downloading files from FTP and HTTP(S) sources.
  • +
  • Descarga de ficheros dende oríxenes FTP, HTTP y HTTPS.
  • Baixa fitxers des de fonts FTP i HTTP/S.
  • Baixa fitxers des de fonts FTP i HTTP/S.
  • Download af filer fra FTP- og HTTP(S)-kilder.
  • @@ -154,6 +159,7 @@
  • 从 FTP 和 HTTP(S) 源下载文件。
  • 從 FTP 和 HTTP(S) 來源下載檔案。
  • Pausing and resuming of downloading files, as well as the ability to restart a download.
  • +
  • Posa y sigue colos ficheros de descarga, amás de poder reaniciar les descargues.
  • Fa pausa i reprèn la baixada de fitxers, així com la possibilitat de reiniciar una baixada.
  • Fa pausa i reprén la baixada de fitxers, així com la possibilitat de reiniciar una baixada.
  • Sæt downloadede filer på pause og genoptag dem, og muligheden for at genstarte en download.
  • @@ -182,6 +188,7 @@
  • 暂停和继续文件下载,还能够重新开始下载。
  • 暫停及繼續下載檔案,以及重新開始下載的能力。
  • Tells lots of information about current and pending downloads.
  • +
  • Diz muncha información tocante a les descargues actuales y pendientes.
  • Dóna molta informació sobre les baixades actuals i pendents.
  • Dóna molta informació sobre les baixades actuals i pendents.
  • Viser massere af information om nuværende og afventende downloads.
  • @@ -210,6 +217,7 @@
  • 显示当前和队列下载的许多信息。
  • 顯示關於目前和待下載項目的詳細資訊。
  • Embedding into system tray.
  • +
  • Incrustación na bandexa del sistema.
  • Està incrustat a la safata del sistema.
  • Està incrustat a la safata del sistema.
  • Indlejring i systembakken.
  • @@ -238,6 +246,7 @@
  • 嵌入到系统托盘。
  • 嵌入到系統通知區塊。
  • Integration with the Konqueror web browser.
  • +
  • Integración col restolador web Konqueror.
  • S'integra amb el navegador web Konqueror.
  • S'integra amb el navegador web Konqueror.
  • Integration med Konqueror-webbrowseren.
  • @@ -266,6 +275,7 @@
  • Konqueror 网页浏览器集成。
  • 能與 Konqueror 網頁瀏覽器整合。
  • Metalink support which contain multiple URLs for downloads, along with checksums and other information.
  • +
  • Sofitu pa metaenllaces que contienen munches URLs pa descargues, xunto coles sumes de comprobación y otra información.
  • Admet el «Metalink», el qual conté múltiples URL per a baixades, juntament amb les sumes de verificació i altra informació.
  • Admet el «Metalink», el qual conté múltiples URL per a baixades, juntament amb les sumes de verificació i altra informació.
  • Understøttelse af metalink med flere URL'er til downloads, samt checksumme og andre informationer.
  • @@ -302,6 +312,7 @@ Downloading files with KGet + Descarga de ficheros con KGet Baixada de fitxers amb el KGet Baixada de fitxers amb el KGet Stahuji soubory KGet @@ -340,9 +351,9 @@ org.kde.kget.desktop + - diff -Nru kget-20.12.3/plasma/applet/barapplet/kgetbarapplet.h kget-21.04.0/plasma/applet/barapplet/kgetbarapplet.h --- kget-20.12.3/plasma/applet/barapplet/kgetbarapplet.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/plasma/applet/barapplet/kgetbarapplet.h 2021-04-14 15:24:35.000000000 +0000 @@ -35,7 +35,7 @@ Q_OBJECT public: KGetBarApplet(QObject *parent, const QVariantList &args); - ~KGetBarApplet(); + ~KGetBarApplet() override; void init(); diff -Nru kget-20.12.3/plasma/applet/barapplet/kgetbarapplet_p.h kget-21.04.0/plasma/applet/barapplet/kgetbarapplet_p.h --- kget-20.12.3/plasma/applet/barapplet/kgetbarapplet_p.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/plasma/applet/barapplet/kgetbarapplet_p.h 2021-04-14 15:24:35.000000000 +0000 @@ -37,14 +37,14 @@ Q_OBJECT public: - Private(QGraphicsWidget *parent = 0); - ~Private(); + explicit Private(QGraphicsWidget *parent = nullptr); + ~Private() override; - public slots: + public Q_SLOTS: void addTransfers(const QList &transfers); void removeTransfers(const QList &transfers); - private slots: + private Q_SLOTS: void slotUpdateTransfer(int transferChange); private: diff -Nru kget-20.12.3/plasma/applet/CMakeLists.txt kget-21.04.0/plasma/applet/CMakeLists.txt --- kget-20.12.3/plasma/applet/CMakeLists.txt 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/plasma/applet/CMakeLists.txt 2021-04-14 15:24:35.000000000 +0000 @@ -15,7 +15,7 @@ kde4_add_plugin(plasma_kget_barapplet ${kgetbarapplet_SRCS}) target_link_libraries(plasma_kget_barapplet ${KDE4_PLASMA_LIBS} ${KDE4_KDEUI_LIBS}) -install(TARGETS plasma_kget_barapplet DESTINATION ${PLUGIN_INSTALL_DIR}) +install(TARGETS plasma_kget_barapplet DESTINATION ${KDE_INSTALL_PLUGINDIR}) #set(kgetpanelbar_SRCS @@ -28,7 +28,7 @@ #kde4_add_plugin(plasma_kget_panelbar ${kgetpanelbar_SRCS}) #target_link_libraries(plasma_kget_panelbar ${KDE4_PLASMA_LIBS} ${KDE4_KDEUI_LIBS} ${KDE4_KIO_LIBS}) # -#install(TARGETS plasma_kget_panelbar DESTINATION ${PLUGIN_INSTALL_DIR}) +#install(TARGETS plasma_kget_panelbar DESTINATION ${KDE_INSTALL_PLUGINDIR}) set(kgetpiechart_SRCS piechart/kgetpiechart.cpp @@ -40,9 +40,9 @@ kde4_add_plugin(plasma_kget_piechart ${kgetpiechart_SRCS}) target_link_libraries(plasma_kget_piechart ${KDE4_PLASMA_LIBS} ${KDE4_KDEUI_LIBS}) -install(TARGETS plasma_kget_piechart DESTINATION ${PLUGIN_INSTALL_DIR}) +install(TARGETS plasma_kget_piechart DESTINATION ${KDE_INSTALL_PLUGINDIR}) -install(FILES barapplet/kgetbarapplet-default.desktop DESTINATION ${SERVICES_INSTALL_DIR}) -#install(FILES panelbar/kgetpanelbarapplet-default.desktop DESTINATION ${SERVICES_INSTALL_DIR}) -install(FILES piechart/kgetpiechartapplet-default.desktop DESTINATION ${SERVICES_INSTALL_DIR}) +install(FILES barapplet/kgetbarapplet-default.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR}) +#install(FILES panelbar/kgetpanelbarapplet-default.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR}) +install(FILES piechart/kgetpiechartapplet-default.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR}) diff -Nru kget-20.12.3/plasma/applet/common/kgetapplet.h kget-21.04.0/plasma/applet/common/kgetapplet.h --- kget-20.12.3/plasma/applet/common/kgetapplet.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/plasma/applet/common/kgetapplet.h 2021-04-14 15:24:35.000000000 +0000 @@ -43,7 +43,7 @@ Q_OBJECT public: ProxyWidget(QGraphicsWidget * parent); - ~ProxyWidget(); + ~ProxyWidget() override; void paint(QPainter * p, const QStyleOptionGraphicsItem * option, QWidget * widget); @@ -51,7 +51,7 @@ QGraphicsWidget * dataWidget(); - private slots: + private Q_SLOTS: void themeChanged(); private: @@ -75,14 +75,14 @@ void init(); void setDataWidget(QGraphicsWidget * widget); -public slots: +public Q_SLOTS: void dataUpdated(const QString &name, const Plasma::DataEngine::Data &data); -private slots: +private Q_SLOTS: virtual void slotKgetStarted(); void slotUpdateTransfer(int transferChange); -signals: +Q_SIGNALS: void transfersAdded(const QList &transfers); void transfersRemoved(const QList &transfers); void update(); diff -Nru kget-20.12.3/plasma/applet/common/kgetappletutils.h kget-21.04.0/plasma/applet/common/kgetappletutils.h --- kget-20.12.3/plasma/applet/common/kgetappletutils.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/plasma/applet/common/kgetappletutils.h 2021-04-14 15:24:35.000000000 +0000 @@ -54,11 +54,11 @@ explicit ErrorWidget(const QString &message, QGraphicsWidget *parent = 0); ~ErrorWidget(); -private slots: +private Q_SLOTS: void launchKGet(); void checkKGetStatus(); -signals: +Q_SIGNALS: void kgetStarted(); private: diff -Nru kget-20.12.3/plasma/applet/panelbar/kgetpanelbar.h kget-21.04.0/plasma/applet/panelbar/kgetpanelbar.h --- kget-20.12.3/plasma/applet/panelbar/kgetpanelbar.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/plasma/applet/panelbar/kgetpanelbar.h 2021-04-14 15:24:35.000000000 +0000 @@ -37,17 +37,17 @@ Q_OBJECT public: KGetPanelBar(QObject *parent, const QVariantList &args); - ~KGetPanelBar(); + ~KGetPanelBar() override; void init(); void paintInterface(QPainter *painter, const QStyleOptionGraphicsItem *option, const QRect &contentsRect); -public slots: +public Q_SLOTS: void dataUpdated(const QString &name, const Plasma::DataEngine::Data &data); -private slots: +private Q_SLOTS: void showDialog(); private: diff -Nru kget-20.12.3/plasma/applet/panelbar/kgetpanelbar_p.h kget-21.04.0/plasma/applet/panelbar/kgetpanelbar_p.h --- kget-20.12.3/plasma/applet/panelbar/kgetpanelbar_p.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/plasma/applet/panelbar/kgetpanelbar_p.h 2021-04-14 15:24:35.000000000 +0000 @@ -32,20 +32,20 @@ { Q_OBJECT public: - Private(QWidget * parent = 0); + Private(QWidget * parent = nullptr); ~Private(); QGridLayout *dialogLayout() { return m_dialogLayout; }; -public slots: +public Q_SLOTS: void transfersAdded(const QList &transfers); void transfersRemoved(const QList &transfers); void update(); void clear(); -signals: +Q_SIGNALS: void progressBarChanged(int value); private: diff -Nru kget-20.12.3/plasma/applet/piechart/kgetpiechart.h kget-21.04.0/plasma/applet/piechart/kgetpiechart.h --- kget-20.12.3/plasma/applet/piechart/kgetpiechart.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/plasma/applet/piechart/kgetpiechart.h 2021-04-14 15:24:35.000000000 +0000 @@ -35,7 +35,7 @@ Q_OBJECT public: KGetPieChart(QObject *parent, const QVariantList &args); - ~KGetPieChart(); + ~KGetPieChart() override; void init(); diff -Nru kget-20.12.3/plasma/applet/piechart/kgetpiechart_p.h kget-21.04.0/plasma/applet/piechart/kgetpiechart_p.h --- kget-20.12.3/plasma/applet/piechart/kgetpiechart_p.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/plasma/applet/piechart/kgetpiechart_p.h 2021-04-14 15:24:35.000000000 +0000 @@ -94,11 +94,11 @@ Private(QGraphicsWidget *parent = 0); ~Private(); - public slots: + public Q_SLOTS: void addTransfers(const QList &transfers); void removeTransfers(const QList &transfers); - private slots: + private Q_SLOTS: void slotUpdateTransfer(int transferChange); private: diff -Nru kget-20.12.3/plasma/engine/CMakeLists.txt kget-21.04.0/plasma/engine/CMakeLists.txt --- kget-20.12.3/plasma/engine/CMakeLists.txt 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/plasma/engine/CMakeLists.txt 2021-04-14 15:24:35.000000000 +0000 @@ -9,5 +9,5 @@ kde4_add_plugin(plasma_engine_kget ${kget_engine_SRCS}) target_link_libraries(plasma_engine_kget ${KDE4_KDECORE_LIBS} ${KDE4_PLASMA_LIBS}) -install(TARGETS plasma_engine_kget DESTINATION ${PLUGIN_INSTALL_DIR}) -install(FILES plasma-engine-kget.desktop DESTINATION ${SERVICES_INSTALL_DIR}) +install(TARGETS plasma_engine_kget DESTINATION ${KDE_INSTALL_PLUGINDIR}) +install(FILES plasma-engine-kget.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR}) diff -Nru kget-20.12.3/plasma/engine/kgetengine.h kget-21.04.0/plasma/engine/kgetengine.h --- kget-20.12.3/plasma/engine/kgetengine.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/plasma/engine/kgetengine.h 2021-04-14 15:24:35.000000000 +0000 @@ -31,7 +31,7 @@ public: KGetEngine(QObject* parent, const QVariantList& args); - ~KGetEngine(); + ~KGetEngine() override; QStringList sources() const; @@ -39,7 +39,7 @@ bool sourceRequestEvent(const QString &name); bool updateSourceEvent(const QString& source); - private slots: + private Q_SLOTS: void getKGetData(const QString &name); void updateData(); void slotTransfersAdded(const QStringList &urls, const QStringList &dBusObjectPaths); diff -Nru kget-20.12.3/plasma/runner/CMakeLists.txt kget-21.04.0/plasma/runner/CMakeLists.txt --- kget-20.12.3/plasma/runner/CMakeLists.txt 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/plasma/runner/CMakeLists.txt 2021-04-14 15:24:35.000000000 +0000 @@ -13,9 +13,9 @@ install(TARGETS krunner_kget - DESTINATION ${PLUGIN_INSTALL_DIR} + DESTINATION ${KDE_INSTALL_PLUGINDIR} ) install(FILES plasma-runner-kget.desktop - DESTINATION ${SERVICES_INSTALL_DIR} + DESTINATION ${KDE_INSTALL_KSERVICES5DIR} ) diff -Nru kget-20.12.3/plasma/runner/kgetrunner.h kget-21.04.0/plasma/runner/kgetrunner.h --- kget-20.12.3/plasma/runner/kgetrunner.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/plasma/runner/kgetrunner.h 2021-04-14 15:24:35.000000000 +0000 @@ -29,16 +29,16 @@ Q_OBJECT public: - KGetRunner(QObject* parent, const QVariantList& args); - ~KGetRunner(); + explicit KGetRunner(QObject* parent, const QVariantList& args); + ~KGetRunner() override; void match(Plasma::RunnerContext& context); void run(const Plasma::RunnerContext& context, const Plasma::QueryMatch& match); - protected slots: + protected Q_SLOTS: void init(); - private slots: + private Q_SLOTS: void showNewTransferDialog(); void callFinished(QDBusPendingCallWatcher* call); diff -Nru kget-20.12.3/po/ar/kgetplugin.po kget-21.04.0/po/ar/kgetplugin.po --- kget-20.12.3/po/ar/kgetplugin.po 2021-03-02 00:48:39.000000000 +0000 +++ kget-21.04.0/po/ar/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2009-01-15 13:37+0400\n" "Last-Translator: zayed \n" "Language-Team: Arabic \n" @@ -56,16 +56,6 @@ msgid "No Links" msgstr "لا توجد روابط" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "" - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format diff -Nru kget-20.12.3/po/ar/kget.po kget-21.04.0/po/ar/kget.po --- kget-20.12.3/po/ar/kget.po 2021-03-02 00:48:39.000000000 +0000 +++ kget-21.04.0/po/ar/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" "PO-Revision-Date: 2012-02-12 22:04+0200\n" "Last-Translator: Abdalrahim Fakhouri \n" "Language-Team: Arabic \n" @@ -278,7 +278,7 @@ msgid " sec" msgstr " ثانية" -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "تعذّر فتح محفظة.ك" @@ -325,7 +325,7 @@ msgid "The width of the columns in the history view" msgstr "عرض الأعمدة في عرض التاريخ" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "الملحقات" @@ -460,8 +460,8 @@ msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -487,7 +487,7 @@ msgstr "خواديم المفاتيح" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -555,56 +555,56 @@ "settings or restart KGet and retry downloading." msgstr "" -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "أمتأكد أنك تريد إزالة المجموعة المسماة %1؟ " -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, kde-format msgid "Remove Group" msgstr "أزل المجموعة" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, fuzzy, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "" "هل أنت متأكد من أنك تريد حذف\n" "المجموعة المسماة%1؟" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, kde-format msgid "Remove groups" msgstr "أزل المجموعات" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    %1

    " msgstr "" -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, kde-format msgid "Download added" msgstr "تم إضافة التنزيل" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "" -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "" -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "تنزيلاتي" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" @@ -613,17 +613,17 @@ "الملف %1 موجود مسبقًا.\n" "أأكتب فوقه؟" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "أأكتب فوق الملف الموجود؟" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "تعذّر الحفظ الحفظ إلى: %1" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -638,35 +638,35 @@ msgstr[4] "" msgstr[5] "" -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "تنزيل جديد" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "أدخل المسار:" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, fuzzy, kde-format #| msgid "Save As" msgctxt "@title:window" msgid "Save As" msgstr "احفظ باسم" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -675,7 +675,7 @@ "عنوان المسار خاطئ التكوين:\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, kde-format msgid "" "Malformed URL, protocol missing:\n" @@ -684,7 +684,7 @@ "عنوان المسار خاطئ التكوين، البروتوكول مفقود:\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -694,12 +694,12 @@ "Download it again?" msgstr "" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, kde-format msgid "Download it again?" msgstr "أأعيد تنزيله؟" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -709,17 +709,17 @@ "Delete it and download again?" msgstr "" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, kde-format msgid "Delete it and download again?" msgstr "احذفه ثم نزّله مجدّدًا" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "المجلد غير قابل للكتابة" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -727,7 +727,7 @@ "Download and delete the previous one?" msgstr "" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, fuzzy, kde-format msgid "File already downloaded. Download anyway?" msgstr "" @@ -735,35 +735,35 @@ "%1\n" "تنزيل مرة أخرى؟" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "أنت تنزّل هذا الملف بالفعل" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, kde-format msgid "File already exists" msgstr "الملف موجود مسبقاً" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "" -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "" -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, fuzzy, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "" "

    لم يتمكن محمل الملحقات من تحميل الملحق:
    %1

    " -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -774,7 +774,7 @@ "%1\n" "لأنه دليل." -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -785,31 +785,31 @@ "%1\n" "لأنه ليس ملفًا محليًا." -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    %1

    " msgstr "" -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, kde-format msgid "Download completed" msgstr "اكتمل التنزيل" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    %1

    " msgstr "" -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, kde-format msgid "Download started" msgstr "بدأ التنزيل" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    %2

    " msgstr "" -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, kde-format msgid "Resolve" msgstr "حلّ" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, kde-format msgid "KGet is now closing, as all downloads have completed." msgstr "سيتم الآن إغلاق كجت لأن جميع التنزيلات اكتملت." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "سيتم الآن إيقاف تشغيل الحاسوب لأن جميع التنزيلات اكتملت." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgctxt "Shutting down computer" msgid "Shutdown" msgstr "أطفئ" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, fuzzy, kde-format msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "سيتم الآن إيقاف تشغيل الحاسوب لأن جميع التنزيلات اكتملت." -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, fuzzy, kde-format msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "سيتم الآن إيقاف تشغيل الحاسوب لأن جميع التنزيلات اكتملت." -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgctxt "Suspending computer" msgid "Suspending" msgstr "يعلّق" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, kde-format msgctxt "abort the proposed action" msgid "Abort" msgstr "الغِ" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "" -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, kde-format msgid "Downloads completed" msgstr "اكتمل التنزيل" @@ -1711,27 +1711,21 @@ msgid "Decrease Priority" msgstr "قلِّل الأولوية" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 -#, kde-format +#: mainwindow.cpp:204 +#, fuzzy, kde-format +#| msgid "Delete Group" +#| msgid_plural "Delete Groups" +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "احذف المجموعة" -msgstr[1] "احذف المجموعة" -msgstr[2] "احذف المجموعتين" -msgstr[3] "احذف المجموعات" -msgstr[4] "احذف المجموعات" -msgstr[5] "احذف المجموعات" +msgstr "احذف المجموعة" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 -#, kde-format +#: mainwindow.cpp:210 +#, fuzzy, kde-format +#| msgid "Rename Group..." +#| msgid_plural "Rename Groups..." +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "أعد تسمية المجموعة..." -msgstr[1] "أعد تسمية المجموعة..." -msgstr[2] "أعد تسمية المجموعتين..." -msgstr[3] "أعد تسمية المجموعات..." -msgstr[4] "أعد تسمية المجموعات..." -msgstr[5] "أعد تسمية المجموعات..." +msgstr "أعد تسمية المجموعة..." #: mainwindow.cpp:215 #, kde-format @@ -2068,8 +2062,8 @@ msgid "Which files the chunk is located in" msgstr "الملف الذي تقع فيه هذه الكتلة" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2088,16 +2082,16 @@ msgid "Currently downloading:" msgstr "ما يجري تحميله حالياً:" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, kde-format msgid "Downloaded:" msgstr "المُنزّل:" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -2967,8 +2961,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3032,8 +3026,8 @@ msgid "New Script...." msgstr "سكربت جديد..." -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, kde-format @@ -3356,6 +3350,28 @@ msgid "Failed to write to the file." msgstr "فشل في الكتابة إلى الملف %1: %2" +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "احذف المجموعة" +msgstr[1] "احذف المجموعة" +msgstr[2] "احذف المجموعتين" +msgstr[3] "احذف المجموعات" +msgstr[4] "احذف المجموعات" +msgstr[5] "احذف المجموعات" + +#: ui/contextmenu.cpp:120 +#, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "أعد تسمية المجموعة..." +msgstr[1] "أعد تسمية المجموعة..." +msgstr[2] "أعد تسمية المجموعتين..." +msgstr[3] "أعد تسمية المجموعات..." +msgstr[4] "أعد تسمية المجموعات..." +msgstr[5] "أعد تسمية المجموعات..." + #: ui/droptarget.cpp:84 #, kde-format msgctxt "fix position for droptarget" @@ -3668,31 +3684,31 @@ msgstr "افتح ملفًا" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, kde-format msgid "&File" msgstr "&ملف" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, kde-format msgid "&Downloads" msgstr "التن&زيلات" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "إ&عدادات" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "&مساعدة" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "شريط الأدوات الرئيسي" @@ -4071,8 +4087,8 @@ msgid "File size (in bytes):" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, fuzzy, kde-format msgid "Verification:" @@ -4623,18 +4639,18 @@ msgid "Remaining Time:" msgstr "الوقت المتبقي:" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, kde-format msgid "Transfer Settings for %1" msgstr "إعدادات نقل %1" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." msgstr "" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "Destination unmodified" msgstr "لم يتم تغيير الوجهة" diff -Nru kget-20.12.3/po/bg/kgetplugin.po kget-21.04.0/po/bg/kgetplugin.po --- kget-20.12.3/po/bg/kgetplugin.po 2021-03-02 00:48:39.000000000 +0000 +++ kget-21.04.0/po/bg/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2011-07-13 20:34+0300\n" "Last-Translator: Yasen Pramatarov \n" "Language-Team: Bulgarian \n" @@ -48,22 +48,18 @@ msgid "No Links" msgstr "Няма препратки" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "Грешка при комуникацията с програмата за изтегляния KGet." - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "Грешка при комуникация" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format msgid "&Tools" msgstr "&Инструменти" +#~ msgid "Unable to communicate with the KGet download manager." +#~ msgstr "Грешка при комуникацията с програмата за изтегляния KGet." + +#~ msgid "Communication Error" +#~ msgstr "Грешка при комуникация" + #~ msgid "Plugins" #~ msgstr "Приставки" diff -Nru kget-20.12.3/po/bg/kget.po kget-21.04.0/po/bg/kget.po --- kget-20.12.3/po/bg/kget.po 2021-03-02 00:48:39.000000000 +0000 +++ kget-21.04.0/po/bg/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" "PO-Revision-Date: 2011-07-22 23:33+0300\n" "Last-Translator: Yasen Pramatarov \n" "Language-Team: Bulgarian \n" @@ -279,7 +279,7 @@ msgid " sec" msgstr " сек" -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "" @@ -326,7 +326,7 @@ msgid "The width of the columns in the history view" msgstr "" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "Приставки" @@ -462,8 +462,8 @@ msgstr "Най-силна (най-бавна)" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -489,7 +489,7 @@ msgstr "Сървъри с ключове:" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -557,54 +557,54 @@ "settings or restart KGet and retry downloading." msgstr "" -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, kde-format msgid "Remove Group" msgstr "Премахване на група" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, kde-format msgid "Remove groups" msgstr "Премахване на групи" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    %1

    " msgstr "" -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, kde-format msgid "Download added" msgstr "Добавено е изтегляне" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "" -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "" -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "Моите изтегляния" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" @@ -613,17 +613,17 @@ "Файлът \"%1\" вече съществува.\n" "Да се презапише ли?" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "Да се презапише ли съществуващият файл?" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -634,35 +634,35 @@ msgstr[0] "" msgstr[1] "" -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "Неподдържан протокол" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "Ново изтегляне" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "Въведете адрес:" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, fuzzy, kde-format #| msgid "Save As" msgctxt "@title:window" msgid "Save As" msgstr "Запис като" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -671,7 +671,7 @@ "Неправилен адрес:\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, kde-format msgid "" "Malformed URL, protocol missing:\n" @@ -680,7 +680,7 @@ "Неправилен адрес, липсва протокол:\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -690,12 +690,12 @@ "Download it again?" msgstr "" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, kde-format msgid "Download it again?" msgstr "Да се свали ли отново?" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -705,17 +705,17 @@ "Delete it and download again?" msgstr "" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, kde-format msgid "Delete it and download again?" msgstr "Да се изтрие ли и свали отново?" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "Нямате права за запис в тази директория" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -723,39 +723,39 @@ "Download and delete the previous one?" msgstr "" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, kde-format msgid "File already downloaded. Download anyway?" msgstr "Файлът вече е изтеглен. Да се изтегли ли въпреки това?" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "Вече сваляте същия файл" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, kde-format msgid "File already exists" msgstr "Файлът вече съществува" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "" -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "" -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "" -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -766,7 +766,7 @@ "%1\n" "не е изтрит, понеже е директория." -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -774,31 +774,31 @@ "as it is not a local file." msgstr "Елементът %1 не е изтрит, понеже не е локален файл." -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    %1

    " msgstr "" -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, kde-format msgid "Download completed" msgstr "Изтеглянето завърши" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    %1

    " msgstr "" -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, kde-format msgid "Download started" msgstr "Изтеглянето започна" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    %2

    " msgstr "" -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, fuzzy, kde-format #| msgctxt "@action:button" #| msgid "Remove" msgid "Resolve" msgstr "Премахване" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, fuzzy, kde-format #| msgid "KGet quits now because all downloads have been completed." msgid "KGet is now closing, as all downloads have completed." msgstr "Изтеглянето на файловете завърши." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, fuzzy, kde-format #| msgid "" #| "The computer will turn off now because all downloads have been completed." msgid "The computer will now turn off, as all downloads have completed." msgstr "Изтеглянето на всички файлове завърши. Компютърът ще бъде изключен." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgctxt "Shutting down computer" msgid "Shutdown" msgstr "Изключване" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, fuzzy, kde-format #| msgid "" #| "The computer will turn off now because all downloads have been completed." msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "Изтеглянето на всички файлове завърши. Компютърът ще бъде изключен." -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "Приспиване" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, fuzzy, kde-format #| msgid "" #| "The computer will turn off now because all downloads have been completed." msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "Изтеглянето на всички файлове завърши. Компютърът ще бъде изключен." -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgctxt "Suspending computer" msgid "Suspending" msgstr "Дълбоко приспиване" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, kde-format msgctxt "abort the proposed action" msgid "Abort" msgstr "Прекъсване" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "" -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, kde-format msgid "Downloads completed" msgstr "Изтеглянията завършиха" @@ -1737,19 +1737,21 @@ msgid "Decrease Priority" msgstr "Намаляване на приоритета" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 -#, kde-format +#: mainwindow.cpp:204 +#, fuzzy, kde-format +#| msgid "Delete Group" +#| msgid_plural "Delete Groups" +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "Изтриване на група" -msgstr[1] "Изтриване на групи" +msgstr "Изтриване на група" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 -#, kde-format +#: mainwindow.cpp:210 +#, fuzzy, kde-format +#| msgid "Rename Group..." +#| msgid_plural "Rename Groups..." +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "Преименуване на група..." -msgstr[1] "Преименуване на групи..." +msgstr "Преименуване на група..." #: mainwindow.cpp:215 #, kde-format @@ -2085,8 +2087,8 @@ msgid "Which files the chunk is located in" msgstr "" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2105,16 +2107,16 @@ msgid "Currently downloading:" msgstr "Изтегляни в момента:" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, kde-format msgid "Downloaded:" msgstr "Изтеглени:" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -2971,8 +2973,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3037,8 +3039,8 @@ msgid "New Script...." msgstr "Нов скрипт..." -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, kde-format @@ -3367,6 +3369,20 @@ msgid "Failed to write to the file." msgstr "Невъзможно създаване на %1 : %2" +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "Изтриване на група" +msgstr[1] "Изтриване на групи" + +#: ui/contextmenu.cpp:120 +#, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "Преименуване на група..." +msgstr[1] "Преименуване на групи..." + #: ui/droptarget.cpp:84 #, kde-format msgctxt "fix position for droptarget" @@ -3686,31 +3702,31 @@ msgstr "Отваряне на файл" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, kde-format msgid "&File" msgstr "&Файл" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, kde-format msgid "&Downloads" msgstr "&Изтегляния" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "&Настройки" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "&Помощ" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "Главна лента с инструменти" @@ -4099,8 +4115,8 @@ msgid "File size (in bytes):" msgstr "Големина на файл (в байтове):" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, kde-format msgid "Verification:" @@ -4654,19 +4670,19 @@ msgid "Remaining Time:" msgstr "Оставащо време:" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, fuzzy, kde-format #| msgid "Transfer Plugins" msgid "Transfer Settings for %1" msgstr ".." -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." msgstr "" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, fuzzy, kde-format #| msgid "Destination" msgid "Destination unmodified" diff -Nru kget-20.12.3/po/bs/kgetplugin.po kget-21.04.0/po/bs/kgetplugin.po --- kget-20.12.3/po/bs/kgetplugin.po 2021-03-02 00:48:39.000000000 +0000 +++ kget-21.04.0/po/bs/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kdenetwork\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2012-09-03 13:33+0000\n" "Last-Translator: Samir Ribić \n" "Language-Team: Bosnian \n" @@ -50,18 +50,14 @@ msgid "No Links" msgstr "Nema linkova" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "Ne mogu da dozovem menadžer preuzimanja KGet." - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "Greška u komunikaciji" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format msgid "&Tools" msgstr "&Alati" + +#~ msgid "Unable to communicate with the KGet download manager." +#~ msgstr "Ne mogu da dozovem menadžer preuzimanja KGet." + +#~ msgid "Communication Error" +#~ msgstr "Greška u komunikaciji" diff -Nru kget-20.12.3/po/bs/kget.po kget-21.04.0/po/bs/kget.po --- kget-20.12.3/po/bs/kget.po 2021-03-02 00:48:39.000000000 +0000 +++ kget-21.04.0/po/bs/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" "PO-Revision-Date: 2015-01-07 00:37+0000\n" "Last-Translator: Samir Ribić \n" "Language-Team: Bosanski \n" @@ -272,7 +272,7 @@ msgid " sec" msgstr " sek" -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "Ne mogu otvoriti KWallet" @@ -319,7 +319,7 @@ msgid "The width of the columns in the history view" msgstr "Širina kolona u prikazu historijata" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "Priključci" @@ -454,8 +454,8 @@ msgstr "Najjača (najsporije)" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -481,7 +481,7 @@ msgstr "Serveri ključeva:" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -553,27 +553,27 @@ "Ključ nije preuzet jer nema nijednog upotrebljivog servera ključeva. Dodajte " "još servera u postavkama, ili ponovo pokrenite KGet i pokušajte preuzimanje." -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "Želite li zaista ukloniti grupu %1?" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, kde-format msgid "Remove Group" msgstr "Ukloni grupu" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "Želite li zaista ukloniti sljedeće grupe?" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, kde-format msgid "Remove groups" msgstr "Ukloni grupe" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    Sljedeći prijenos je dodat na listu preuzimanja:

    %1

    " -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, kde-format msgid "Download added" msgstr "Dodano preuzimanje" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "

    Sljedeći prijenos je dodat na spisak preuzimanja:

    " -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "

    Sljedeći prijenosi su dodati na spisak preuzimanja:

    " -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "Moja preuzimanja" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" @@ -611,17 +611,17 @@ "Datoteka %1 već postoji.\n" "Prebrisati je?" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "Prebrisati postojeću datoteku?" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "Ne mogu da snimim u: %1" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -639,35 +639,35 @@ "

    Sljedeći URL‑ovi ne mogu da se preuzmu jer K‑get ne podržava njihove " "protokole:

    " -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "Nepodržan protokol" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "Novo preuzimanje" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "Unesi URL:" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, fuzzy, kde-format #| msgid "Save As" msgctxt "@title:window" msgid "Save As" msgstr "Snimi kao" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -676,7 +676,7 @@ "Neispravan URL:\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, kde-format msgid "" "Malformed URL, protocol missing:\n" @@ -685,7 +685,7 @@ "Neispravan URL, nedostaje protokol:\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -700,12 +700,12 @@ "\n" "Preuzeti ponovo?" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, kde-format msgid "Download it again?" msgstr "Preuzeti ponovo?" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -720,17 +720,17 @@ "\n" "Obrisati ga i preuzeti opet?" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, kde-format msgid "Delete it and download again?" msgstr "Obrisati i preuzeti opet?" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "U direktorij se ne može pisati" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -742,39 +742,39 @@ "\n" "Obrisati je i preuzeti ponovo?" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, kde-format msgid "File already downloaded. Download anyway?" msgstr "Datoteka je već preuzeta. Preuzeti je ponovo?" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "Već preuzimate istu datoteku" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, kde-format msgid "File already exists" msgstr "Datoteka već postoji" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "Internet konekcija uspostavljena, nastavak transfera." -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "Nema internet konekcije, zaustavljanje trasfera." -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "Priključak nije mogao da se učita: %1." -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -785,7 +785,7 @@ "%1\n" "pošto je to direktorij." -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -796,7 +796,7 @@ "%1\n" "pošto to nije lokalna datoteka." -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    Sljedeća datoteka je završila s preuzimanjem:

    %1

    " -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, kde-format msgid "Download completed" msgstr "Preuzimanje završeno" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    Sljedeći prijenos je započet:

    %1

    " -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, kde-format msgid "Download started" msgstr "Započeto preuzimanje" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    Desila se greška u sljedećem prijenosu:

    " "%1

    Poruka greške je:

    %2

    " -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, kde-format msgid "Resolve" msgstr "Razriješi" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, kde-format msgid "KGet is now closing, as all downloads have completed." msgstr "KGet će se sad zatvoriti, pošto su sva preuzimanja završena." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "Računar će se sad ugasiti, pošto su sva preuzimanja završena." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgctxt "Shutting down computer" msgid "Shutdown" msgstr "Ugasi" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "" "Računar će se sad suspendovati na disk, pošto su sva preuzimanja završena." -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "Hibernacija" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "" "Računar će se sad suspendovati u memoriju, pošto su sva preuzimanja završena." -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgctxt "Suspending computer" msgid "Suspending" msgstr "Suspendovanje" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, kde-format msgctxt "abort the proposed action" msgid "Abort" msgstr "Prekid" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "

    Svi prijenosi su završeni.

    " -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, kde-format msgid "Downloads completed" msgstr "Preuzimanja završena" @@ -1763,21 +1763,21 @@ msgid "Decrease Priority" msgstr "Smanji prioritet" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 -#, kde-format +#: mainwindow.cpp:204 +#, fuzzy, kde-format +#| msgid "Delete Group" +#| msgid_plural "Delete Groups" +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "Obriši grupu" -msgstr[1] "Obriši grupe" -msgstr[2] "Obriši grupe" +msgstr "Obriši grupu" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 -#, kde-format +#: mainwindow.cpp:210 +#, fuzzy, kde-format +#| msgid "Rename Group..." +#| msgid_plural "Rename Groups..." +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "Preimenuj grupu..." -msgstr[1] "Preimenuj grupe..." -msgstr[2] "Preimenuj grupe..." +msgstr "Preimenuj grupu..." #: mainwindow.cpp:215 #, kde-format @@ -2115,8 +2115,8 @@ msgid "Which files the chunk is located in" msgstr "U kojoj datoteci se nalazi parče" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2135,16 +2135,16 @@ msgid "Currently downloading:" msgstr "Trenutno se preuzima:" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, kde-format msgid "Downloaded:" msgstr "Preuzeto:" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -3009,8 +3009,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3074,8 +3074,8 @@ msgid "New Script...." msgstr "Nova skripta..." -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, kde-format @@ -3404,6 +3404,22 @@ msgid "Failed to write to the file." msgstr "Neuspjelo pisanje u datoteku." +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "Obriši grupu" +msgstr[1] "Obriši grupe" +msgstr[2] "Obriši grupe" + +#: ui/contextmenu.cpp:120 +#, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "Preimenuj grupu..." +msgstr[1] "Preimenuj grupe..." +msgstr[2] "Preimenuj grupe..." + #: ui/droptarget.cpp:84 #, kde-format msgctxt "fix position for droptarget" @@ -3717,31 +3733,31 @@ msgstr "Otvori datoteku" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, kde-format msgid "&File" msgstr "&Datoteka" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, kde-format msgid "&Downloads" msgstr "&Preuzimanja" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "&Postavke" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "&Pomoć" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "Glavna alatna traka" @@ -4125,8 +4141,8 @@ msgid "File size (in bytes):" msgstr "Veličina datoteke (bajtova):" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, kde-format msgid "Verification:" @@ -4689,18 +4705,18 @@ msgid "Remaining Time:" msgstr "Preostalo vrijeme:" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, kde-format msgid "Transfer Settings for %1" msgstr "Postavke prijenosa za %1" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." msgstr "Promjena odredišta nije uspjela, ostaje kakvo jeste." -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "Destination unmodified" msgstr "Odredište nije izmijenjeno" diff -Nru kget-20.12.3/po/ca/kgetplugin.po kget-21.04.0/po/ca/kgetplugin.po --- kget-20.12.3/po/ca/kgetplugin.po 2021-03-02 00:48:39.000000000 +0000 +++ kget-21.04.0/po/ca/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2012-07-08 21:31+0200\n" "Last-Translator: Josep Ma. Ferrer \n" "Language-Team: Catalan \n" @@ -50,18 +50,14 @@ msgid "No Links" msgstr "Cap enllaç" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "No s'ha pogut comunicar amb el gestor de baixades KGet." - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "Error de comunicació" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format msgid "&Tools" msgstr "&Eines" + +#~ msgid "Unable to communicate with the KGet download manager." +#~ msgstr "No s'ha pogut comunicar amb el gestor de baixades KGet." + +#~ msgid "Communication Error" +#~ msgstr "Error de comunicació" diff -Nru kget-20.12.3/po/ca/kget.po kget-21.04.0/po/ca/kget.po --- kget-20.12.3/po/ca/kget.po 2021-03-02 00:48:39.000000000 +0000 +++ kget-21.04.0/po/ca/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -1,9 +1,9 @@ # Translation of kget.po to Catalan -# Copyright (C) 2002-2020 This_file_is_part_of_KDE +# Copyright (C) 2002-2021 This_file_is_part_of_KDE # This file is distributed under the license LGPL version 2.1 or # version 3 or later versions approved by the membership of KDE e.V. # -# Antoni Bella Pérez , 2002, 2003, 2006, 2014, 2017, 2018, 2019, 2020. +# Antoni Bella Pérez , 2002, 2003, 2006, 2014, 2017, 2018, 2019, 2020, 2021. # Albert Astals Cid , 2004, 2005. # Josep Ma. Ferrer , 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2019, 2020. # Manuel Tortosa Moreno , 2009. @@ -11,15 +11,15 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" -"PO-Revision-Date: 2020-10-13 20:52+0200\n" -"Last-Translator: Josep Ma. Ferrer \n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" +"PO-Revision-Date: 2021-03-01 13:22+0100\n" +"Last-Translator: Antoni Bella Pérez \n" "Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 20.08.1\n" +"X-Generator: Lokalize 20.12.2\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: &\n" "X-Poedit-Language: Catalan\n" @@ -275,7 +275,7 @@ msgid " sec" msgstr " s" -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "No s'ha pogut obrir el KWallet" @@ -322,7 +322,7 @@ msgid "The width of the columns in the history view" msgstr "L'amplada de les columnes a la vista de l'historial" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "Connectors" @@ -457,8 +457,8 @@ msgstr "Molt forta (més lenta)" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -484,7 +484,7 @@ msgstr "Servidors de claus:" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -559,27 +559,27 @@ "més servidors a l'arranjament o reinicieu el KGet i torneu a intentar la " "baixada." -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "Esteu segur que voleu eliminar el grup anomenat %1?" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, kde-format msgid "Remove Group" msgstr "Elimina un grup" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "Esteu segur que voleu eliminar els grups següents?" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, kde-format msgid "Remove groups" msgstr "Elimina els grups" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    La transferència següent s'ha afegit a la llista de baixades:

    %1

    " -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, kde-format msgid "Download added" msgstr "S'ha afegit la baixada" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "

    La transferència següent s'ha afegit a la llista de baixades:

    " -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "" "

    Les transferències següents s'han afegit a la llista de baixades:

    " -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "Les meves baixades" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" @@ -618,17 +618,17 @@ "El fitxer %1 ja existeix.\n" "El sobreescric?" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "Sobreescric el fitxer existent?" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "No es pot desar a: %1" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -642,34 +642,34 @@ "

    Els URL següents no es poden baixar, els seus protocols no són admesos " "pel KGet:

    " -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "Protocol no acceptat" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "Baixada nova" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "Introduïu un URL:" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "Seleccioneu un directori" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, kde-format msgctxt "@title:window" msgid "Save As" msgstr "Desa com a" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -678,7 +678,7 @@ "URL amb format incorrecte:\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, kde-format msgid "" "Malformed URL, protocol missing:\n" @@ -687,7 +687,7 @@ "URL incorrecte, manca el protocol:\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -702,12 +702,12 @@ "\n" "El baixo un altre cop?" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, kde-format msgid "Download it again?" msgstr "El torno a baixar?" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -722,17 +722,17 @@ "\n" "La suprimeixo i torno a baixar-la?" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, kde-format msgid "Delete it and download again?" msgstr "La suprimeixo i torno a baixar-la?" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "No es pot escriure al directori" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -743,39 +743,39 @@ "\n" "El baixo i suprimeixo l'anterior?" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, kde-format msgid "File already downloaded. Download anyway?" msgstr "El fitxer ja està baixat. El baixo igualment?" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "Ja heu baixat el mateix fitxer" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, kde-format msgid "File already exists" msgstr "El fitxer ja existeix" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "S'ha establert la connexió d'Internet, es reprenen les transferències." -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "No hi ha connexió d'Internet, s'aturen les transferències." -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "El carregador de connectors no ha pogut carregar el connector: %1." -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -786,7 +786,7 @@ "%1\n" "atès que es tracta d'un directori." -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -797,7 +797,7 @@ "%1\n" "atès que no es tracta d'un fitxer local." -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    El fitxer següent ha finalitzat la baixada:

    %1

    " -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, kde-format msgid "Download completed" msgstr "Baixada finalitzada" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    La transferència següent s'ha iniciat:

    " "%1

    " -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, kde-format msgid "Download started" msgstr "S'ha iniciat la baixada" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    %1

    El missatge d'error és:

    %2

    " -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, kde-format msgid "Resolve" msgstr "Resol" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, kde-format msgid "KGet is now closing, as all downloads have completed." msgstr "El KGet acaba ara perquè totes les baixades han finalitzat." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "S'aturarà ara l'ordinador perquè totes les baixades han finalitzat." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgctxt "Shutting down computer" msgid "Shutdown" msgstr "Aturada" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "" "Ara l'ordinador se suspendrà al disc, perquè totes les baixades han " "finalitzat." -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "S'està hibernant" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "" "Ara l'ordinador se suspendrà a la RAM, perquè totes les baixades han " "finalitzat." -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgctxt "Suspending computer" msgid "Suspending" msgstr "S'està suspenent" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, kde-format msgctxt "abort the proposed action" msgid "Abort" msgstr "Interromp" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "

    Totes les transferències han finalitzat.

    " -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, kde-format msgid "Downloads completed" msgstr "Baixades finalitzades" @@ -1763,19 +1763,17 @@ msgid "Decrease Priority" msgstr "Disminueix la prioritat" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 +#: mainwindow.cpp:204 #, kde-format +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "Suprimeix el grup" -msgstr[1] "Suprimeix els grups" +msgstr "Suprimeix el grup" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 +#: mainwindow.cpp:210 #, kde-format +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "Reanomena un grup..." -msgstr[1] "Reanomena grups..." +msgstr "Reanomena el grup..." #: mainwindow.cpp:215 #, kde-format @@ -2107,8 +2105,8 @@ msgid "Which files the chunk is located in" msgstr "En quins fitxers està localitzat el tros" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2127,16 +2125,16 @@ msgid "Currently downloading:" msgstr "Baixant ara:" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, kde-format msgid "Downloaded:" msgstr "Baixat:" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -3004,8 +3002,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3069,8 +3067,8 @@ msgid "New Script...." msgstr "Script nou...." -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, kde-format @@ -3399,6 +3397,20 @@ msgid "Failed to write to the file." msgstr "Ha fallat en escriure al fitxer." +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "Suprimeix el grup" +msgstr[1] "Suprimeix els grups" + +#: ui/contextmenu.cpp:120 +#, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "Reanomena un grup..." +msgstr[1] "Reanomena grups..." + #: ui/droptarget.cpp:84 #, kde-format msgctxt "fix position for droptarget" @@ -3711,31 +3723,31 @@ msgstr "Obre fitxer" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, kde-format msgid "&File" msgstr "&Fitxer" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, kde-format msgid "&Downloads" msgstr "&Baixades" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "A&rranjament" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "A&juda" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "Barra d'eines principal" @@ -4117,8 +4129,8 @@ msgid "File size (in bytes):" msgstr "Mida del fitxer (en bytes):" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, kde-format msgid "Verification:" @@ -4682,12 +4694,12 @@ msgid "Remaining Time:" msgstr "Temps restant:" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, kde-format msgid "Transfer Settings for %1" msgstr "Arranjaments de transferència per a %1" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." @@ -4695,7 +4707,7 @@ "El canvi de destinació no ha funcionat. La destinació continua sense " "modificació." -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "Destination unmodified" msgstr "Destinació sense modificar" diff -Nru kget-20.12.3/po/ca@valencia/kgetplugin.po kget-21.04.0/po/ca@valencia/kgetplugin.po --- kget-20.12.3/po/ca@valencia/kgetplugin.po 2021-03-02 00:48:39.000000000 +0000 +++ kget-21.04.0/po/ca@valencia/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2012-07-08 21:31+0200\n" "Last-Translator: Josep Ma. Ferrer \n" "Language-Team: Catalan \n" @@ -50,18 +50,14 @@ msgid "No Links" msgstr "Cap enllaç" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "No s'ha pogut comunicar amb el gestor de baixades KGet." - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "Error de comunicació" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format msgid "&Tools" msgstr "&Eines" + +#~ msgid "Unable to communicate with the KGet download manager." +#~ msgstr "No s'ha pogut comunicar amb el gestor de baixades KGet." + +#~ msgid "Communication Error" +#~ msgstr "Error de comunicació" diff -Nru kget-20.12.3/po/ca@valencia/kget.po kget-21.04.0/po/ca@valencia/kget.po --- kget-20.12.3/po/ca@valencia/kget.po 2021-03-02 00:48:39.000000000 +0000 +++ kget-21.04.0/po/ca@valencia/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -1,9 +1,9 @@ # Translation of kget.po to Catalan (Valencian) -# Copyright (C) 2002-2020 This_file_is_part_of_KDE +# Copyright (C) 2002-2021 This_file_is_part_of_KDE # This file is distributed under the license LGPL version 2.1 or # version 3 or later versions approved by the membership of KDE e.V. # -# Antoni Bella Pérez , 2002, 2003, 2006, 2014, 2017, 2018, 2019, 2020. +# Antoni Bella Pérez , 2002, 2003, 2006, 2014, 2017, 2018, 2019, 2020, 2021. # Albert Astals Cid , 2004, 2005. # Josep Ma. Ferrer , 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2019, 2020. # Manuel Tortosa Moreno , 2009. @@ -11,15 +11,15 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" -"PO-Revision-Date: 2020-10-13 20:52+0200\n" -"Last-Translator: Josep Ma. Ferrer \n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" +"PO-Revision-Date: 2021-03-01 13:22+0100\n" +"Last-Translator: Antoni Bella Pérez \n" "Language-Team: Catalan \n" "Language: ca@valencia\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 20.08.1\n" +"X-Generator: Lokalize 20.12.2\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: &\n" "X-Poedit-Language: Catalan\n" @@ -275,7 +275,7 @@ msgid " sec" msgstr " s" -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "No s'ha pogut obrir el KWallet" @@ -322,7 +322,7 @@ msgid "The width of the columns in the history view" msgstr "L'amplària de les columnes a la vista de l'historial" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "Connectors" @@ -457,8 +457,8 @@ msgstr "Molt forta (més lenta)" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -484,7 +484,7 @@ msgstr "Servidors de claus:" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -559,27 +559,27 @@ "més servidors a l'arranjament o reinicieu el KGet i torneu a intentar la " "baixada." -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "Esteu segur que voleu eliminar el grup anomenat %1?" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, kde-format msgid "Remove Group" msgstr "Elimina un grup" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "Esteu segur que voleu eliminar els grups següents?" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, kde-format msgid "Remove groups" msgstr "Elimina els grups" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    La transferència següent s'ha afegit a la llista de baixades:

    %1

    " -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, kde-format msgid "Download added" msgstr "S'ha afegit la baixada" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "

    La transferència següent s'ha afegit a la llista de baixades:

    " -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "" "

    Les transferències següents s'han afegit a la llista de baixades:

    " -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "Les meues baixades" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" @@ -618,17 +618,17 @@ "El fitxer %1 ja existeix.\n" "El sobreescric?" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "Sobreescric el fitxer existent?" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "No es pot guardar a: %1" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -642,34 +642,34 @@ "

    Els URL següents no es poden baixar, els seus protocols no són admesos " "pel KGet:

    " -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "Protocol no acceptat" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "Baixada nova" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "Introduïu un URL:" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "Seleccioneu un directori" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, kde-format msgctxt "@title:window" msgid "Save As" msgstr "Guarda com a" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -678,7 +678,7 @@ "URL amb format incorrecte:\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, kde-format msgid "" "Malformed URL, protocol missing:\n" @@ -687,7 +687,7 @@ "URL incorrecte, falta el protocol:\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -702,12 +702,12 @@ "\n" "El baixo un altre cop?" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, kde-format msgid "Download it again?" msgstr "El torne a baixar?" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -722,17 +722,17 @@ "\n" "La suprimeixo i torne a baixar-la?" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, kde-format msgid "Delete it and download again?" msgstr "La suprimeixo i torne a baixar-la?" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "No es pot escriure al directori" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -743,39 +743,39 @@ "\n" "El baixo i suprimeixo l'anterior?" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, kde-format msgid "File already downloaded. Download anyway?" msgstr "El fitxer ja està baixat. El baixo igualment?" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "Ja heu baixat el mateix fitxer" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, kde-format msgid "File already exists" msgstr "El fitxer ja existeix" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "S'ha establit la connexió d'Internet, es reprenen les transferències." -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "No hi ha connexió d'Internet, s'aturen les transferències." -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "El carregador de connectors no ha pogut carregar el connector: %1." -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -786,7 +786,7 @@ "%1\n" "atés que es tracta d'un directori." -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -797,7 +797,7 @@ "%1\n" "atés que no es tracta d'un fitxer local." -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    El fitxer següent ha finalitzat la baixada:

    %1

    " -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, kde-format msgid "Download completed" msgstr "Baixada finalitzada" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    La transferència següent s'ha iniciat:

    " "%1

    " -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, kde-format msgid "Download started" msgstr "S'ha iniciat la baixada" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    %1

    El missatge d'error és:

    %2

    " -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, kde-format msgid "Resolve" msgstr "Resol" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, kde-format msgid "KGet is now closing, as all downloads have completed." msgstr "El KGet acaba ara perquè totes les baixades han finalitzat." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "S'aturarà ara l'ordinador perquè totes les baixades han finalitzat." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgctxt "Shutting down computer" msgid "Shutdown" msgstr "Aturada" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "" "Ara l'ordinador se suspendrà al disc, perquè totes les baixades han " "finalitzat." -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "S'està hibernant" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "" "Ara l'ordinador se suspendrà a la RAM, perquè totes les baixades han " "finalitzat." -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgctxt "Suspending computer" msgid "Suspending" msgstr "S'està suspenent" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, kde-format msgctxt "abort the proposed action" msgid "Abort" msgstr "Interromp" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "

    Totes les transferències han finalitzat.

    " -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, kde-format msgid "Downloads completed" msgstr "Baixades finalitzades" @@ -1763,19 +1763,17 @@ msgid "Decrease Priority" msgstr "Disminueix la prioritat" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 +#: mainwindow.cpp:204 #, kde-format +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "Suprimeix el grup" -msgstr[1] "Suprimeix els grups" +msgstr "Suprimeix el grup" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 +#: mainwindow.cpp:210 #, kde-format +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "Reanomena un grup..." -msgstr[1] "Reanomena grups..." +msgstr "Reanomena el grup..." #: mainwindow.cpp:215 #, kde-format @@ -2107,8 +2105,8 @@ msgid "Which files the chunk is located in" msgstr "En quins fitxers està localitzat el tros" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2127,16 +2125,16 @@ msgid "Currently downloading:" msgstr "Baixant ara:" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, kde-format msgid "Downloaded:" msgstr "Baixat:" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -3004,8 +3002,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3069,8 +3067,8 @@ msgid "New Script...." msgstr "Script nou...." -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, kde-format @@ -3399,6 +3397,20 @@ msgid "Failed to write to the file." msgstr "Ha fallat en escriure al fitxer." +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "Suprimeix el grup" +msgstr[1] "Suprimeix els grups" + +#: ui/contextmenu.cpp:120 +#, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "Reanomena un grup..." +msgstr[1] "Reanomena grups..." + #: ui/droptarget.cpp:84 #, kde-format msgctxt "fix position for droptarget" @@ -3711,31 +3723,31 @@ msgstr "Obri fitxer" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, kde-format msgid "&File" msgstr "&Fitxer" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, kde-format msgid "&Downloads" msgstr "&Baixades" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "A&rranjament" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "A&juda" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "Barra d'eines principal" @@ -4117,8 +4129,8 @@ msgid "File size (in bytes):" msgstr "Mida del fitxer (en bytes):" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, kde-format msgid "Verification:" @@ -4682,12 +4694,12 @@ msgid "Remaining Time:" msgstr "Temps restant:" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, kde-format msgid "Transfer Settings for %1" msgstr "Arranjaments de transferència per a %1" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." @@ -4695,7 +4707,7 @@ "El canvi de destinació no ha funcionat. La destinació continua sense " "modificació." -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "Destination unmodified" msgstr "Destinació sense modificar" diff -Nru kget-20.12.3/po/cs/kgetplugin.po kget-21.04.0/po/cs/kgetplugin.po --- kget-20.12.3/po/cs/kgetplugin.po 2021-03-02 00:48:39.000000000 +0000 +++ kget-21.04.0/po/cs/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2011-07-11 11:06+0200\n" "Last-Translator: Vít Pelčák \n" "Language-Team: Czech \n" @@ -49,16 +49,6 @@ msgid "No Links" msgstr "Žádné odkazy" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "Nelze komunikovat se správcem stahování KGet." - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "Chyba v komunikaci" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format diff -Nru kget-20.12.3/po/cs/kget.po kget-21.04.0/po/cs/kget.po --- kget-20.12.3/po/cs/kget.po 2021-03-02 00:48:39.000000000 +0000 +++ kget-21.04.0/po/cs/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -3,21 +3,22 @@ # Vít Pelčák , 2010, 2011, 2012, 2013, 2014, 2017, 2019, 2020. # Tomáš Chvátal , 2010, 2012, 2013. # Lukáš Tinkl , 2010. +# Vit Pelcak , 2021. # msgid "" msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" -"PO-Revision-Date: 2020-06-03 22:28+0200\n" -"Last-Translator: Vit Pelcak \n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" +"PO-Revision-Date: 2021-03-23 09:53+0100\n" +"Last-Translator: Vit Pelcak \n" "Language-Team: Czech \n" "Language: cs\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: Lokalize 20.04.1\n" +"X-Generator: Lokalize 20.12.3\n" #: conf/autopastemodel.cpp:174 #, kde-format @@ -270,7 +271,7 @@ msgid " sec" msgstr " sek" -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "Nelze otevřít KWallet" @@ -317,7 +318,7 @@ msgid "The width of the columns in the history view" msgstr "Šířka sloupců v zobrazení historie" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "Moduly" @@ -452,8 +453,8 @@ msgstr "Nejsilnější (pomalé)" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -479,7 +480,7 @@ msgstr "Servery klíčů:" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -553,27 +554,27 @@ "Klíč nebyl stažen, protože nebyl nalezen žádný vhodný server klíčů. V " "nastavení přidejte více serverů, nebo restartujte KGet a opakujte stahování." -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "Opravdu si přejete odstranit skupinu pojmenovanou %1?" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, kde-format msgid "Remove Group" msgstr "Odstranit skupinu" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "Opravdu si přejete odstranit tyto skupiny?" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, kde-format msgid "Remove groups" msgstr "Odstranit skupiny" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    Následující přenos byl přidán do seznamu stahování:

    %1

    " -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, kde-format msgid "Download added" msgstr "Přidáno stahování" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "

    Následující přenos byl přidán do seznamu stahování:

    " -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "

    Následující přenosy byly přidány do seznamu stahování:

    " -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "Moje stahování" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" @@ -611,17 +612,17 @@ "Cílový soubor %1 již existuje.\n" "Přejete si jej přepsat?" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "Přepsat existující soubor?" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "Nelze uložit do: %1" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -639,34 +640,34 @@ "

    Následující URL nelze stáhnout, jejich protokol není podporován aplikací " "KGet:

    " -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "Nepodporovaný protokol" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "Nové stahování" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "Zadejte URL:" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "Vyberte adresář" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, kde-format msgctxt "@title:window" msgid "Save As" msgstr "Uložit jako" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -675,7 +676,7 @@ "Neplatné URL:\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, kde-format msgid "" "Malformed URL, protocol missing:\n" @@ -684,7 +685,7 @@ "Neplatné URL, chybí název protokolu:\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -699,12 +700,12 @@ "\n" "Stáhnout znovu?" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, kde-format msgid "Download it again?" msgstr "Stáhnout znovu?" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -719,17 +720,17 @@ "\n" "Přejete si jej odstranit a stáhnout znovu?" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, kde-format msgid "Delete it and download again?" msgstr "Odstranit a stáhnout znovu?" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "Do adresáře nelze zapisovat" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -740,39 +741,39 @@ "\n" "Přejete si jej stáhnout a odstranit předchozí?" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, kde-format msgid "File already downloaded. Download anyway?" msgstr "Soubor už je stažený. Přesto si jej přejete stáhnout?" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "Již stahujete stejný soubor" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, kde-format msgid "File already exists" msgstr "Soubor již existuje" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "Připojení k internetu je navázáno, přenosy pokračují." -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "Připojení k internetu je nedostupné, přenosy zastaveny." -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "Zavaděč modulu nemohl načíst modul: %1." -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -782,7 +783,7 @@ "%1\n" "nebude smazán, protože je to adresář." -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -792,7 +793,7 @@ "%1\n" "nebude smazán, protože je to vzdálený soubor." -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    Stahování následujícího souboru bylo dokončeno:

    %1

    " -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, kde-format msgid "Download completed" msgstr "Stahování dokončeno" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    Následující přenos byl zahájen:

    %1

    " -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, kde-format msgid "Download started" msgstr "Stahování zahájeno" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    V následujícím přenose se vyskytla chyba:

    %1

    Chybové hlášení:

    %2

    " -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, kde-format msgid "Resolve" msgstr "Vyřešit" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, kde-format msgid "KGet is now closing, as all downloads have completed." msgstr "KGet bude nyní ukončen, protože všechna stahování byla dokončena." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "Počítač bude nyní vypnut, protože všechna stahování byla dokončena." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgctxt "Shutting down computer" msgid "Shutdown" msgstr "Vypnout" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "" "Počítač bude nyní uspán na disk, protože všechna stahování byla dokončena." -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "Hibernace" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "" "Počítač bude nyní uspán do RAM, protože všechna stahování byla dokončena." -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgctxt "Suspending computer" msgid "Suspending" msgstr "Uspávání" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, kde-format msgctxt "abort the proposed action" msgid "Abort" msgstr "Přerušit" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "

    Všechny přenosy byly dokončeny.

    " -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, kde-format msgid "Downloads completed" msgstr "Stahování dokončena" @@ -1753,21 +1754,17 @@ msgid "Decrease Priority" msgstr "Snížit prioritu" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 +#: mainwindow.cpp:204 #, kde-format +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "Smazat skupinu" -msgstr[1] "Smazat skupiny" -msgstr[2] "Smazat skupiny" +msgstr "Smazat skupinu" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 +#: mainwindow.cpp:210 #, kde-format +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "Přejmenovat skupinu..." -msgstr[1] "Přejmenovat skupiny..." -msgstr[2] "Přejmenovat skupiny..." +msgstr "Přejmenovat skupinu..." #: mainwindow.cpp:215 #, kde-format @@ -2098,8 +2095,8 @@ msgid "Which files the chunk is located in" msgstr "V kterých souborech je blok umístěný" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2118,16 +2115,16 @@ msgid "Currently downloading:" msgstr "Právě se stahuje:" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, kde-format msgid "Downloaded:" msgstr "Staženo:" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -2990,8 +2987,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3055,8 +3052,8 @@ msgid "New Script...." msgstr "Nový skript..." -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, kde-format @@ -3385,6 +3382,22 @@ msgid "Failed to write to the file." msgstr "Zápis do souboru selhal." +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "Smazat skupinu" +msgstr[1] "Smazat skupiny" +msgstr[2] "Smazat skupiny" + +#: ui/contextmenu.cpp:120 +#, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "Přejmenovat skupinu..." +msgstr[1] "Přejmenovat skupiny..." +msgstr[2] "Přejmenovat skupiny..." + #: ui/droptarget.cpp:84 #, kde-format msgctxt "fix position for droptarget" @@ -3695,31 +3708,31 @@ msgstr "Otevřít soubor" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, kde-format msgid "&File" msgstr "&Soubor" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, kde-format msgid "&Downloads" msgstr "Sta&hování" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "&Nastavení" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "Nápo&věda" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "Hlavní panel nástrojů" @@ -4099,8 +4112,8 @@ msgid "File size (in bytes):" msgstr "Velikost souboru (v bajtech):" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, kde-format msgid "Verification:" @@ -4661,18 +4674,18 @@ msgid "Remaining Time:" msgstr "Zbývající čas:" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, kde-format msgid "Transfer Settings for %1" msgstr "Nastavení přenosu pro %1" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." msgstr "Změna cíle se nezdařila, cíl zůstává beze změny." -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "Destination unmodified" msgstr "Cíl nezměněn" diff -Nru kget-20.12.3/po/da/kgetplugin.po kget-21.04.0/po/da/kgetplugin.po --- kget-20.12.3/po/da/kgetplugin.po 2021-03-02 00:48:39.000000000 +0000 +++ kget-21.04.0/po/da/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2011-01-09 13:00+0100\n" "Last-Translator: Martin Schlander \n" "Language-Team: Danish \n" @@ -49,22 +49,18 @@ msgid "No Links" msgstr "Ingen link" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "Kan ikke kommunikere med KGet downloadhåndtering." - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "Kommunikationsfejl" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format msgid "&Tools" msgstr "Værk&tøjer" +#~ msgid "Unable to communicate with the KGet download manager." +#~ msgstr "Kan ikke kommunikere med KGet downloadhåndtering." + +#~ msgid "Communication Error" +#~ msgstr "Kommunikationsfejl" + #~ msgid "Plugins" #~ msgstr "Plugins" diff -Nru kget-20.12.3/po/da/kget.po kget-21.04.0/po/da/kget.po --- kget-20.12.3/po/da/kget.po 2021-03-02 00:48:40.000000000 +0000 +++ kget-21.04.0/po/da/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" "PO-Revision-Date: 2020-04-08 19:21+0200\n" "Last-Translator: Martin Schlander \n" "Language-Team: Danish \n" @@ -271,7 +271,7 @@ msgid " sec" msgstr " sek." -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "Kunne ikke åbne KWallet" @@ -318,7 +318,7 @@ msgid "The width of the columns in the history view" msgstr "Bredden på kolonnerne i historikvisningen" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "Plugins" @@ -453,8 +453,8 @@ msgstr "Stærkest (langsommest)" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -480,7 +480,7 @@ msgstr "Nøgleservere:" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -554,27 +554,27 @@ "Ingen brugbar nøgleserver fundet, nøgle ikke downloadet. Føj flere servere " "til indstillingerne eller genstart KGet og prøv at downloade igen." -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "Vil du virkelig fjerne gruppen med navnet %1?" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, kde-format msgid "Remove Group" msgstr "Fjern gruppe" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "Vil du virkelig fjerne følgende grupper?" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, kde-format msgid "Remove groups" msgstr "Fjern grupper" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    Følgende overførsel er blevet føjet til downloadlisten:

    %1

    " -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, kde-format msgid "Download added" msgstr "Download tilføjet" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "

    Følgende overførsel er blevet føjet til downloadlisten:

    " -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "

    Følgende overførsler er blevet føjet til downloadlisten:

    " -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "Mine downloads" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" @@ -612,17 +612,17 @@ "Filen %1 findes allerede.\n" "Overskriv?" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "Overskriv eksisterende fil?" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "Kan ikke gemme til: %1" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -637,34 +637,34 @@ "

    Følgende URL'er kan ikke downloades, da deres protokoller ikke er " "understøttet af KGet:

    " -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "Ikke-understøttet protokol" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "Nyt download" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "Indtast URL:" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "Vælg en mappe" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, kde-format msgctxt "@title:window" msgid "Save As" msgstr "Gem som" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -673,7 +673,7 @@ "Misdannet URL:\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, kde-format msgid "" "Malformed URL, protocol missing:\n" @@ -682,7 +682,7 @@ "Misdannet URL, manglende protokol:\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -697,12 +697,12 @@ "\n" "Vil du downloade den igen?" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, kde-format msgid "Download it again?" msgstr "Download den igen?" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -717,17 +717,17 @@ "\n" "Vil du slette det og downloade igen?" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, kde-format msgid "Delete it and download again?" msgstr "Slet det og download igen?" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "Der kan ikke skrives til mappen" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -738,39 +738,39 @@ "\n" "Vil du downloade den og slette den forrige?" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, kde-format msgid "File already downloaded. Download anyway?" msgstr "Filen er allerede downloadet. Vil du downloade alligevel?" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "Du downloader allerede den samme fil" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, kde-format msgid "File already exists" msgstr "Filen findes allerede" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "Internetforbindelse oprettet, genoptager overførsler." -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "Ingen internetforbindelse, stopper overførsler." -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "Plugin-indlæseren kunne ikke indlæse pluginet: %1." -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -781,7 +781,7 @@ "%1\n" "da det er en mappe." -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -792,7 +792,7 @@ "%1\n" "da det ikke er en lokal fil." -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    Følgende fil er blevet downloadet:

    %1" -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, kde-format msgid "Download completed" msgstr "Download gennemført" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    Følgende overførsel er blevet startet:

    " "%1

    " -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, kde-format msgid "Download started" msgstr "Download startet" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    %1

    Fejlmeddelelsen er:

    %2" -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, kde-format msgid "Resolve" msgstr "Løs" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, kde-format msgid "KGet is now closing, as all downloads have completed." msgstr "KGet lukker nu, da alle downloads er gennemført." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "Computeren vil slukke nu, da alle downloads er gennemført." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgctxt "Shutting down computer" msgid "Shutdown" msgstr "Nedlukning" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "" "Computeren vil suspendere til disk nu, da alle downloads er gennemført." -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "Dvale" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "Computeren vil suspendere til ram nu, da alle downloads er gennemført." -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgctxt "Suspending computer" msgid "Suspending" msgstr "Suspendering" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, kde-format msgctxt "abort the proposed action" msgid "Abort" msgstr "Afbryd" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "

    Alle overførsler er blevet gennemført.

    " -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, kde-format msgid "Downloads completed" msgstr "Download gennemført" @@ -1755,19 +1755,21 @@ msgid "Decrease Priority" msgstr "Sænk prioritet" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 -#, kde-format +#: mainwindow.cpp:204 +#, fuzzy, kde-format +#| msgid "Delete Group" +#| msgid_plural "Delete Groups" +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "Slet gruppe" -msgstr[1] "Slet grupper" +msgstr "Slet gruppe" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 -#, kde-format +#: mainwindow.cpp:210 +#, fuzzy, kde-format +#| msgid "Rename Group..." +#| msgid_plural "Rename Groups..." +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "Omdøb gruppe..." -msgstr[1] "Omdøb grupper..." +msgstr "Omdøb gruppe..." #: mainwindow.cpp:215 #, kde-format @@ -2096,8 +2098,8 @@ msgid "Which files the chunk is located in" msgstr "Hvilke filer stykket hører til i" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2116,16 +2118,16 @@ msgid "Currently downloading:" msgstr "Downloader nu:" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, kde-format msgid "Downloaded:" msgstr "Downloadet:" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -2990,8 +2992,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3055,8 +3057,8 @@ msgid "New Script...." msgstr "Nyt script..." -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, kde-format @@ -3386,6 +3388,20 @@ msgid "Failed to write to the file." msgstr "Kunne ikke skrive til filen." +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "Slet gruppe" +msgstr[1] "Slet grupper" + +#: ui/contextmenu.cpp:120 +#, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "Omdøb gruppe..." +msgstr[1] "Omdøb grupper..." + #: ui/droptarget.cpp:84 #, kde-format msgctxt "fix position for droptarget" @@ -3696,31 +3712,31 @@ msgstr "Åbn fil" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, kde-format msgid "&File" msgstr "&Fil" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, kde-format msgid "&Downloads" msgstr "&Downloads" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "&Indstillinger" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "&Hjælp" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "Hovedværktøjslinje" @@ -4100,8 +4116,8 @@ msgid "File size (in bytes):" msgstr "Filstørrelse (i bytes):" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, kde-format msgid "Verification:" @@ -4662,19 +4678,19 @@ msgid "Remaining Time:" msgstr "Tid tilbage:" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, kde-format msgid "Transfer Settings for %1" msgstr "Overførselsindstillinger for %1" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." msgstr "" "Ændring af destinationen fungerede ikke. Destinationen forbliver uændret." -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "Destination unmodified" msgstr "Destination uændret" diff -Nru kget-20.12.3/po/de/kgetplugin.po kget-21.04.0/po/de/kgetplugin.po --- kget-20.12.3/po/de/kgetplugin.po 2021-03-02 00:48:40.000000000 +0000 +++ kget-21.04.0/po/de/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -15,7 +15,7 @@ msgstr "" "Project-Id-Version: kgetplugin\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2019-08-22 08:06+0200\n" "Last-Translator: Burkhard Lück \n" "Language-Team: German \n" @@ -58,22 +58,18 @@ msgid "No Links" msgstr "Keine Verknüpfungen" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "Mit der KGet-Download-Verwaltung kann nicht kommuniziert werden." - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "Kommunikationsfehler" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format msgid "&Tools" msgstr "E&xtras" +#~ msgid "Unable to communicate with the KGet download manager." +#~ msgstr "Mit der KGet-Download-Verwaltung kann nicht kommuniziert werden." + +#~ msgid "Communication Error" +#~ msgstr "Kommunikationsfehler" + #~ msgid "Plugins" #~ msgstr "Module" diff -Nru kget-20.12.3/po/de/kget.po kget-21.04.0/po/de/kget.po --- kget-20.12.3/po/de/kget.po 2021-03-02 00:48:40.000000000 +0000 +++ kget-21.04.0/po/de/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -4,7 +4,7 @@ # Frank Schütte , 2003. # Stephan Johach , 2003, 2004, 2005, 2006. # Thomas Reitelbach , 2005, 2007, 2008, 2009, 2010. -# Burkhard Lück , 2008, 2009, 2010, 2011, 2013, 2014, 2017, 2019. +# Burkhard Lück , 2008, 2009, 2010, 2011, 2013, 2014, 2017, 2019, 2021. # Rolf Eike Beer , 2009. # Frederik Schwarzer , 2009, 2010, 2011, 2012, 2016. # Panagiotis Papadopoulos , 2009, 2010, 2011. @@ -16,15 +16,15 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" -"PO-Revision-Date: 2019-08-22 08:14+0200\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" +"PO-Revision-Date: 2021-03-01 12:53+0100\n" "Last-Translator: Burkhard Lück \n" "Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 18.12.3\n" +"X-Generator: Lokalize 19.12.3\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" #: conf/autopastemodel.cpp:174 @@ -278,7 +278,7 @@ msgid " sec" msgstr " Sek." -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "KWallet kann nicht geöffnet werden" @@ -325,7 +325,7 @@ msgid "The width of the columns in the history view" msgstr "Spaltenbreite in der Verlaufsansicht" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "Module" @@ -462,8 +462,8 @@ msgstr "Stärkste (langsamste)" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -489,7 +489,7 @@ msgstr "Schlüsselserver:" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -564,28 +564,28 @@ "Einstellungen hinzu, oder starten Sie KGet neu und versuchen Sie es erneut " "herunterzuladen." -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "" "Sind Sie sicher, dass Sie die Gruppe mit dem Namen „%1“ entfernen möchten?" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, kde-format msgid "Remove Group" msgstr "Gruppe entfernen" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "Sind Sie sicher, dass Sie die folgenden Gruppen entfernen möchten?" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, kde-format msgid "Remove groups" msgstr "Gruppen entfernen" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    Der folgende Transfer ist zur Download-Liste hinzugefügt worden:

    %1

    " -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, kde-format msgid "Download added" msgstr "Download hinzugefügt" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "

    Folgender Transfer ist zur Download-Liste hinzugefügt worden:

    " -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "

    Folgende Transfers sind zur Download-Liste hinzugefügt worden:

    " -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "Meine Downloads" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" @@ -623,17 +623,17 @@ "Eine Datei namens „%1“ existiert bereits.\n" "Soll sie überschrieben werden?" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "Bestehende Datei überschreiben?" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "Das Speichern unter „%1“ ist nicht möglich." -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -648,34 +648,34 @@ "

    Folgende Adressen (URLs) können nicht heruntergeladen werden. Die " "Protokolle werden von KGet nicht unterstützt:

    " -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "Nicht unterstütztes Protokoll" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "Neuer Download" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "Adresse eingeben:" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "Ordner auswählen" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, kde-format msgctxt "@title:window" msgid "Save As" msgstr "Speichern unter" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -684,7 +684,7 @@ "Ungültige Adresse:\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, kde-format msgid "" "Malformed URL, protocol missing:\n" @@ -693,7 +693,7 @@ "Ungültige Adresse, das Protokoll fehlt:\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -708,12 +708,12 @@ "\n" "Möchten Sie diesen erneut herunterladen?" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, kde-format msgid "Download it again?" msgstr "Erneut herunterladen?" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -728,17 +728,17 @@ "\n" "Möchten Sie sie löschen und erneut herunterladen?" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, kde-format msgid "Delete it and download again?" msgstr "Löschen und erneut herunterladen?" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "Ordner ist schreibgeschützt" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -751,39 +751,39 @@ "Soll die Datei jetzt neu heruntergeladen und die vorherige Datei gelöscht " "werden?" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, kde-format msgid "File already downloaded. Download anyway?" msgstr "Diese Datei wurde bereits heruntergeladen. Trotzdem herunterladen?" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "Sie laden die gleiche Datei bereits herunter." -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, kde-format msgid "File already exists" msgstr "Die Datei existiert bereits." -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "Die Internet-Verbindung ist hergestellt; Transfers werden fortgesetzt." -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "Keine Internet-Verbindung; Transfers werden angehalten." -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "Der Modul-Lader kann folgendes Modul nicht laden: %1" -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -794,7 +794,7 @@ "wird nicht gelöscht.\n" "Es handelt sich um einen Ordner." -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -805,7 +805,7 @@ "wird nicht gelöscht.\n" "Es handelt sich nicht um eine lokale Datei." -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    Die folgende Datei ist erfolgreich heruntergeladen worden:

    %1

    " -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, kde-format msgid "Download completed" msgstr "Herunterladen beendet" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    Der folgende Transfer ist gestartet worden:

    %1

    " -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, kde-format msgid "Download started" msgstr "Download gestartet" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    %1

    Die Fehlermeldung lautet:

    %2

    " -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, kde-format msgid "Resolve" msgstr "Auflösen" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, kde-format msgid "KGet is now closing, as all downloads have completed." msgstr "KGet wird beendet, da alle Downloads abgeschlossen sind." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "" "Der Rechner wird nun heruntergefahren, da alle Downloads abgeschlossen sind." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgctxt "Shutting down computer" msgid "Shutdown" msgstr "Rechner wird heruntergefahren" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "" "Der Rechner wird nun in den Ruhezustand versetzt, da alle Downloads " "abgeschlossen sind." -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "Ruhestand einleiten" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "" "Der Rechner wird nun in den Standby-Modus versetzt, da alle Downloads " "abgeschlossen sind." -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgctxt "Suspending computer" msgid "Suspending" msgstr "Wird in den Standby-Modus/Ruhezustand versetzt" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, kde-format msgctxt "abort the proposed action" msgid "Abort" msgstr "Abbrechen" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "

    Alle Transfers sind abgeschlossen.

    " -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, kde-format msgid "Downloads completed" msgstr "Downloads abgeschlossen" @@ -1778,19 +1778,17 @@ msgid "Decrease Priority" msgstr "Priorität verringern" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 +#: mainwindow.cpp:204 #, kde-format +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "Gruppe entfernen" -msgstr[1] "Gruppen entfernen" +msgstr "Gruppe entfernen" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 +#: mainwindow.cpp:210 #, kde-format +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "Gruppe umbenennen ..." -msgstr[1] "Gruppen umbenennen ..." +msgstr "Gruppe umbenennen ..." #: mainwindow.cpp:215 #, kde-format @@ -2127,8 +2125,8 @@ msgid "Which files the chunk is located in" msgstr "Die Dateien, in denen sich der Block befindet" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2147,16 +2145,16 @@ msgid "Currently downloading:" msgstr "Laufende Downloads:" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, kde-format msgid "Downloaded:" msgstr "Heruntergeladen:" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -3034,8 +3032,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3099,8 +3097,8 @@ msgid "New Script...." msgstr "Neues Skript ..." -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, kde-format @@ -3439,6 +3437,20 @@ msgid "Failed to write to the file." msgstr "Fehler beim Schreiben in die Datei." +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "Gruppe entfernen" +msgstr[1] "Gruppen entfernen" + +#: ui/contextmenu.cpp:120 +#, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "Gruppe umbenennen ..." +msgstr[1] "Gruppen umbenennen ..." + #: ui/droptarget.cpp:84 #, kde-format msgctxt "fix position for droptarget" @@ -3751,31 +3763,31 @@ msgstr "Datei öffnen" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, kde-format msgid "&File" msgstr "&Datei" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, kde-format msgid "&Downloads" msgstr "&Downloads" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "&Einstellungen" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "&Hilfe" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "Haupt-Werkzeugleiste" @@ -4165,8 +4177,8 @@ msgid "File size (in bytes):" msgstr "Dateigröße (in Bytes):" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, kde-format msgid "Verification:" @@ -4742,12 +4754,12 @@ msgid "Remaining Time:" msgstr "Restzeit:" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, kde-format msgid "Transfer Settings for %1" msgstr "Transfer-Einstellungen für %1" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." @@ -4755,7 +4767,7 @@ "Das Ändern des Zielordners ist nicht möglich gewesen. Der Zielordner bleibt " "unverändert." -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "Destination unmodified" msgstr "Zielordner nicht verändert" diff -Nru kget-20.12.3/po/el/kgetplugin.po kget-21.04.0/po/el/kgetplugin.po --- kget-20.12.3/po/el/kgetplugin.po 2021-03-02 00:48:40.000000000 +0000 +++ kget-21.04.0/po/el/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2011-03-27 20:00+0200\n" "Last-Translator: Dimitrios Glentadakis \n" "Language-Team: Greek \n" @@ -54,22 +54,18 @@ msgid "No Links" msgstr "Δεν υπάρχουν δεσμοί" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "Αδύνατη η επικοινωνία με το διαχειριστή λήψεων KGet." - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "Σφάλμα επικοινωνίας" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format msgid "&Tools" msgstr "Ερ&γαλεία" +#~ msgid "Unable to communicate with the KGet download manager." +#~ msgstr "Αδύνατη η επικοινωνία με το διαχειριστή λήψεων KGet." + +#~ msgid "Communication Error" +#~ msgstr "Σφάλμα επικοινωνίας" + #~ msgid "Plugins" #~ msgstr "Πρόσθετα" diff -Nru kget-20.12.3/po/el/kget.po kget-21.04.0/po/el/kget.po --- kget-20.12.3/po/el/kget.po 2021-03-02 00:48:40.000000000 +0000 +++ kget-21.04.0/po/el/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -16,7 +16,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" "PO-Revision-Date: 2019-08-21 12:04+0300\n" "Last-Translator: Stelios \n" "Language-Team: Greek \n" @@ -278,7 +278,7 @@ msgid " sec" msgstr " sec" -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "Αδυναμία ανοίγματος του KWallet" @@ -325,7 +325,7 @@ msgid "The width of the columns in the history view" msgstr "Το πλάτος των στηλών της προβολής ιστορικού" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "Πρόσθετα" @@ -460,8 +460,8 @@ msgstr "Ισχυρή (αργό)" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -487,7 +487,7 @@ msgstr "Εξυπηρετητές κλειδιών:" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -562,27 +562,27 @@ "κλειδιού. Προσθέστε περισσότερους εξυπηρετητές στις ρυθμίσεις ή " "επανεκκινήστε το KGet και προσπαθήστε να κάνετε λήψη ξανά." -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "Επιθυμείτε σίγουρα την αφαίρεση της ομάδας με το όνομα %1;" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, kde-format msgid "Remove Group" msgstr "Αφαίρεση ομάδας" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "Επιθυμείτε σίγουρα την αφαίρεση των παρακάτω ομάδων;" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, kde-format msgid "Remove groups" msgstr "Αφαίρεση ομάδων" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    Η παρακάτω μεταφορά προστέθηκε στην λίστα λήψεων:

    %1

    " -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, kde-format msgid "Download added" msgstr "Η λήψη προστέθηκε" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "

    Η παρακάτω μεταφορά προστέθηκε στην λίστα λήψεων:

    " -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "

    Οι παρακάτω μεταφορές προστέθηκαν στην λίστα λήψεων:

    " -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "Οι λήψεις μου" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" @@ -620,17 +620,17 @@ "Το αρχείο %1 υπάρχει ήδη.\n" "Αντικατάσταση;" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "Αντικατάσταση υπάρχοντος αρχείου;" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "Αδυναμία αποθήκευσης στο: %1" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -645,34 +645,34 @@ "

    Δεν είναι δυνατή η λήψη των παρακάτω URL, τα συγκεκριμένα πρωτόκολλα δεν " "υποστηρίζονται από το KGet:

    " -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "Το πρωτόκολλο δεν υποστηρίζεται" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "Νέα λήψη" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "Εισάγετε URL:" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "Επιλογή καταλόγου" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, kde-format msgctxt "@title:window" msgid "Save As" msgstr "Αποθήκευση ως" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -681,7 +681,7 @@ "Το URL είναι λάθος μορφής:\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, kde-format msgid "" "Malformed URL, protocol missing:\n" @@ -690,7 +690,7 @@ "Μη έγκυρη μορφή URL, λείπει το πρωτόκολλο:\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -705,12 +705,12 @@ "\n" "Να γίνει ξανά η λήψη;" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, kde-format msgid "Download it again?" msgstr "Να γίνει ξανά η λήψη;" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -725,17 +725,17 @@ "\n" "Να διαγραφεί και να γίνει λήψη ξανά;" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, kde-format msgid "Delete it and download again?" msgstr "Να διαγραφεί και να γίνει η λήψη ξανά;" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "Ο κατάλογος δεν είναι εγγράψιμος" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -746,41 +746,41 @@ "\n" "Να γίνει η λήψη και να διαγραφεί το προηγούμενο αρχείο;" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, kde-format msgid "File already downloaded. Download anyway?" msgstr "" "Έχει γίνει ήδη η λήψη του συγκεκριμένου αρχείου. Να γίνει η λήψη ούτως ή " "άλλως;" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "Γίνεται ήδη λήψη του ίδιου αρχείου" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, kde-format msgid "File already exists" msgstr "Το αρχείο υπάρχει ήδη" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "Επίτευξη σύνδεσης στο διαδίκτυο, συνέχιση των μεταφορών." -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "Χωρίς σύνδεση στο διαδίκτυο, σταμάτημα των μεταφορών." -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "Ο φορτωτής πρόσθετων δεν μπόρεσε να φορτώσει το πρόσθετο: %1" -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -791,7 +791,7 @@ "%1\n" "καθώς είναι κατάλογος." -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -802,7 +802,7 @@ "%1\n" "καθώς δεν είναι ένα τοπικό αρχείο." -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    Ολοκληρώθηκε η λήψη του παρακάτω αρχείου:

    %1

    " -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, kde-format msgid "Download completed" msgstr "Η λήψη ολοκληρώθηκε" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    Η παρακάτω μεταφορά ξεκίνησε:

    %1

    " -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, kde-format msgid "Download started" msgstr "Η λήψη ξεκίνησε" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    %1

    Το μήνυμα λάθους είναι το παρακάτω:

    %2

    " -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, kde-format msgid "Resolve" msgstr "Επίλυση" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, kde-format msgid "KGet is now closing, as all downloads have completed." msgstr "Το KGet θα τερματίσει τώρα γιατί έχουν ολοκληρωθεί όλες οι λήψεις." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "Ο υπολογιστής θα κλείσει τώρα γιατί έχουν ολοκληρωθεί όλες οι λήψεις." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgctxt "Shutting down computer" msgid "Shutdown" msgstr "Τερματισμός" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "" "Τώρα θα γίνει αναστολή του υπολογιστή στο δίσκο, γιατί έχουν ολοκληρωθεί " "όλες οι λήψεις." -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "Νάρκωση" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "" "Τώρα θα γίνει αναστολή του υπολογιστή στη μνήμη, γιατί έχουν ολοκληρωθεί " "όλες οι λήψεις." -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgctxt "Suspending computer" msgid "Suspending" msgstr "Γίνεται αναστολή του υπολογιστή" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, kde-format msgctxt "abort the proposed action" msgid "Abort" msgstr "Εγκατάλειψη" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "

    Όλες οι μεταφορές ολοκληρώθηκαν.

    " -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, kde-format msgid "Downloads completed" msgstr "Οι λήψεις ολοκληρώθηκαν" @@ -1772,19 +1772,21 @@ msgid "Decrease Priority" msgstr "Μείωση προτεραιότητας" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 -#, kde-format +#: mainwindow.cpp:204 +#, fuzzy, kde-format +#| msgid "Delete Group" +#| msgid_plural "Delete Groups" +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "Διαγραφή ομάδας" -msgstr[1] "Διαγραφή ομάδων" +msgstr "Διαγραφή ομάδας" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 -#, kde-format +#: mainwindow.cpp:210 +#, fuzzy, kde-format +#| msgid "Rename Group..." +#| msgid_plural "Rename Groups..." +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "Μετονομασία ομάδας..." -msgstr[1] "Μετονομασία ομάδων..." +msgstr "Μετονομασία ομάδας..." #: mainwindow.cpp:215 #, kde-format @@ -2118,8 +2120,8 @@ msgid "Which files the chunk is located in" msgstr "Τα αρχεία στα οποία βρίσκεται το κομμάτι" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2138,16 +2140,16 @@ msgid "Currently downloading:" msgstr "Λήψεις σε εξέλιξη:" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, kde-format msgid "Downloaded:" msgstr "Ληφθέντα:" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -3018,8 +3020,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3083,8 +3085,8 @@ msgid "New Script...." msgstr "Νέο σενάριο..." -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, kde-format @@ -3417,6 +3419,20 @@ msgid "Failed to write to the file." msgstr "Αποτυχία εγγραφής στο αρχείο." +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "Διαγραφή ομάδας" +msgstr[1] "Διαγραφή ομάδων" + +#: ui/contextmenu.cpp:120 +#, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "Μετονομασία ομάδας..." +msgstr[1] "Μετονομασία ομάδων..." + #: ui/droptarget.cpp:84 #, kde-format msgctxt "fix position for droptarget" @@ -3728,31 +3744,31 @@ msgstr "Άνοιγμα αρχείου" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, kde-format msgid "&File" msgstr "&Αρχείο" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, kde-format msgid "&Downloads" msgstr "&Λήψεις" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "Ρ&υθμίσεις" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "&Βοήθεια" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "Κύρια γραμμή εργαλείων" @@ -4133,8 +4149,8 @@ msgid "File size (in bytes):" msgstr "Μέγεθος αρχείου (σε bytes):" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, kde-format msgid "Verification:" @@ -4702,19 +4718,19 @@ msgid "Remaining Time:" msgstr "Χρόνος που απομένει:" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, kde-format msgid "Transfer Settings for %1" msgstr "Ρυθμίσεις μεταφοράς για το %1" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." msgstr "" "Η αλλαγή του προορισμού δεν δούλεψε, ο προορισμός παραμένει αμετάβλητος." -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "Destination unmodified" msgstr "Αμετάβλητος προορισμός" diff -Nru kget-20.12.3/po/en_GB/kgetplugin.po kget-21.04.0/po/en_GB/kgetplugin.po --- kget-20.12.3/po/en_GB/kgetplugin.po 2021-03-02 00:48:40.000000000 +0000 +++ kget-21.04.0/po/en_GB/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2011-02-05 17:24+0000\n" "Last-Translator: Andrew Coles \n" "Language-Team: British English \n" @@ -46,18 +46,14 @@ msgid "No Links" msgstr "No Links" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "Unable to communicate with the KGet download manager." - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "Communication Error" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format msgid "&Tools" msgstr "&Tools" + +#~ msgid "Unable to communicate with the KGet download manager." +#~ msgstr "Unable to communicate with the KGet download manager." + +#~ msgid "Communication Error" +#~ msgstr "Communication Error" diff -Nru kget-20.12.3/po/en_GB/kget.po kget-21.04.0/po/en_GB/kget.po --- kget-20.12.3/po/en_GB/kget.po 2021-03-02 00:48:40.000000000 +0000 +++ kget-21.04.0/po/en_GB/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -3,13 +3,13 @@ # # Malcolm Hunter , 2002,2003, 2004, 2005, 2006, 2009. # Andrew Coles , 2004, 2005, 2009, 2010. -# Steve Allewell , 2014, 2016, 2017, 2019. +# Steve Allewell , 2014, 2016, 2017, 2019, 2021. msgid "" msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" -"PO-Revision-Date: 2019-05-19 13:00+0100\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" +"PO-Revision-Date: 2021-04-03 15:25+0100\n" "Last-Translator: Steve Allewell \n" "Language-Team: British English \n" "Language: en_GB\n" @@ -17,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: Lokalize 19.07.70\n" +"X-Generator: Lokalize 20.12.3\n" #: conf/autopastemodel.cpp:174 #, kde-format @@ -270,7 +270,7 @@ msgid " sec" msgstr " sec" -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "Could not open KWallet" @@ -317,7 +317,7 @@ msgid "The width of the columns in the history view" msgstr "The width of the columns in the history view" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "Plugins" @@ -452,8 +452,8 @@ msgstr "Strongest (slowest)" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -479,7 +479,7 @@ msgstr "Keyservers:" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -550,27 +550,27 @@ "No useful key server found, key not downloaded. Add more servers to the " "settings or restart KGet and retry downloading." -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "Are you sure that you want to remove the group named %1?" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, kde-format msgid "Remove Group" msgstr "Remove Group" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "Are you sure that you want to remove the following groups?" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, kde-format msgid "Remove groups" msgstr "Remove groups" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    The following transfer has been added to the download list:

    %1

    " -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, kde-format msgid "Download added" msgstr "Download added" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "

    The following transfer has been added to the download list:

    " -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "

    The following transfers have been added to the download list:

    " -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "My Downloads" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" @@ -608,17 +608,17 @@ "The file %1 already exists.\n" "Overwrite?" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "Overwrite existing file?" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "Unable to save to: %1" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -633,34 +633,34 @@ "

    The following URLs cannot be downloaded, their protocols are not " "supported by KGet:

    " -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "Protocol unsupported" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "New Download" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "Enter URL:" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "Choose Directory" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, kde-format msgctxt "@title:window" msgid "Save As" msgstr "Save As" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -669,7 +669,7 @@ "Malformed URL:\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, kde-format msgid "" "Malformed URL, protocol missing:\n" @@ -678,7 +678,7 @@ "Malformed URL, protocol missing:\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -693,12 +693,12 @@ "\n" "Download it again?" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, kde-format msgid "Download it again?" msgstr "Download it again?" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -713,17 +713,17 @@ "\n" "Delete it and download again?" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, kde-format msgid "Delete it and download again?" msgstr "Delete it and download again?" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "Directory is not writable" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -734,39 +734,39 @@ "\n" "Download and delete the previous one?" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, kde-format msgid "File already downloaded. Download anyway?" msgstr "File already downloaded. Download anyway?" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "You are already downloading the same file" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, kde-format msgid "File already exists" msgstr "File already exists" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "Internet connection established, resuming transfers." -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "No internet connection, stopping transfers." -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "Plugin loader could not load the plugin: %1." -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -777,7 +777,7 @@ "%1\n" "as it is a directory." -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -788,7 +788,7 @@ "%1\n" "as it is not a local file." -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    The following file has finished downloading:

    %1

    " -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, kde-format msgid "Download completed" msgstr "Download completed" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    The following transfer has been started:

    %1

    " -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, kde-format msgid "Download started" msgstr "Download started" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    %1

    The error message is:

    %2

    " -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, kde-format msgid "Resolve" msgstr "Resolve" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, kde-format msgid "KGet is now closing, as all downloads have completed." msgstr "KGet is now closing, as all downloads have completed." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "The computer will now turn off, as all downloads have completed." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgctxt "Shutting down computer" msgid "Shutdown" msgstr "Shutdown" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "" "The computer will now suspend to disk, as all downloads have completed." -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "Hibernating" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "The computer will now suspend to RAM, as all downloads have completed." -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgctxt "Suspending computer" msgid "Suspending" msgstr "Suspending" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, kde-format msgctxt "abort the proposed action" msgid "Abort" msgstr "Abort" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "

    All transfers have been finished.

    " -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, kde-format msgid "Downloads completed" msgstr "Downloads completed" @@ -1752,19 +1752,17 @@ msgid "Decrease Priority" msgstr "Decrease Priority" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 +#: mainwindow.cpp:204 #, kde-format +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "Delete Group" -msgstr[1] "Delete Groups" +msgstr "Delete Group" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 +#: mainwindow.cpp:210 #, kde-format +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "Rename Group..." -msgstr[1] "Rename Groups..." +msgstr "Rename Group..." #: mainwindow.cpp:215 #, kde-format @@ -2094,8 +2092,8 @@ msgid "Which files the chunk is located in" msgstr "In which files the chunk is located" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2114,16 +2112,16 @@ msgid "Currently downloading:" msgstr "Currently downloading:" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, kde-format msgid "Downloaded:" msgstr "Downloaded:" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -2984,8 +2982,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3049,8 +3047,8 @@ msgid "New Script...." msgstr "New Script...." -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, kde-format @@ -3380,6 +3378,20 @@ msgid "Failed to write to the file." msgstr "Failed to write to the file." +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "Delete Group" +msgstr[1] "Delete Groups" + +#: ui/contextmenu.cpp:120 +#, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "Rename Group..." +msgstr[1] "Rename Groups..." + #: ui/droptarget.cpp:84 #, kde-format msgctxt "fix position for droptarget" @@ -3690,31 +3702,31 @@ msgstr "Open file" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, kde-format msgid "&File" msgstr "&File" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, kde-format msgid "&Downloads" msgstr "&Downloads" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "&Settings" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "&Help" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "Main Toolbar" @@ -4095,8 +4107,8 @@ msgid "File size (in bytes):" msgstr "File size (in bytes):" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, kde-format msgid "Verification:" @@ -4655,19 +4667,19 @@ msgid "Remaining Time:" msgstr "Remaining Time:" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, kde-format msgid "Transfer Settings for %1" msgstr "Transfer Settings for %1" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." msgstr "" "Changing the destination did not work, the destination stays unmodified." -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "Destination unmodified" msgstr "Destination unmodified" diff -Nru kget-20.12.3/po/eo/kgetplugin.po kget-21.04.0/po/eo/kgetplugin.po --- kget-20.12.3/po/eo/kgetplugin.po 2021-03-02 00:48:40.000000000 +0000 +++ kget-21.04.0/po/eo/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2009-11-15 12:06+0100\n" "Last-Translator: Axel Rousseau \n" "Language-Team: esperanto \n" @@ -48,22 +48,15 @@ msgid "No Links" msgstr "Rimarku" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "" - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "Komunikada eraro" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format msgid "&Tools" msgstr "&Iloj" +#~ msgid "Communication Error" +#~ msgstr "Komunikada eraro" + #~ msgid "Plugins" #~ msgstr "Kromaĵoj" diff -Nru kget-20.12.3/po/eo/kget.po kget-21.04.0/po/eo/kget.po --- kget-20.12.3/po/eo/kget.po 2021-03-02 00:48:40.000000000 +0000 +++ kget-21.04.0/po/eo/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" "PO-Revision-Date: 2009-11-15 12:06+0100\n" "Last-Translator: Axel Rousseau \n" "Language-Team: esperanto \n" @@ -272,7 +272,7 @@ msgid " sec" msgstr " s" -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "" @@ -321,7 +321,7 @@ msgid "The width of the columns in the history view" msgstr "" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "Kromaĵoj" @@ -459,8 +459,8 @@ msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -486,7 +486,7 @@ msgstr "" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -554,72 +554,72 @@ "settings or restart KGet and retry downloading." msgstr "" -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, kde-format msgid "Remove Group" msgstr "Elpreni grupon" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, kde-format msgid "Remove groups" msgstr "" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    %1

    " msgstr "" -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, fuzzy, kde-format #| msgid "Downloaded" msgid "Download added" msgstr "Elŝutis" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "" -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "" -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" "Overwrite?" msgstr "" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -630,49 +630,49 @@ msgstr[0] "" msgstr[1] "" -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, fuzzy, kde-format #| msgid "Save As" msgctxt "@title:window" msgid "Save As" msgstr "Konservi kiel" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" "%1" msgstr "" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, kde-format msgid "" "Malformed URL, protocol missing:\n" "%1" msgstr "" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -682,12 +682,12 @@ "Download it again?" msgstr "" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, kde-format msgid "Download it again?" msgstr "" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -697,17 +697,17 @@ "Delete it and download again?" msgstr "" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, kde-format msgid "Delete it and download again?" msgstr "" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -715,39 +715,39 @@ "Download and delete the previous one?" msgstr "" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, kde-format msgid "File already downloaded. Download anyway?" msgstr "" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, kde-format msgid "File already exists" msgstr "Dosiero jam ekzistas" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "" -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "" -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "" -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -755,7 +755,7 @@ "as it is a directory." msgstr "" -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -763,32 +763,32 @@ "as it is not a local file." msgstr "" -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    %1

    " msgstr "" -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, kde-format msgid "Download completed" msgstr "Elŝuto finiĝis" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    %1

    " msgstr "" -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, fuzzy, kde-format #| msgid "Downloaded" msgid "Download started" msgstr "Elŝutis" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    %2

    " msgstr "" -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, fuzzy, kde-format #| msgid "Remove" msgid "Resolve" msgstr "Forigi" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, kde-format msgid "KGet is now closing, as all downloads have completed." msgstr "" -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "" -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgctxt "Shutting down computer" msgid "Shutdown" msgstr "Sistemfermi" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, fuzzy, kde-format #| msgctxt "Preview pending" #| msgid "Pending" @@ -842,18 +842,18 @@ msgid "Suspending" msgstr "Pritraktota" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, kde-format msgctxt "abort the proposed action" msgid "Abort" msgstr "Ĉesigi" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "" -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, kde-format msgid "Downloads completed" msgstr "" @@ -1670,19 +1670,19 @@ msgid "Decrease Priority" msgstr "Prioritato" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 -#, kde-format +#: mainwindow.cpp:204 +#, fuzzy, kde-format +#| msgid "Remove Group" +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "" -msgstr[1] "" +msgstr "Elpreni grupon" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 -#, kde-format +#: mainwindow.cpp:210 +#, fuzzy, kde-format +#| msgid "Remove Group" +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "" -msgstr[1] "" +msgstr "Elpreni grupon" #: mainwindow.cpp:215 #, kde-format @@ -2010,8 +2010,8 @@ msgid "Which files the chunk is located in" msgstr "" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2030,16 +2030,16 @@ msgid "Currently downloading:" msgstr "Nun elŝutas:" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, kde-format msgid "Downloaded:" msgstr "Elŝutis:" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -2924,8 +2924,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -2989,8 +2989,8 @@ msgid "New Script...." msgstr "" -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, kde-format @@ -3316,6 +3316,20 @@ msgid "Failed to write to the file." msgstr "Ne povas krei %1 : %2" +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "" +msgstr[1] "" + +#: ui/contextmenu.cpp:120 +#, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "" +msgstr[1] "" + #: ui/droptarget.cpp:84 #, kde-format msgctxt "fix position for droptarget" @@ -3631,31 +3645,31 @@ msgstr "Malfermi dosieron" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, kde-format msgid "&File" msgstr "&Dosiero" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, kde-format msgid "&Downloads" msgstr "" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "A&gordo" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "&Helpo" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "Ĉefa ilobreto" @@ -4033,8 +4047,8 @@ msgid "File size (in bytes):" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, kde-format msgid "Verification:" @@ -4587,18 +4601,18 @@ msgid "Remaining Time:" msgstr "" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, kde-format msgid "Transfer Settings for %1" msgstr "" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." msgstr "" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "Destination unmodified" msgstr "" diff -Nru kget-20.12.3/po/es/docs/kget/index.docbook kget-21.04.0/po/es/docs/kget/index.docbook --- kget-20.12.3/po/es/docs/kget/index.docbook 2021-03-02 00:48:42.000000000 +0000 +++ kget-21.04.0/po/es/docs/kget/index.docbook 2021-04-16 08:44:10.000000000 +0000 @@ -1005,7 +1005,8 @@ > y Rocío Gallego traducciones@rociogallego.com. &underFDL; &underGPL; +> +&underFDL; &underGPL; &documentation.index; diff -Nru kget-20.12.3/po/es/kgetplugin.po kget-21.04.0/po/es/kgetplugin.po --- kget-20.12.3/po/es/kgetplugin.po 2021-03-02 00:48:40.000000000 +0000 +++ kget-21.04.0/po/es/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -15,7 +15,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2012-02-05 17:57+0100\n" "Last-Translator: Rocio Gallego \n" "Language-Team: Español \n" @@ -56,18 +56,14 @@ msgid "No Links" msgstr "No hay enlaces" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "No ha sido posible comunicar con el gestor de descargas KGet." - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "Error de comunicación" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format msgid "&Tools" msgstr "Herramien&tas" + +#~ msgid "Unable to communicate with the KGet download manager." +#~ msgstr "No ha sido posible comunicar con el gestor de descargas KGet." + +#~ msgid "Communication Error" +#~ msgstr "Error de comunicación" diff -Nru kget-20.12.3/po/es/kget.po kget-21.04.0/po/es/kget.po --- kget-20.12.3/po/es/kget.po 2021-03-02 00:48:40.000000000 +0000 +++ kget-21.04.0/po/es/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -7,7 +7,7 @@ # Pablo de Vicente , 2005. # Pablo de Vicente , 2006. # Israel Garcia , 2008. -# Eloy Cuadra , 2008, 2010, 2012, 2017, 2019. +# Eloy Cuadra , 2008, 2010, 2012, 2017, 2019, 2021. # Israel Garcia Garcia , 2008, 2009, 2010. # Enrique Matias Sanchez , 2009. # Rocio Gallego , 2010, 2011, 2012, 2013, 2014. @@ -15,15 +15,15 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" -"PO-Revision-Date: 2019-05-01 14:32+0200\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" +"PO-Revision-Date: 2021-03-01 12:30+0100\n" "Last-Translator: Eloy Cuadra \n" "Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 19.04.0\n" +"X-Generator: Lokalize 20.12.2\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" #: conf/autopastemodel.cpp:174 @@ -277,7 +277,7 @@ msgid " sec" msgstr " seg" -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "No se pudo abrir KWallet" @@ -324,7 +324,7 @@ msgid "The width of the columns in the history view" msgstr "La anchura de la columna en la vista de historial" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "Complementos" @@ -459,8 +459,8 @@ msgstr "El más fuerte (El más lento)" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -486,7 +486,7 @@ msgstr "Servidores de claves:" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -558,27 +558,27 @@ "No se ha encontrado ningún servidor de claves, clave no descargada. Añada " "más servidores a las preferencias o reinicie KGet y vuelva a descargar." -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "¿Está seguro de que quiere eliminar el grupo llamado %1?" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, kde-format msgid "Remove Group" msgstr "Eliminar grupo" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "¿Está seguro de que quiere eliminar los siguientes grupos?" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, kde-format msgid "Remove groups" msgstr "Eliminar grupos" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    La siguiente transferencia ha sido añadida a la lista de descargas:

    %1

    " -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, kde-format msgid "Download added" msgstr "Descarga añadida" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "" "

    La siguiente transferencia ha sido añadida a la lista de descargas:

    " -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "" "

    La siguiente transferencia ha sido añadida a la lista de descargas:

    " -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "Mis descargas" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" @@ -618,17 +618,17 @@ "El archivo destino %1 ya existe.\n" "¿Desea sustituirlo?" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "¿Sustituir archivo existente?" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "No ha sido posible guardarlo en: %1" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -642,34 +642,34 @@ "

    Las siguientes URL no se pueden descargar, KGet no admite sus protocolos:" "

    " -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "Protocolo no soportado" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "Nueva descarga" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "Introducir URL:" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "Escoger directorio" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, kde-format msgctxt "@title:window" msgid "Save As" msgstr "Guardar como" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -678,7 +678,7 @@ "URL mal escrita:\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, kde-format msgid "" "Malformed URL, protocol missing:\n" @@ -687,7 +687,7 @@ "URL mal escrita, falta el protocolo:\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -702,12 +702,12 @@ "\n" "¿Descargar esto otra vez?" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, kde-format msgid "Download it again?" msgstr "¿Descargar de nuevo?" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -722,17 +722,17 @@ "\n" "¿Borrarla y descargar de nuevo?" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, kde-format msgid "Delete it and download again?" msgstr "¿Borrarlo y descargar de nuevo?" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "No se puede escribir en este directorio" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -743,39 +743,39 @@ "\n" "¿Descargar y borrar el anterior?" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, kde-format msgid "File already downloaded. Download anyway?" msgstr "Archivo ya descargado. ¿Descargar de todas maneras?" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "Ya ha descargado el mismo archivo" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, kde-format msgid "File already exists" msgstr "El archivo ya existe" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "Conexión con Internet establecida, reanudando transferencias." -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "No hay conexión con Internet, parando transferencias." -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "El cargador de complementos no puede cargar el complemento: %1." -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -786,7 +786,7 @@ "%1\n" "porque es un directorio." -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -797,7 +797,7 @@ "%1\n" "porque no es un archivo local." -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    Ha finalizado la descarga del siguiente archivo:

    %1

    " -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, kde-format msgid "Download completed" msgstr "Descarga completa" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    La siguiente transferencia ha comenzado:

    %1

    " -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, kde-format msgid "Download started" msgstr "Descarga iniciada" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    %1

    El mensaje de error es:

    %2

    " -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, kde-format msgid "Resolve" msgstr "Resolver" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, kde-format msgid "KGet is now closing, as all downloads have completed." msgstr "KGet se cerrará ahora porque todas las descargas han sido completadas." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "El equipo se apagará ahora porque todas las descargas han finalizado." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgctxt "Shutting down computer" msgid "Shutdown" msgstr "Apagar" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "" "El equipo se suspenderá en disco ahora porque se han completado todas las " "descargas." -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "Hibernando" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "" "El equipo se suspenderá en memoria ahora porque se han completado todas las " "descargas." -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgctxt "Suspending computer" msgid "Suspending" msgstr "Suspendiendo" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, kde-format msgctxt "abort the proposed action" msgid "Abort" msgstr "Interrumpir" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "

    Todas las transferencias han terminado.

    " -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, kde-format msgid "Downloads completed" msgstr "Descargas completadas" @@ -1768,19 +1768,17 @@ msgid "Decrease Priority" msgstr "Disminuir prioridad" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 +#: mainwindow.cpp:204 #, kde-format +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "Borrar grupo" -msgstr[1] "Borrar grupo" +msgstr "Borrar grupo" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 +#: mainwindow.cpp:210 #, kde-format +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "Renombrar grupo..." -msgstr[1] "Renombrar grupo" +msgstr "Cambiar nombre de grupo..." #: mainwindow.cpp:215 #, kde-format @@ -2113,8 +2111,8 @@ msgid "Which files the chunk is located in" msgstr "En qué archivos se encuentra el trozo" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2133,16 +2131,16 @@ msgid "Currently downloading:" msgstr "Descargando actualmente:" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, kde-format msgid "Downloaded:" msgstr "Descargado:" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -3011,8 +3009,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3076,8 +3074,8 @@ msgid "New Script...." msgstr "Nuevo guion..." -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, kde-format @@ -3408,6 +3406,20 @@ msgid "Failed to write to the file." msgstr "No se ha podido escribir en el archivo." +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "Borrar grupo" +msgstr[1] "Borrar grupo" + +#: ui/contextmenu.cpp:120 +#, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "Renombrar grupo..." +msgstr[1] "Renombrar grupo" + #: ui/droptarget.cpp:84 #, kde-format msgctxt "fix position for droptarget" @@ -3719,31 +3731,31 @@ msgstr "Abrir archivo" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, kde-format msgid "&File" msgstr "A&rchivo" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, kde-format msgid "&Downloads" msgstr "&Descargas" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "Preferencia&s" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "&Ayuda" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "Barra de herramientas principal" @@ -4124,8 +4136,8 @@ msgid "File size (in bytes):" msgstr "Tamaño de archivo (en bytes):" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, kde-format msgid "Verification:" @@ -4691,18 +4703,18 @@ msgid "Remaining Time:" msgstr "Tiempo restante:" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, kde-format msgid "Transfer Settings for %1" msgstr "Preferencias de transferencia para %1" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." msgstr "Cambiar el destino no funcionó, el destino permanece no modificado." -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "Destination unmodified" msgstr "Destino no modificado" diff -Nru kget-20.12.3/po/et/kgetplugin.po kget-21.04.0/po/et/kgetplugin.po --- kget-20.12.3/po/et/kgetplugin.po 2021-03-02 00:48:40.000000000 +0000 +++ kget-21.04.0/po/et/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2010-12-13 19:31+0200\n" "Last-Translator: Marek Laane \n" "Language-Team: Estonian \n" @@ -50,22 +50,18 @@ msgid "No Links" msgstr "Lingid puuduvad" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "Suhtlemine KGeti allalaadimishalduriga nurjus." - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "Kommunikatsiooniviga" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format msgid "&Tools" msgstr "&Tööriistad" +#~ msgid "Unable to communicate with the KGet download manager." +#~ msgstr "Suhtlemine KGeti allalaadimishalduriga nurjus." + +#~ msgid "Communication Error" +#~ msgstr "Kommunikatsiooniviga" + #~ msgid "Plugins" #~ msgstr "Pluginad" diff -Nru kget-20.12.3/po/et/kget.po kget-21.04.0/po/et/kget.po --- kget-20.12.3/po/et/kget.po 2021-03-02 00:48:40.000000000 +0000 +++ kget-21.04.0/po/et/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" "PO-Revision-Date: 2019-11-09 14:03+0200\n" "Last-Translator: Marek Laane \n" "Language-Team: Estonian \n" @@ -271,7 +271,7 @@ msgid " sec" msgstr " sek" -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "KWalleti avamine nurjus" @@ -318,7 +318,7 @@ msgid "The width of the columns in the history view" msgstr "Ajaloovaate veergude laius" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "Pluginad" @@ -453,8 +453,8 @@ msgstr "Tugevaim (aeglaseim)" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -480,7 +480,7 @@ msgstr "Võtmeserverid:" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -552,27 +552,27 @@ "Kasulikku võtmeserverit ei leitud, võtit ei laaditud alla. Lisa seadistustes " "veel servereid või käivita KGet uuesti ja püüa taas alla laadida." -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "Kas tõesti eemaldada grupp %1?" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, kde-format msgid "Remove Group" msgstr "Eemalda grupp" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "Kas tõesti eemaldada järgmised grupid?" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, kde-format msgid "Remove groups" msgstr "Eemalda grupid" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    Järgmine ülekanne on lisatud allalaadimiste nimekirja:

    %1

    " -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, kde-format msgid "Download added" msgstr "Allalaadimine lisatud" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "

    Järgmine ülekanne on lisatud allalaadimiste nimekirja:

    " -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "

    Järgmised ülekanded on lisatud allalaadimiste nimekirja:

    " -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "Minu allalaadimised" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" @@ -610,17 +610,17 @@ "Fail %1 on juba olemas.\n" "Kas kirjutada see üle?" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "Kas kirjutada olemasolev fail üle?" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "Ei õnnestunud salvestada asukohta: %1" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -633,34 +633,34 @@ msgstr[1] "" "

    Järgmisi URL-e ei saa alla laadida, KGet ei toeta nende protokolle:

    " -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "Protokoll ei ole toetatud" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "Uus allalaadimine" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "URL:" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "Kataloogi valimine" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, kde-format msgctxt "@title:window" msgid "Save As" msgstr "Salvestamine teise nimega" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -669,7 +669,7 @@ "Vigane URL:\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, kde-format msgid "" "Malformed URL, protocol missing:\n" @@ -678,7 +678,7 @@ "Vigane URL, protokoll puudub:\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -693,12 +693,12 @@ "\n" "Kas laadida see uuesti alla?" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, kde-format msgid "Download it again?" msgstr "Kas laadida uuesti alla?" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -713,17 +713,17 @@ "\n" "Kas kustutada see ja laadida uuesti alla?" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, kde-format msgid "Delete it and download again?" msgstr "Kas kustutada ja laadida uuesti alla?" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "Kataloogi ei saa kirjutada" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -734,39 +734,39 @@ "\n" "Kas laadida see alla ja kustutada eelmine?" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, kde-format msgid "File already downloaded. Download anyway?" msgstr "Fail on juba alla laaditud. Kas laadida see ikkagi alla?" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "Sa juba laadid sama faili alla" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, kde-format msgid "File already exists" msgstr "Fail on juba olemas" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "Internetiühendus on loodud, taasalustatakse ülekandeid." -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "Internetiühendus puudub, ülekanded peatatakse." -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "Pluginalaadija ei suutnud laadida pluginat: %1." -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -777,7 +777,7 @@ "jäetakse kustutamata,\n" "sest see on kataloog." -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -788,7 +788,7 @@ "jäetakse kustutamata,\n" "sest see ei ole kohalik fail." -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    Järgmise faili allalaadimine on lõpetatud:

    %1

    " -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, kde-format msgid "Download completed" msgstr "Allalaadimine valmis" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    Järgmise faili allalaadimist on alustatud:

    %1

    " -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, kde-format msgid "Download started" msgstr "Allalaadimine alustatud" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    Järgmise ülekande puhul tekkis viga:

    " "%1

    Veateade oli:

    %2

    " -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, kde-format msgid "Resolve" msgstr "Lahenda" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, kde-format msgid "KGet is now closing, as all downloads have completed." msgstr "KGet lõpetab nüüd töö. sest kõik allalaadimised on lõpetatud." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "Arvuti lõpetab nüüd töö. sest kõik allalaadimised on lõpetatud." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgctxt "Shutting down computer" msgid "Shutdown" msgstr "Seiskamine" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "" "Arvuti viiakse nüüd passiivsesse seisundisse kettal, sest kõik " "allalaadimised on lõpetatud." -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "Talveunes" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "" "Arvuti viiakse nüüd passiivsesse seisundisse mälus, sest kõik allalaadimised " "on lõpetatud." -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgctxt "Suspending computer" msgid "Suspending" msgstr "Passiivseisundisse" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, kde-format msgctxt "abort the proposed action" msgid "Abort" msgstr "Katkesta" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "

    Kõik ülekanded on lõpetatud.

    " -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, kde-format msgid "Downloads completed" msgstr "Allalaadimised valmis" @@ -1754,19 +1754,21 @@ msgid "Decrease Priority" msgstr "Vähenda prioriteeti" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 -#, kde-format +#: mainwindow.cpp:204 +#, fuzzy, kde-format +#| msgid "Delete Group" +#| msgid_plural "Delete Groups" +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "Kustuta grupp" -msgstr[1] "Kustuta grupid" +msgstr "Kustuta grupp" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 -#, kde-format +#: mainwindow.cpp:210 +#, fuzzy, kde-format +#| msgid "Rename Group..." +#| msgid_plural "Rename Groups..." +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "Nimeta grupp ümber..." -msgstr[1] "Nimeta grupid ümber..." +msgstr "Nimeta grupp ümber..." #: mainwindow.cpp:215 #, kde-format @@ -2095,8 +2097,8 @@ msgid "Which files the chunk is located in" msgstr "Millistes failides tükk asub" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2115,16 +2117,16 @@ msgid "Currently downloading:" msgstr "Praegu allalaadimisel:" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, kde-format msgid "Downloaded:" msgstr "Alla laaditud:" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -2985,8 +2987,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3050,8 +3052,8 @@ msgid "New Script...." msgstr "Uus skript..." -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, kde-format @@ -3380,6 +3382,20 @@ msgid "Failed to write to the file." msgstr "Faili kirjutamine nurjus." +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "Kustuta grupp" +msgstr[1] "Kustuta grupid" + +#: ui/contextmenu.cpp:120 +#, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "Nimeta grupp ümber..." +msgstr[1] "Nimeta grupid ümber..." + #: ui/droptarget.cpp:84 #, kde-format msgctxt "fix position for droptarget" @@ -3691,31 +3707,31 @@ msgstr "Ava fail" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, kde-format msgid "&File" msgstr "&Fail" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, kde-format msgid "&Downloads" msgstr "A&llalaadimised" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "&Seadistused" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "&Abi" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "Peamine tööriistariba" @@ -4096,8 +4112,8 @@ msgid "File size (in bytes):" msgstr "Failisuurus (baitides):" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, kde-format msgid "Verification:" @@ -4658,18 +4674,18 @@ msgid "Remaining Time:" msgstr "Aega jäänud:" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, kde-format msgid "Transfer Settings for %1" msgstr "%1 ülekande seadistused" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." msgstr "Sihtkoha muutmine ei toiminud, see jääb muutmata." -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "Destination unmodified" msgstr "Sihtkoht muutmata" diff -Nru kget-20.12.3/po/eu/kgetplugin.po kget-21.04.0/po/eu/kgetplugin.po --- kget-20.12.3/po/eu/kgetplugin.po 2021-03-02 00:48:40.000000000 +0000 +++ kget-21.04.0/po/eu/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2011-10-12 20:33+0200\n" "Last-Translator: Iñaki Larrañaga Murgoitio \n" "Language-Team: Basque \n" @@ -50,22 +50,18 @@ msgid "No Links" msgstr "Estekarik ez" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "Ezin da KGet deskarga-kudeatzailearekin komunikatu." - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "Komunikazioko errorea" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format msgid "&Tools" msgstr "&Tresnak" +#~ msgid "Unable to communicate with the KGet download manager." +#~ msgstr "Ezin da KGet deskarga-kudeatzailearekin komunikatu." + +#~ msgid "Communication Error" +#~ msgstr "Komunikazioko errorea" + #~ msgid "Plugins" #~ msgstr "Pluginak" diff -Nru kget-20.12.3/po/eu/kget.po kget-21.04.0/po/eu/kget.po --- kget-20.12.3/po/eu/kget.po 2021-03-02 00:48:40.000000000 +0000 +++ kget-21.04.0/po/eu/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" "PO-Revision-Date: 2019-07-13 10:31+0200\n" "Last-Translator: Iñigo Salvador Azurmendi \n" "Language-Team: Basque \n" @@ -275,7 +275,7 @@ msgid " sec" msgstr " seg." -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "Ezin izan da KWallet ireki" @@ -322,7 +322,7 @@ msgid "The width of the columns in the history view" msgstr "Zutabeen zabalera historiaren ikuspegian" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "Pluginak" @@ -457,8 +457,8 @@ msgstr "Indartsuena (motelena)" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -484,7 +484,7 @@ msgstr "Gako-zerbitzariak:" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -558,27 +558,27 @@ "Gehitu zerbitzari gehiago ezarpenei edo berrabiarazi KGet eta saiatu berriro " "deskargatzen." -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "Ziur zaude %1 izeneko taldea ezabatu nahi duzula?" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, kde-format msgid "Remove Group" msgstr "Kendu taldea" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "Ziur zaude honako taldeak ezabatu nahi dituzula?" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, kde-format msgid "Remove groups" msgstr "Kendu taldeak" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    Honako transferentzia gehitu da deskargen zerrendara:

    %1

    " -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, kde-format msgid "Download added" msgstr "Deskarga gehituta" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "

    Honako transferentzia gehitu zaio deskargen zerrendari:

    " -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "

    Honako transferentziak gehitu zaizkio deskargen zerrendari:

    " -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "Nere deskargak" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" @@ -616,17 +616,17 @@ "%1 fitxategia dagoeneko existitzen da.\n" "Gainidatzi?" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "Dagoen fitxategia gainidatzi?" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "Ezin da hemen gorde: %1" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -641,34 +641,34 @@ "

    Ezin dira honako URLak deskargatu. KGet-ek ez ditu haien protokoloa " "onartzen:

    " -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "Onartu gabeko protokoloa" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "Deskarga berria" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "Sartu URLa:" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "Hautatu direktorioa" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, kde-format msgctxt "@title:window" msgid "Save As" msgstr "Gorde honela" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -677,7 +677,7 @@ "Gaizki osatutako URLa:\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, kde-format msgid "" "Malformed URL, protocol missing:\n" @@ -686,7 +686,7 @@ "Gaizki osatutako URLa, protokoloa falta da:\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -701,12 +701,12 @@ "\n" "Deskargatu berriro?" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, kde-format msgid "Download it again?" msgstr "Deskargatu berriro?" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -721,17 +721,17 @@ "\n" "Ezabatu eta deskargatu berriro?" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, kde-format msgid "Delete it and download again?" msgstr "Ezabatu eta deskargatu berriro?" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "Direktorioan ezin da idatzi" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -742,39 +742,39 @@ "\n" "Deskargatu eta aurrekoa ezabatu?" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, kde-format msgid "File already downloaded. Download anyway?" msgstr "Fitxategia dagoeneko deskargatuta. Deskargatu dena den?" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "Jadanik fitxategi berdina deskargatu duzu" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, kde-format msgid "File already exists" msgstr "Fitxategia badago lehendik ere" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "Interneteko konexioa ezarrita. Transferentziak jarraitzen." -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "Ez dago Interneteko konexiorik. Transferentziak gelditzen." -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "Plugin kargatzaileak ezin du plugina kargatu: %1" -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -785,7 +785,7 @@ "ez da ezabatuko\n" "direktorio bat delako." -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -796,7 +796,7 @@ "ez da ezabatuko\n" "ez delako lokaleko fitxategi bat." -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    Honako fitxategia deskargatu da:

    %1

    " -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, kde-format msgid "Download completed" msgstr "Deskarga amaituta" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    Honako transferentzia hasi da:

    %1

    " -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, kde-format msgid "Download started" msgstr "Deskarga hasita" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    Errore bat gertatu da transferentzia honekin::

    %1

    Errore mezua da:

    %2

    " -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, kde-format msgid "Resolve" msgstr "Ebatzi" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, kde-format msgid "KGet is now closing, as all downloads have completed." msgstr "KGet itxi egingo da, deskarga guztiak osatu direlako." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "Ordenagailua itzali egingo da orain, deskarga guztiak osatu direlako." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgctxt "Shutting down computer" msgid "Shutdown" msgstr "Itzali" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "Ordenagailua eseki egingo da orain, deskarga guztiak osatu direlako." -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "Hibernatzen" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "Ordenagailuak RAM eseki egingo du, deskarga guztiak osatu direlako." -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgctxt "Suspending computer" msgid "Suspending" msgstr "Esekitzen" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, kde-format msgctxt "abort the proposed action" msgid "Abort" msgstr "Abortatu" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "

    Transferentzia guztiak amaitu dira.

    " -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, kde-format msgid "Downloads completed" msgstr "Deskargak amaituta" @@ -1749,19 +1749,21 @@ msgid "Decrease Priority" msgstr "Gutxiagotu lehentasuna" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 -#, kde-format +#: mainwindow.cpp:204 +#, fuzzy, kde-format +#| msgid "Delete Group" +#| msgid_plural "Delete Groups" +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "Ezabatu taldea" -msgstr[1] "Ezabatu taldeak" +msgstr "Ezabatu taldea" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 -#, kde-format +#: mainwindow.cpp:210 +#, fuzzy, kde-format +#| msgid "Rename Group..." +#| msgid_plural "Rename Groups..." +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "Aldatu taldearen izena..." -msgstr[1] "Aldatu taldeen izenak..." +msgstr "Aldatu taldearen izena..." #: mainwindow.cpp:215 #, kde-format @@ -2094,8 +2096,8 @@ msgid "Which files the chunk is located in" msgstr "Pusketa zein fitxategietan kokatuta dagoen" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2114,16 +2116,16 @@ msgid "Currently downloading:" msgstr "Unean deskargatzen:" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, kde-format msgid "Downloaded:" msgstr "Deskargatuta:" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -2990,8 +2992,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3055,8 +3057,8 @@ msgid "New Script...." msgstr "Script berria..." -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, kde-format @@ -3385,6 +3387,20 @@ msgid "Failed to write to the file." msgstr "Huts egin du fitxategian idaztean." +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "Ezabatu taldea" +msgstr[1] "Ezabatu taldeak" + +#: ui/contextmenu.cpp:120 +#, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "Aldatu taldearen izena..." +msgstr[1] "Aldatu taldeen izenak..." + #: ui/droptarget.cpp:84 #, kde-format msgctxt "fix position for droptarget" @@ -3697,31 +3713,31 @@ msgstr "Ireki fitxategia" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, kde-format msgid "&File" msgstr "&Fitxategia" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, kde-format msgid "&Downloads" msgstr "&Deskargak" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "E&zarpenak" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "&Laguntza" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "Tresna-barra nagusia" @@ -4102,8 +4118,8 @@ msgid "File size (in bytes):" msgstr "Fitxategi-tamaina (bytetan):" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, kde-format msgid "Verification:" @@ -4665,19 +4681,19 @@ msgid "Remaining Time:" msgstr "Geratzen den denbora:" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, kde-format msgid "Transfer Settings for %1" msgstr "%1(r)en transferentzia-ezarpenak" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." msgstr "" "Helburua aldatzeak ez du funtzionatu. Helburua aldatu gabe jarraitzen du." -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "Destination unmodified" msgstr "Helburua aldatu gabe" diff -Nru kget-20.12.3/po/fa/kgetplugin.po kget-21.04.0/po/fa/kgetplugin.po --- kget-20.12.3/po/fa/kgetplugin.po 2021-03-02 00:48:40.000000000 +0000 +++ kget-21.04.0/po/fa/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2011-06-17 18:22+0430\n" "Last-Translator: Mohamad Reza Mirdamadi \n" "Language-Team: Farsi (Persian) \n" @@ -48,22 +48,18 @@ msgid "No Links" msgstr "هیچ پیوندی" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "نتوانست با مدیر بارگیری KGet ارتباط برقرار کند." - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "خطای ارتباط" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format msgid "&Tools" msgstr "&ابزارها‌" +#~ msgid "Unable to communicate with the KGet download manager." +#~ msgstr "نتوانست با مدیر بارگیری KGet ارتباط برقرار کند." + +#~ msgid "Communication Error" +#~ msgstr "خطای ارتباط" + #~ msgid "Plugins" #~ msgstr "وصله‌ها" diff -Nru kget-20.12.3/po/fa/kget.po kget-21.04.0/po/fa/kget.po --- kget-20.12.3/po/fa/kget.po 2021-03-02 00:48:40.000000000 +0000 +++ kget-21.04.0/po/fa/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" "PO-Revision-Date: 2007-09-03 12:28+0330\n" "Last-Translator: Nazanin Kazemi \n" "Language-Team: Persian \n" @@ -277,7 +277,7 @@ msgid " sec" msgstr "" -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "" @@ -324,7 +324,7 @@ msgid "The width of the columns in the history view" msgstr "" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "وصله‌ها" @@ -461,8 +461,8 @@ msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -488,7 +488,7 @@ msgstr "سرعت" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -558,7 +558,7 @@ "settings or restart KGet and retry downloading." msgstr "" -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, fuzzy, kde-format #| msgid "" #| "Are you sure that you want to remove\n" @@ -568,13 +568,13 @@ "آیا مطمئنید می‌خواهید\n" "گروه با نام %1 را حذف کنید؟" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, fuzzy, kde-format #| msgid "Rename Group" msgid "Remove Group" msgstr "تغییر نام گروه." -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, fuzzy, kde-format #| msgid "" #| "Are you sure that you want to remove\n" @@ -584,40 +584,40 @@ "آیا مطمئنید می‌خواهید\n" "گروه با نام %1 را حذف کنید؟" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, fuzzy, kde-format #| msgid "Rename Group" msgid "Remove groups" msgstr "تغییر نام گروه." -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    %1

    " msgstr "" -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, fuzzy, kde-format msgid "Download added" msgstr "بارگیریها" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "" -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "" -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "بارگیریهای من" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" @@ -626,17 +626,17 @@ "پرونده %1 از قبل وجود دارد.‌\n" "جای‌نوشت شود؟" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "پرونده موجود جای‌نوشت شود؟" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "قادر به ذخیره در %1 نیست" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -646,34 +646,34 @@ "supported by KGet:

    " msgstr[0] "" -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "بارگیری مجدد" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "وارد کردن نشانی وب:" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, kde-format msgctxt "@title:window" msgid "Save As" msgstr "" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -682,7 +682,7 @@ "نشانی وب بد شکل:\n" "%1‌" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, fuzzy, kde-format #| msgid "" #| "Malformed URL:\n" @@ -694,7 +694,7 @@ "نشانی وب بد شکل:\n" "%1‌" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -704,12 +704,12 @@ "Download it again?" msgstr "" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, fuzzy, kde-format msgid "Download it again?" msgstr "نشانی وب دوباره بارگیری شود؟" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -719,17 +719,17 @@ "Delete it and download again?" msgstr "" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, fuzzy, kde-format msgid "Delete it and download again?" msgstr "نشانی وب دوباره بارگیری شود؟" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -737,7 +737,7 @@ "Download and delete the previous one?" msgstr "" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, fuzzy, kde-format #| msgid "" #| "URL already saved:\n" @@ -749,12 +749,12 @@ "%1\n" "دوباره بارگیری شود؟" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, fuzzy, kde-format @@ -766,22 +766,22 @@ "پرونده %1 از قبل وجود دارد.‌\n" "جای‌نوشت شود؟" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "" -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "" -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "" -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -792,7 +792,7 @@ "%1\n" "چون یک فهرست راهنما نیست." -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -803,31 +803,31 @@ "%1\n" "چون یک پرونده محلی نیست." -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    %1

    " msgstr "" -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, fuzzy, kde-format msgid "Download completed" msgstr "پوشه‌های بارگیری پیش‌فرض" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    %1

    " msgstr "" -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, fuzzy, kde-format msgid "Download started" msgstr "بارگیریها" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    %2

    " msgstr "" -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, fuzzy, kde-format #| msgid "Remove" msgid "Resolve" msgstr "حذف" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, kde-format msgid "KGet is now closing, as all downloads have completed." msgstr "" -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "" -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, fuzzy, kde-format #| msgid "Auto shutdown" msgctxt "Shutting down computer" msgid "Shutdown" msgstr "تعطیل خودکار" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, fuzzy, kde-format msgctxt "Suspending computer" msgid "Suspending" msgstr "سرعت" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, kde-format msgctxt "abort the proposed action" msgid "Abort" msgstr "" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "" -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, fuzzy, kde-format msgid "Downloads completed" msgstr "پوشه‌های بارگیری پیش‌فرض" @@ -1769,19 +1769,19 @@ msgid "Decrease Priority" msgstr "" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 +#: mainwindow.cpp:204 #, fuzzy, kde-format #| msgid "Delete Group" +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "حذف گروه" +msgstr "حذف گروه" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 +#: mainwindow.cpp:210 #, fuzzy, kde-format #| msgid "Rename Group" +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "تغییر نام گروه." +msgstr "تغییر نام گروه." #: mainwindow.cpp:215 #, kde-format @@ -2119,8 +2119,8 @@ msgid "Which files the chunk is located in" msgstr "" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2139,16 +2139,16 @@ msgid "Currently downloading:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, fuzzy, kde-format msgid "Downloaded:" msgstr "بارگیریها" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -2993,8 +2993,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3059,8 +3059,8 @@ msgid "New Script...." msgstr "" -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, fuzzy, kde-format @@ -3392,6 +3392,20 @@ msgid "Failed to write to the file." msgstr "قادر به ذخیره در %1 نیست" +#: ui/contextmenu.cpp:116 +#, fuzzy, kde-format +#| msgid "Delete Group" +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "حذف گروه" + +#: ui/contextmenu.cpp:120 +#, fuzzy, kde-format +#| msgid "Rename Group" +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "تغییر نام گروه." + #: ui/droptarget.cpp:84 #, fuzzy, kde-format msgctxt "fix position for droptarget" @@ -3706,31 +3720,31 @@ msgstr "باز کردن پرونده" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, kde-format msgid "&File" msgstr "&پرونده‌" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, kde-format msgid "&Downloads" msgstr "&بارگیریها‌" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "&تنظیمات‌" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "&کمک‌" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "میله ابزار اصلی" @@ -4116,8 +4130,8 @@ msgid "File size (in bytes):" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, fuzzy, kde-format msgid "Verification:" @@ -4675,18 +4689,18 @@ msgid "Remaining Time:" msgstr "" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, fuzzy, kde-format msgid "Transfer Settings for %1" msgstr "جزئیات برای: %1" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." msgstr "" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, fuzzy, kde-format msgid "Destination unmodified" msgstr "باز کردن مقصد" diff -Nru kget-20.12.3/po/fi/kgetplugin.po kget-21.04.0/po/fi/kgetplugin.po --- kget-20.12.3/po/fi/kgetplugin.po 2021-03-02 00:48:40.000000000 +0000 +++ kget-21.04.0/po/fi/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -18,7 +18,7 @@ msgstr "" "Project-Id-Version: kgetplugin\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2011-03-10 18:39+0200\n" "Last-Translator: Tommi Nieminen \n" "Language-Team: Finnish \n" @@ -60,22 +60,18 @@ msgid "No Links" msgstr "Ei linkkejä" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "KGet-lataushallintaan ei saada yhteyttä." - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "Yhteysvirhe" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format msgid "&Tools" msgstr "&Työkalut" +#~ msgid "Unable to communicate with the KGet download manager." +#~ msgstr "KGet-lataushallintaan ei saada yhteyttä." + +#~ msgid "Communication Error" +#~ msgstr "Yhteysvirhe" + #~ msgid "Plugins" #~ msgstr "Liitännäiset" diff -Nru kget-20.12.3/po/fi/kget.po kget-21.04.0/po/fi/kget.po --- kget-20.12.3/po/fi/kget.po 2021-03-02 00:48:40.000000000 +0000 +++ kget-21.04.0/po/fi/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -20,7 +20,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" "PO-Revision-Date: 2020-07-12 16:19+0300\n" "Last-Translator: Tommi Nieminen \n" "Language-Team: Finnish \n" @@ -283,7 +283,7 @@ msgid " sec" msgstr " s" -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "KWalletin avaaminen epäonnistui" @@ -330,7 +330,7 @@ msgid "The width of the columns in the history view" msgstr "Sarakkeiden leveys historianäkymässä" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "Liitännäiset" @@ -465,8 +465,8 @@ msgstr "Vahvin (hitain)" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -492,7 +492,7 @@ msgstr "Avainpalvelimet:" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -564,27 +564,27 @@ "Käyttökelpoista avainpalvelinta ei löytynyt eikä avainta ladattu. Lisää " "lisäpalvelimia asetuksiin tai käynnistä KGet uudelleen ja toista lataus." -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "Haluatko varmasti poistaa ryhmän nimeltä %1?" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, kde-format msgid "Remove Group" msgstr "Poista ryhmä" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "Haluatko varmasti poistaa seuraavat ryhmät?" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, kde-format msgid "Remove groups" msgstr "Poista ryhmät" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    Siirto on lisätty latausluetteloon:

    %1" -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, kde-format msgid "Download added" msgstr "Lataus lisätty" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "

    Seuraava siirto on lisätty latausluetteloon:

    " -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "

    Seuraavat siirrot on lisätty latausluetteloon:

    " -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "Omat lataukset" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" @@ -622,17 +622,17 @@ "Tiedosto %1 on jo olemassa.\n" "Korvataanko?" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "Korvataanko aikaisempi tiedosto?" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "Ei voitu tallentaa kohteeseen: %1" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -647,34 +647,34 @@ "

    Seuraavia osoitteita ei voi ladata, koska KGet ei tue niiden " "yhteyskäytäntöä:

    " -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "Yhteyskäytäntöä ei tueta" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "Uusi lataus" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "Anna verkko-osoite:" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "Valitse kansio" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, kde-format msgctxt "@title:window" msgid "Save As" msgstr "Tallenna nimellä" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -683,7 +683,7 @@ "Virheellinen verkko-osoite:\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, kde-format msgid "" "Malformed URL, protocol missing:\n" @@ -692,7 +692,7 @@ "Virheellinen verkko-osoite, yhteyskäytäntö puuttuu:\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -707,12 +707,12 @@ "\n" "Lataatko sen uudelleen?" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, kde-format msgid "Download it again?" msgstr "Ladataanko uudestaan?" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -727,17 +727,17 @@ "\n" "Poistetaanko se ja ladataan uudestaan?" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, kde-format msgid "Delete it and download again?" msgstr "Poistetaanko se ja ladataan uudestaan?" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "Kansioon ei voi kirjoittaa" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -748,39 +748,39 @@ "\n" "Ladataanko tämä ja poistetaan edellinen?" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, kde-format msgid "File already downloaded. Download anyway?" msgstr "Tiedosto on jo ladattu. Ladataanko uudelleen?" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "Olet jo lataamassa samaa tiedostoa" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, kde-format msgid "File already exists" msgstr "Tiedosto on jo olemassa" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "Verkkoyhteys muodostettu, jatketaan tiedostosiirtoja." -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "Ei verkkoyhteyttä, tiedostosiirrot pysäytetään." -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "Liitännäisten lataaja ei voinut ladata liitännäistä: %1." -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -791,7 +791,7 @@ "%1\n" "koska se on kansio." -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -802,7 +802,7 @@ "%1\n" "koska se ei ole paikallinen tiedosto." -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    Tiedoston lataus on valmistunut:

    %1

    " -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, kde-format msgid "Download completed" msgstr "Lataus on valmis" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    %1

    " msgstr "

    Siirto on käynnistynyt:

    %1

    " -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, kde-format msgid "Download started" msgstr "Lataus käynnistynyt" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    Siirrossa tapahtui virhe:

    %1

    Virheilmoitus:

    %2

    " -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, kde-format msgid "Resolve" msgstr "Ratkaise" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, kde-format msgid "KGet is now closing, as all downloads have completed." msgstr "KGet suljetaan nyt, koska kaikki lataukset ovat valmiita." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "Tietokone sammutetaan nyt, koska kaikki lataukset ovat valmiita." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgctxt "Shutting down computer" msgid "Shutdown" msgstr "Sammutus" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "" "Tietokone keskeytetään nyt levylle, koska kaikki lataukset ovat valmiita." -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "Siirrytään lepotilaan" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "" "Tietokone keskeytetään nyt muistiin, koska kaikki lataukset ovat valmiita." -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgctxt "Suspending computer" msgid "Suspending" msgstr "Siirrytään valmiustilaan" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, kde-format msgctxt "abort the proposed action" msgid "Abort" msgstr "Keskeytä" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "

    Kaikki siirrot ovat valmistuneet.

    " -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, kde-format msgid "Downloads completed" msgstr "Lataus on valmis" @@ -1769,19 +1769,21 @@ msgid "Decrease Priority" msgstr "Vähennä prioriteettia" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 -#, kde-format +#: mainwindow.cpp:204 +#, fuzzy, kde-format +#| msgid "Delete Group" +#| msgid_plural "Delete Groups" +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "Poista ryhmä" -msgstr[1] "Poista ryhmät" +msgstr "Poista ryhmä" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 -#, kde-format +#: mainwindow.cpp:210 +#, fuzzy, kde-format +#| msgid "Rename Group..." +#| msgid_plural "Rename Groups..." +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "Muuta ryhmän nimeä…" -msgstr[1] "Muuta ryhmien nimiä…" +msgstr "Muuta ryhmän nimeä…" #: mainwindow.cpp:215 #, kde-format @@ -2115,8 +2117,8 @@ msgid "Which files the chunk is located in" msgstr "Mistä tiedostoista osa löytyy" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2135,16 +2137,16 @@ msgid "Currently downloading:" msgstr "Nyt ladataan:" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, kde-format msgid "Downloaded:" msgstr "Ladattu:" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -3008,8 +3010,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3073,8 +3075,8 @@ msgid "New Script...." msgstr "Uusi skripti…." -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, kde-format @@ -3402,6 +3404,20 @@ msgid "Failed to write to the file." msgstr "Tiedostoon kirjoittaminen epäonnistui." +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "Poista ryhmä" +msgstr[1] "Poista ryhmät" + +#: ui/contextmenu.cpp:120 +#, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "Muuta ryhmän nimeä…" +msgstr[1] "Muuta ryhmien nimiä…" + #: ui/droptarget.cpp:84 #, kde-format msgctxt "fix position for droptarget" @@ -3712,31 +3728,31 @@ msgstr "Avaa tiedosto" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, kde-format msgid "&File" msgstr "&Tiedosto" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, kde-format msgid "&Downloads" msgstr "&Lataukset" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "&Asetukset" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "&Ohje" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "Päätyökalurivi" @@ -4118,8 +4134,8 @@ msgid "File size (in bytes):" msgstr "Tiedostokoko (tavuissa):" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, kde-format msgid "Verification:" @@ -4682,18 +4698,18 @@ msgid "Remaining Time:" msgstr "Jäljellä oleva aika:" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, kde-format msgid "Transfer Settings for %1" msgstr "Siirron asetukset kohteelle %1" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." msgstr "Kohteen vaihtaminen ei toiminut, kohde pysyy muuttumattomana." -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "Destination unmodified" msgstr "Kohde muuttumaton" diff -Nru kget-20.12.3/po/fr/kgetplugin.po kget-21.04.0/po/fr/kgetplugin.po --- kget-20.12.3/po/fr/kgetplugin.po 2021-03-02 00:48:40.000000000 +0000 +++ kget-21.04.0/po/fr/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -22,7 +22,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2013-06-27 13:56+0200\n" "Last-Translator: xavier \n" "Language-Team: French \n" @@ -66,23 +66,19 @@ msgid "No Links" msgstr "Aucun lien" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "" -"Impossible de communiquer avec le gestionnaire des téléchargements KGet." - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "Erreur de communication" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format msgid "&Tools" msgstr "&Outils" +#~ msgid "Unable to communicate with the KGet download manager." +#~ msgstr "" +#~ "Impossible de communiquer avec le gestionnaire des téléchargements KGet." + +#~ msgid "Communication Error" +#~ msgstr "Erreur de communication" + #~ msgid "Plugins" #~ msgstr "Modules" diff -Nru kget-20.12.3/po/fr/kget.po kget-21.04.0/po/fr/kget.po --- kget-20.12.3/po/fr/kget.po 2021-03-02 00:48:40.000000000 +0000 +++ kget-21.04.0/po/fr/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -25,8 +25,8 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" -"PO-Revision-Date: 2021-01-12 07:58+0100\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" +"PO-Revision-Date: 2021-03-05 21:16+0100\n" "Last-Translator: Xavier Besnard \n" "Language-Team: French \n" "Language: fr\n" @@ -34,7 +34,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Lokalize 20.12.0\n" +"X-Generator: Lokalize 20.12.3\n" "X-Environment: kde\n" "X-Accelerator-Marker: &\n" "X-Text-Markup: kde4\n" @@ -291,7 +291,7 @@ msgid " sec" msgstr " sec" -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "Impossible d'ouvrir KWallet" @@ -339,7 +339,7 @@ msgid "The width of the columns in the history view" msgstr "La largeur des colonnes dans la vue d'historique" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "Modules" @@ -474,8 +474,8 @@ msgstr "La plus forte (et la plus lente)" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -501,7 +501,7 @@ msgstr "Serveurs de clés :" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -576,27 +576,27 @@ "plus de serveurs dans la configuration ou redémarrer KGet et relancez le " "téléchargement." -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "Voulez-vous vraiment supprimer le groupe nommé %1 ?" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, kde-format msgid "Remove Group" msgstr "Supprimer le groupe" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "Voulez-vous vraiment supprimer les groupes suivants ?" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, kde-format msgid "Remove groups" msgstr "Supprimer les groupes" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    Le téléchargement suivant a été ajouté à la liste :

    %1

    " -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, kde-format msgid "Download added" msgstr "Téléchargement ajouté" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "

    Le téléchargement du fichier suivant est terminé :

    " -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "

    Le téléchargement des fichiers suivants est terminé :

    " -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "Mes téléchargements" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" @@ -634,17 +634,17 @@ "Le fichier « %1 » existe déjà.\n" "Voulez-vous l'écraser ?" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "Écraser le fichier existant ?" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "Impossible d'enregistrer vers : %1" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -659,34 +659,34 @@ "

    Impossible de télécharger les URL suivantes, leurs protocoles ne sont pas " "gérés par KGet :

    " -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "Protocole non pris en charge" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "Nouveau téléchargement" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "Saisissez l'adresse :" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "Choisissez un dossier" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, kde-format msgctxt "@title:window" msgid "Save As" msgstr "Enregistrer sous" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -695,7 +695,7 @@ "Adresse mal formée :\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, kde-format msgid "" "Malformed URL, protocol missing:\n" @@ -704,7 +704,7 @@ "Adresse mal formée, le protocole est manquant :\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -719,12 +719,12 @@ "\n" "Voulez-vous le télécharger à nouveau ?" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, kde-format msgid "Download it again?" msgstr "Télécharger à nouveau ?" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -739,17 +739,17 @@ "\n" "Voulez-vous le supprimer et le télécharger à nouveau ?" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, kde-format msgid "Delete it and download again?" msgstr "Supprimer et le télécharger à nouveau ?" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "Ce dossier n'est pas accessible en écriture" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -760,39 +760,39 @@ "\n" "Voulez-vous le télécharger et supprimer le précédent ?" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, kde-format msgid "File already downloaded. Download anyway?" msgstr "Fichier déjà téléchargé. Voulez-vous tout de même le re-télécharger ?" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "Vous téléchargez déjà le même fichier" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, kde-format msgid "File already exists" msgstr "Le fichier existe déjà" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "Connexion Internet établie, re-démarrage des transferts." -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "Aucune connexion Internet, arrêt des transferts." -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "Impossible pour le chargeur de module de charger le module : %1." -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -803,7 +803,7 @@ "%1\n" "car c'est un dossier." -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -814,7 +814,7 @@ "%1\n" "car ce n'est pas un fichier local." -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    Le téléchargement du fichier suivant est terminé :

    %1

    " -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, kde-format msgid "Download completed" msgstr "Téléchargement terminé" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    Le téléchargement du fichier suivant a commencé :

    %1

    " -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, kde-format msgid "Download started" msgstr "Téléchargement commencé" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    Erreur dans le transfert suivant :

    " "%1

    Le message d'erreur est :

    %2

    " -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, kde-format msgid "Resolve" msgstr "Résoudre" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, kde-format msgid "KGet is now closing, as all downloads have completed." msgstr "KGet va être fermé car tous les téléchargements sont terminés." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "" "L'ordinateur va maintenant être éteint car tous les téléchargements sont " "terminés." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgctxt "Shutting down computer" msgid "Shutdown" msgstr "Éteindre" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "" "L'ordinateur va maintenant être mis en veille sur le disque car tous les " "téléchargements sont terminés." -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "Hibernation" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "" "L'ordinateur va maintenant être mis en veille sur la mémoire car tous les " "téléchargements sont terminés." -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgctxt "Suspending computer" msgid "Suspending" msgstr "Mise en veille" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, kde-format msgctxt "abort the proposed action" msgid "Abort" msgstr "Annuler" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "

    Tous les transferts sont terminés.

    " -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, kde-format msgid "Downloads completed" msgstr "Téléchargements terminés" @@ -1783,19 +1783,17 @@ msgid "Decrease Priority" msgstr "Baisser la priorité" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 +#: mainwindow.cpp:204 #, kde-format +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "Supprimer le groupe" -msgstr[1] "Supprimer les groupes" +msgstr "Supprimer un groupe" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 +#: mainwindow.cpp:210 #, kde-format +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "Renommer le groupe" -msgstr[1] "Renommer les groupes" +msgstr "Renommer un groupe..." #: mainwindow.cpp:215 #, kde-format @@ -2130,8 +2128,8 @@ msgid "Which files the chunk is located in" msgstr "Les fichiers liés à ce morceau" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2150,16 +2148,16 @@ msgid "Currently downloading:" msgstr "Actuellement en téléchargement :" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, kde-format msgid "Downloaded:" msgstr "Téléchargé :" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -3033,8 +3031,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3098,8 +3096,8 @@ msgid "New Script...." msgstr "Nouveau script..." -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, kde-format @@ -3435,6 +3433,20 @@ msgid "Failed to write to the file." msgstr "Impossible d'écrire dans le fichier." +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "Supprimer le groupe" +msgstr[1] "Supprimer les groupes" + +#: ui/contextmenu.cpp:120 +#, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "Renommer le groupe" +msgstr[1] "Renommer les groupes" + #: ui/droptarget.cpp:84 #, kde-format msgctxt "fix position for droptarget" @@ -3750,31 +3762,31 @@ msgstr "Ouvrir le fichier" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, kde-format msgid "&File" msgstr "&Fichier" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, kde-format msgid "&Downloads" msgstr "&Téléchargements" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "&Configuration" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "&Aide" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "Barre principale" @@ -4156,8 +4168,8 @@ msgid "File size (in bytes):" msgstr "Taille du fichier (en octets) :" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, kde-format msgid "Verification:" @@ -4726,12 +4738,12 @@ msgid "Remaining Time:" msgstr "Temps restant :" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, kde-format msgid "Transfer Settings for %1" msgstr "Configuration du transfert de %1" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." @@ -4739,7 +4751,7 @@ "Le changement de la destination n'a pas fonctionné, et elle restera donc non " "modifiée." -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "Destination unmodified" msgstr "Destination non modifiée" diff -Nru kget-20.12.3/po/ga/kgetplugin.po kget-21.04.0/po/ga/kgetplugin.po --- kget-20.12.3/po/ga/kgetplugin.po 2021-03-02 00:48:40.000000000 +0000 +++ kget-21.04.0/po/ga/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kdenetwork/kget.po\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2004-12-03 14:52-0500\n" "Last-Translator: Kevin Scannell \n" "Language-Team: Irish \n" @@ -47,22 +47,18 @@ msgid "No Links" msgstr "Gan Naisc" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "Ní féidir dul i dteagmháil le bainisteoir íosluchtaithe KGet." - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "Earráid Chumarsáide" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format msgid "&Tools" msgstr "&Uirlisí" +#~ msgid "Unable to communicate with the KGet download manager." +#~ msgstr "Ní féidir dul i dteagmháil le bainisteoir íosluchtaithe KGet." + +#~ msgid "Communication Error" +#~ msgstr "Earráid Chumarsáide" + #~ msgid "Plugins" #~ msgstr "Breiseáin" diff -Nru kget-20.12.3/po/ga/kget.po kget-21.04.0/po/ga/kget.po --- kget-20.12.3/po/ga/kget.po 2021-03-02 00:48:40.000000000 +0000 +++ kget-21.04.0/po/ga/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kdenetwork/kget.po\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" "PO-Revision-Date: 2004-12-03 14:52-0500\n" "Last-Translator: Kevin Scannell \n" "Language-Team: Irish \n" @@ -269,7 +269,7 @@ msgid " sec" msgstr " s" -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "Níorbh fhéidir KWallet a oscailt" @@ -316,7 +316,7 @@ msgid "The width of the columns in the history view" msgstr "" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "Breiseáin" @@ -451,8 +451,8 @@ msgstr "Is Láidre (is maille)" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -478,7 +478,7 @@ msgstr "" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -546,54 +546,54 @@ "settings or restart KGet and retry downloading." msgstr "" -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "An bhfuil tú cinnte gur mian leat an grúpa darb ainm %1 a bhaint?" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, kde-format msgid "Remove Group" msgstr "Bain Grúpa" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "An bhfuil tú cinnte gur mian leat na grúpaí seo a leanas a bhaint?" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, kde-format msgid "Remove groups" msgstr "Bain grúpaí" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    %1

    " msgstr "" -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, kde-format msgid "Download added" msgstr "Cuireadh íosluchtú leis" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "" -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "" -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "Mo Chuid Íosluchtaithe" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" @@ -602,17 +602,17 @@ "Tá comhad %1 ann cheana.\n" "An bhfuil fonn ort scríobh air?" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "Forscríobh comhad atá ann?" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "Ní féidir sábháil i: %1" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -626,35 +626,35 @@ msgstr[3] "" msgstr[4] "" -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "Íosluchtú Nua" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "Iontráil URL:" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, fuzzy, kde-format #| msgid "Save As" msgctxt "@title:window" msgid "Save As" msgstr "Sábháil Mar" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -663,7 +663,7 @@ "URL Míchumtha:\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, kde-format msgid "" "Malformed URL, protocol missing:\n" @@ -672,7 +672,7 @@ "URL Míchumtha, prótacal ar iarraidh:\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -682,12 +682,12 @@ "Download it again?" msgstr "" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, kde-format msgid "Download it again?" msgstr "Íosluchtaigh arís?" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -697,17 +697,17 @@ "Delete it and download again?" msgstr "" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, kde-format msgid "Delete it and download again?" msgstr "" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "Níl an chomhadlann inscríofa" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -715,39 +715,39 @@ "Download and delete the previous one?" msgstr "" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, kde-format msgid "File already downloaded. Download anyway?" msgstr "" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "Tá an comhad céanna á íosluchtú cheana" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, kde-format msgid "File already exists" msgstr "Tá an comhad ann cheana" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "" -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "" -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "Níorbh fhéidir le luchtóir na mbreiseán an breiseán a luchtú: %1." -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -758,7 +758,7 @@ "%1\n" "mar is comhadlann é." -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -769,31 +769,31 @@ "%1\n" "mar nach comhad logánta é." -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    %1

    " msgstr "" -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, kde-format msgid "Download completed" msgstr "Íosluchtú curtha i gcrích" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    %1

    " msgstr "" -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, kde-format msgid "Download started" msgstr "Tosaíodh an t-íosluchtú" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    %2

    " msgstr "" -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, kde-format msgid "Resolve" msgstr "Réitigh" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, kde-format msgid "KGet is now closing, as all downloads have completed." msgstr "Tá KGet á dhúnadh anois toisc go bhfuil gach íosluchtú críochnaithe." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "" "Múchfaidh an ríomhaire anois toisc go bhfuil gach íosluchtú críochnaithe." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgctxt "Shutting down computer" msgid "Shutdown" msgstr "Múchadh" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "" "Cuirfear an ríomhaire ar fionraí ar an diosca anois toisc go bhfuil gach " "íosluchtú críochnaithe." -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "" "Cuirfear an ríomhaire ar fionraí i RAM anois toisc go bhfuil gach íosluchtú " "críochnaithe." -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgctxt "Suspending computer" msgid "Suspending" msgstr "" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, kde-format msgctxt "abort the proposed action" msgid "Abort" msgstr "Tobscoir" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "" -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, kde-format msgid "Downloads completed" msgstr "Íosluchtuithe curtha i gcrích" @@ -1697,25 +1697,21 @@ msgid "Decrease Priority" msgstr "Ísligh an Tosaíocht" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 -#, kde-format +#: mainwindow.cpp:204 +#, fuzzy, kde-format +#| msgid "Delete Group" +#| msgid_plural "Delete Groups" +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "Scrios Grúpa" -msgstr[1] "Scrios Grúpaí" -msgstr[2] "Scrios Grúpaí" -msgstr[3] "Scrios Grúpaí" -msgstr[4] "Scrios Grúpaí" +msgstr "Scrios Grúpa" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 -#, kde-format +#: mainwindow.cpp:210 +#, fuzzy, kde-format +#| msgid "Rename Group..." +#| msgid_plural "Rename Groups..." +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "Athainmnigh Grúpa..." -msgstr[1] "Athainmnigh Grúpaí..." -msgstr[2] "Athainmnigh Grúpaí..." -msgstr[3] "Athainmnigh Grúpaí..." -msgstr[4] "Athainmnigh Grúpaí..." +msgstr "Athainmnigh Grúpa..." #: mainwindow.cpp:215 #, kde-format @@ -2072,8 +2068,8 @@ msgid "Which files the chunk is located in" msgstr "" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2092,16 +2088,16 @@ msgid "Currently downloading:" msgstr "Á íosluchtú faoi láthair:" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, kde-format msgid "Downloaded:" msgstr "Íosluchtaithe:" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -2962,8 +2958,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3027,8 +3023,8 @@ msgid "New Script...." msgstr "Script Nua..." -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, kde-format @@ -3351,6 +3347,26 @@ msgid "Failed to write to the file." msgstr "Níorbh fhéidir scríobh sa chomhad." +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "Scrios Grúpa" +msgstr[1] "Scrios Grúpaí" +msgstr[2] "Scrios Grúpaí" +msgstr[3] "Scrios Grúpaí" +msgstr[4] "Scrios Grúpaí" + +#: ui/contextmenu.cpp:120 +#, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "Athainmnigh Grúpa..." +msgstr[1] "Athainmnigh Grúpaí..." +msgstr[2] "Athainmnigh Grúpaí..." +msgstr[3] "Athainmnigh Grúpaí..." +msgstr[4] "Athainmnigh Grúpaí..." + #: ui/droptarget.cpp:84 #, kde-format msgctxt "fix position for droptarget" @@ -3665,32 +3681,32 @@ msgstr "Oscail comhad" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, kde-format msgid "&File" msgstr "&Comhad" # "L" under Main -> Uirlisí #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, kde-format msgid "&Downloads" msgstr "Íos&luchtuithe" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "&Socruithe" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "&Cabhair" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "Príomhbharra Uirlisí" @@ -4069,8 +4085,8 @@ msgid "File size (in bytes):" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, kde-format msgid "Verification:" @@ -4621,18 +4637,18 @@ msgid "Remaining Time:" msgstr "Am Fágtha:" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, kde-format msgid "Transfer Settings for %1" msgstr "Socruithe Aistrithe le haghaidh %1" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." msgstr "" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "Destination unmodified" msgstr "" diff -Nru kget-20.12.3/po/gl/kgetplugin.po kget-21.04.0/po/gl/kgetplugin.po --- kget-20.12.3/po/gl/kgetplugin.po 2021-03-02 00:48:41.000000000 +0000 +++ kget-21.04.0/po/gl/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -16,7 +16,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2018-01-19 19:50+0100\n" "Last-Translator: Adrián Chaves (Gallaecio) \n" "Language-Team: Galician \n" @@ -56,19 +56,15 @@ msgid "No Links" msgstr "Sen enlaces" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "" -"Non se pode estabelecer ningunha comunicación co xestor de descargar KGet." - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "Erro de comunicación" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format msgid "&Tools" msgstr "&Ferramentas" + +#~ msgid "Unable to communicate with the KGet download manager." +#~ msgstr "" +#~ "Non se pode estabelecer ningunha comunicación co xestor de descargar KGet." + +#~ msgid "Communication Error" +#~ msgstr "Erro de comunicación" diff -Nru kget-20.12.3/po/gl/kget.po kget-21.04.0/po/gl/kget.po --- kget-20.12.3/po/gl/kget.po 2021-03-02 00:48:41.000000000 +0000 +++ kget-21.04.0/po/gl/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -17,7 +17,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" "PO-Revision-Date: 2019-07-13 12:48+0200\n" "Last-Translator: Adrián Chaves (Gallaecio) \n" "Language-Team: Galician \n" @@ -279,7 +279,7 @@ msgid " sec" msgstr "seg" -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "Non puido abrirse KWallet." @@ -326,7 +326,7 @@ msgid "The width of the columns in the history view" msgstr "A anchura das columnas na vista de historial" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "Complementos" @@ -461,8 +461,8 @@ msgstr "A máis forte (a máis lenta)" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -488,7 +488,7 @@ msgstr "Servidores de chaves:" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -562,27 +562,27 @@ "Engada máis servidores á configuración ou reinicie KGet e probe a volver " "descargar." -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "Está seguro de que quere retirar o grupo chamado %1?" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, kde-format msgid "Remove Group" msgstr "Retirar o grupo" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "Está seguro de que quere retirar os grupos seguintes?" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, kde-format msgid "Remove groups" msgstr "Retirar os grupos" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    A seguinte transferencia engadiuse á lista de descargas:

    %1

    " -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, kde-format msgid "Download added" msgstr "Engadiuse unha descarga" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "

    A seguinte transferencia engadiuse á lista de descargas:

    " -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "

    As seguintes transferencias engadíronse á lista de descargas:

    " -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "As miñas descargas" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" @@ -620,17 +620,17 @@ "O ficheiro %1 xa existe.\n" "Desexa substituílo?" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "Desexa substituír o ficheiro xa existente?" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "Non se pode gardar en: %1" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -645,34 +645,34 @@ "

    Os seguintes enderezos URL non poden descargarse, KGet non é compatíbel " "cos seus protocolos:

    " -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "Non se admite este protocolo" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "Nova descarga" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "Insira o URL:" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "Escoller un directorio" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, kde-format msgctxt "@title:window" msgid "Save As" msgstr "Gardar como" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -681,7 +681,7 @@ "O URL está mal escrito:\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, kde-format msgid "" "Malformed URL, protocol missing:\n" @@ -690,7 +690,7 @@ "O URL está mal escrito; falta o protocolo:\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -705,12 +705,12 @@ "\n" "Descárgase igual?" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, kde-format msgid "Download it again?" msgstr "Descargar de novo?" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -725,17 +725,17 @@ "\n" "Elimínase e descárgase de novo?" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, kde-format msgid "Delete it and download again?" msgstr "Eliminar e descargar de novo?" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "O directorio non permite escritura" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -746,39 +746,39 @@ "\n" "Quere descargar e eliminar o anterior?" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, kde-format msgid "File already downloaded. Download anyway?" msgstr "Xa se descargou este ficheiro. Descárgase igual?" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "Xa está a descargar o mesmo ficheiro" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, kde-format msgid "File already exists" msgstr "Xa existe este ficheiro" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "Estabeleceuse unha conexión de rede, retomando as transferencias." -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "Non se dispón dunha conexión á rede, detendo as transferencias." -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "O cargador de complementos non puido cargar: %1." -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -789,7 +789,7 @@ "%1\n" "xa que é un directorio." -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -800,7 +800,7 @@ "%1\n" "xa que non é un ficheiro local." -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    Rematou a descarga do seguinte ficheiro:

    %1

    " -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, kde-format msgid "Download completed" msgstr "Descarga completa" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    Iniciouse a seguinte transferencia:

    %1" -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, kde-format msgid "Download started" msgstr "Iniciouse unha descarga" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    %1

    Esta é a mensaxe do erro:

    %2

    " -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, kde-format msgid "Resolve" msgstr "Solucionar" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, kde-format msgid "KGet is now closing, as all downloads have completed." msgstr "Todas as descargas acabaron así que KGet pechará agora mesmo." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "" "O computador apagarase agora mesmo xa que remataron todas as descargas." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgctxt "Shutting down computer" msgid "Shutdown" msgstr "Apagar" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "" "O computador suspenderase en disco, xa que se completaron todas as descargas." -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "Hibernando" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "" "O computador suspenderase en memoria, xa que se completaron todas as " "descargas." -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgctxt "Suspending computer" msgid "Suspending" msgstr "Suspendendo" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, kde-format msgctxt "abort the proposed action" msgid "Abort" msgstr "Interromper" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "

    Remataron todas as transferencias.

    " -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, kde-format msgid "Downloads completed" msgstr "Descargas completas" @@ -1760,19 +1760,21 @@ msgid "Decrease Priority" msgstr "Diminuír a prioridade" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 -#, kde-format +#: mainwindow.cpp:204 +#, fuzzy, kde-format +#| msgid "Delete Group" +#| msgid_plural "Delete Groups" +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "Eliminar o grupo" -msgstr[1] "Eliminar os grupos" +msgstr "Eliminar o grupo" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 -#, kde-format +#: mainwindow.cpp:210 +#, fuzzy, kde-format +#| msgid "Rename Group..." +#| msgid_plural "Rename Groups..." +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "Renomear o grupo…" -msgstr[1] "Renomear os grupos…" +msgstr "Renomear o grupo…" #: mainwindow.cpp:215 #, kde-format @@ -2105,8 +2107,8 @@ msgid "Which files the chunk is located in" msgstr "En que ficheiro está situado o fragmento" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2125,16 +2127,16 @@ msgid "Currently downloading:" msgstr "Descargando actualmente:" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, kde-format msgid "Downloaded:" msgstr "Descargado:" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -2998,8 +3000,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3063,8 +3065,8 @@ msgid "New Script...." msgstr "Novo script…" -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, kde-format @@ -3395,6 +3397,20 @@ msgid "Failed to write to the file." msgstr "Non se puido escribir no ficheiro." +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "Eliminar o grupo" +msgstr[1] "Eliminar os grupos" + +#: ui/contextmenu.cpp:120 +#, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "Renomear o grupo…" +msgstr[1] "Renomear os grupos…" + #: ui/droptarget.cpp:84 #, kde-format msgctxt "fix position for droptarget" @@ -3705,31 +3721,31 @@ msgstr "Abrir ficheiro" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, kde-format msgid "&File" msgstr "&Ficheiro" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, kde-format msgid "&Downloads" msgstr "&Descargas" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "&Configuración" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "&Axuda" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "Barra de ferramentas principal" @@ -4110,8 +4126,8 @@ msgid "File size (in bytes):" msgstr "Tamaño do ficheiro (en bytes):" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, kde-format msgid "Verification:" @@ -4675,18 +4691,18 @@ msgid "Remaining Time:" msgstr "Tempo restante:" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, kde-format msgid "Transfer Settings for %1" msgstr "Configuración de transferencia de %1" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." msgstr "Non funcionou cambiar o destino; o destino queda sen modificar." -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "Destination unmodified" msgstr "O destino queda sen modificar" diff -Nru kget-20.12.3/po/he/kgetplugin.po kget-21.04.0/po/he/kgetplugin.po --- kget-20.12.3/po/he/kgetplugin.po 2021-03-02 00:48:41.000000000 +0000 +++ kget-21.04.0/po/he/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -18,7 +18,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2006-02-16 23:35+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -61,16 +61,6 @@ msgid "No Links" msgstr "אין קישורים" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "" - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format diff -Nru kget-20.12.3/po/he/kget.po kget-21.04.0/po/he/kget.po --- kget-20.12.3/po/he/kget.po 2021-03-02 00:48:41.000000000 +0000 +++ kget-21.04.0/po/he/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -18,7 +18,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" "PO-Revision-Date: 2006-02-16 23:35+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -290,7 +290,7 @@ msgid " sec" msgstr "" -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, fuzzy, kde-format #| msgid "" #| "Could not open file for writing:\n" @@ -343,7 +343,7 @@ msgid "The width of the columns in the history view" msgstr "" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "" @@ -481,8 +481,8 @@ msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -510,7 +510,7 @@ msgstr "מהירות" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -579,54 +579,54 @@ "settings or restart KGet and retry downloading." msgstr "" -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, fuzzy, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "האם אתה בטוח שברצונך למחוק העברה זו?" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, fuzzy, kde-format msgid "Remove Group" msgstr "תיקיית ברירת מחדל" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, fuzzy, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "האם אתה בטוח שברצונך למחוק העברה זו?" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, fuzzy, kde-format msgid "Remove groups" msgstr "תיקיית ברירת מחדל" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    %1

    " msgstr "" -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, fuzzy, kde-format msgid "Download added" msgstr "ההורדה חודשה" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "" -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "" -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, fuzzy, kde-format msgid "My Downloads" msgstr "ההורדה חודשה" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, fuzzy, kde-format msgid "" "The file %1 already exists.\n" @@ -637,17 +637,17 @@ "כבר קיים.\n" "האם ברצונך לכתוב עליו?" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -658,34 +658,34 @@ msgstr[0] "" msgstr[1] "" -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, fuzzy, kde-format msgid "New Download" msgstr "הורד שוב" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, kde-format msgctxt "@title:window" msgid "Save As" msgstr "" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -694,7 +694,7 @@ "כתובת שגויה:\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, fuzzy, kde-format #| msgid "" #| "Malformed URL:\n" @@ -706,7 +706,7 @@ "כתובת שגויה:\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -716,12 +716,12 @@ "Download it again?" msgstr "" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, fuzzy, kde-format msgid "Download it again?" msgstr "הורד שוב" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -731,17 +731,17 @@ "Delete it and download again?" msgstr "" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, fuzzy, kde-format msgid "Delete it and download again?" msgstr "הורד שוב" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -749,7 +749,7 @@ "Download and delete the previous one?" msgstr "" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, fuzzy, kde-format msgid "File already downloaded. Download anyway?" msgstr "" @@ -757,12 +757,12 @@ "%1\n" "האם להורידה שוב?" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, fuzzy, kde-format @@ -770,22 +770,22 @@ msgid "File already exists" msgstr "הקובץ כבר קיים" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "" -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "" -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "" -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -796,7 +796,7 @@ "%1\n" "כיוון שזו תיקייה." -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -807,32 +807,32 @@ "%1\n" "כיוון שזה לא קובץ מקומי." -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    %1

    " msgstr "" -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, fuzzy, kde-format #| msgid "Download finished" msgid "Download completed" msgstr "ההורדה הושלמה" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    %1

    " msgstr "" -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, fuzzy, kde-format msgid "Download started" msgstr "ההורדה חודשה" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    %2

    " msgstr "" -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, fuzzy, kde-format #| msgid "Open Transfer" msgid "Resolve" msgstr "פתח העברה" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, fuzzy, kde-format #| msgid "All the downloads are finished." msgid "KGet is now closing, as all downloads have completed." msgstr "כל ההורדות הסתיימו." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, fuzzy, kde-format #| msgid "All the downloads are finished." msgid "The computer will now turn off, as all downloads have completed." msgstr "כל ההורדות הסתיימו." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, fuzzy, kde-format msgctxt "Shutting down computer" msgid "Shutdown" msgstr "כיבוי אוטומטי מופעל." -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, fuzzy, kde-format #| msgid "All the downloads are finished." msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "כל ההורדות הסתיימו." -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, fuzzy, kde-format #| msgid "All the downloads are finished." msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "כל ההורדות הסתיימו." -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, fuzzy, kde-format #| msgid "Scheduling" msgctxt "Suspending computer" msgid "Suspending" msgstr "מתזמן" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, fuzzy, kde-format #| msgid "Font:" msgctxt "abort the proposed action" msgid "Abort" msgstr "גופן:" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "" -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, fuzzy, kde-format #| msgid "Download finished" msgid "Downloads completed" @@ -1794,19 +1794,17 @@ msgid "Decrease Priority" msgstr "גופן:" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 -#, kde-format +#: mainwindow.cpp:204 +#, fuzzy, kde-format +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "" -msgstr[1] "" +msgstr "תיקיית ברירת מחדל" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 +#: mainwindow.cpp:210 #, fuzzy, kde-format +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "תיקיית ברירת מחדל" -msgstr[1] "תיקיית ברירת מחדל" +msgstr "תיקיית ברירת מחדל" #: mainwindow.cpp:215 #, kde-format @@ -2153,8 +2151,8 @@ msgid "Which files the chunk is located in" msgstr "" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2174,16 +2172,16 @@ msgid "Currently downloading:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, fuzzy, kde-format msgid "Downloaded:" msgstr "ההורדה חודשה" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -3057,8 +3055,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3123,8 +3121,8 @@ msgid "New Script...." msgstr "" -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, fuzzy, kde-format @@ -3469,6 +3467,20 @@ "אין אפשרות לכתוב אל הקובץ:\n" "%1" +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "" +msgstr[1] "" + +#: ui/contextmenu.cpp:120 +#, fuzzy, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "תיקיית ברירת מחדל" +msgstr[1] "תיקיית ברירת מחדל" + #: ui/droptarget.cpp:84 #, fuzzy, kde-format #| msgid "Sticky" @@ -3796,31 +3808,31 @@ msgstr "פתח &קובץ" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, fuzzy, kde-format msgid "&File" msgstr "פתח &קובץ" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, fuzzy, kde-format msgid "&Downloads" msgstr "ההורדה חודשה" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "" @@ -4211,8 +4223,8 @@ msgid "File size (in bytes):" msgstr "הגודל הכולל עומד על %1 בתים" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, fuzzy, kde-format #| msgid "Description" @@ -4780,19 +4792,19 @@ msgid "Remaining Time:" msgstr "זמן נותר" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, fuzzy, kde-format #| msgid "Default folder:" msgid "Transfer Settings for %1" msgstr "תיקיית ברירת מחדל:" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." msgstr "" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, fuzzy, kde-format #| msgid "Destination:" msgid "Destination unmodified" @@ -5723,10 +5735,6 @@ #~ msgstr "מתקדם" #, fuzzy -#~ msgid "Delete Group." -#~ msgstr "תיקיית ברירת מחדל" - -#, fuzzy #~ msgid "Hide Me" #~ msgstr "שם קובץ" diff -Nru kget-20.12.3/po/hi/kgetplugin.po kget-21.04.0/po/hi/kgetplugin.po --- kget-20.12.3/po/hi/kgetplugin.po 2021-03-02 00:48:41.000000000 +0000 +++ kget-21.04.0/po/hi/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2008-01-09 17:04+0530\n" "Last-Translator: Ravishankar Shrivastava \n" "Language-Team: Hindi \n" @@ -51,16 +51,6 @@ msgid "No Links" msgstr "चयनित बन्द करें" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "" - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format diff -Nru kget-20.12.3/po/hi/kget.po kget-21.04.0/po/hi/kget.po --- kget-20.12.3/po/hi/kget.po 2021-03-02 00:48:41.000000000 +0000 +++ kget-21.04.0/po/hi/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" "PO-Revision-Date: 2008-01-09 17:04+0530\n" "Last-Translator: Ravishankar Shrivastava \n" "Language-Team: Hindi \n" @@ -281,7 +281,7 @@ msgid " sec" msgstr "" -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "" @@ -329,7 +329,7 @@ msgid "The width of the columns in the history view" msgstr "" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "प्लगइन्स" @@ -468,8 +468,8 @@ msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -495,7 +495,7 @@ msgstr "गति" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -565,7 +565,7 @@ "settings or restart KGet and retry downloading." msgstr "" -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, fuzzy, kde-format #| msgid "" #| "Are you sure that you want to remove\n" @@ -575,13 +575,13 @@ "क्या आप सचमुच समूह नाम %1 \n" "को मिटाना चाहते हैं?" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, fuzzy, kde-format #| msgid "Rename Group" msgid "Remove Group" msgstr "समूह को नया नाम दें" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, fuzzy, kde-format #| msgid "" #| "Are you sure that you want to remove\n" @@ -591,40 +591,40 @@ "क्या आप सचमुच समूह नाम %1 \n" "को मिटाना चाहते हैं?" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, fuzzy, kde-format #| msgid "Rename Group" msgid "Remove groups" msgstr "समूह को नया नाम दें" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    %1

    " msgstr "" -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, fuzzy, kde-format msgid "Download added" msgstr "डाउनलोड्स" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "" -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "" -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "मेरे डाउनलोड्स" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" @@ -633,17 +633,17 @@ "एक फ़ाइल %1 पहले से ही मौज़ूद है\n" " मिटाकर लिखें?" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "मौज़ूदा फ़ाइल मिटाकर लिखें?" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "%1 पर सहेजा नहीं जा सकता." -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -654,34 +654,34 @@ msgstr[0] "" msgstr[1] "" -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "नया डाउनलोड" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "यूआरएल भरें:" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, kde-format msgctxt "@title:window" msgid "Save As" msgstr "" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -690,7 +690,7 @@ "गलत रूप में यूआरएल:\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, fuzzy, kde-format #| msgid "" #| "Malformed URL:\n" @@ -702,7 +702,7 @@ "गलत रूप में यूआरएल:\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -712,13 +712,13 @@ "Download it again?" msgstr "" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, fuzzy, kde-format #| msgid "Download URL again?" msgid "Download it again?" msgstr "यूआरएल फिर से डाउनलोड करें?" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -728,18 +728,18 @@ "Delete it and download again?" msgstr "" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, fuzzy, kde-format #| msgid "Download URL again?" msgid "Delete it and download again?" msgstr "यूआरएल फिर से डाउनलोड करें?" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -747,7 +747,7 @@ "Download and delete the previous one?" msgstr "" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, fuzzy, kde-format #| msgid "" #| "URL already saved:\n" @@ -759,13 +759,13 @@ "%1\n" "फिर से डाउनलोड करें?" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, fuzzy, kde-format #| msgid "You can drag download links into the drop target." msgid "You are already downloading the same file" msgstr "आप डाउनलोड कड़ियों को ड्ऱॉप लक्ष्य में खींच कर ला सकते हैं." -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, fuzzy, kde-format @@ -777,24 +777,24 @@ "एक फ़ाइल %1 पहले से ही मौज़ूद है\n" " मिटाकर लिखें?" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "" -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "" -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, fuzzy, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "" "

    के-लिब-लोडर प्लगइन को लोड नहीं कर सका:
    %1

    त्रुटि संदेश:
    " "%2

    " -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -805,7 +805,7 @@ "%1\n" "चूंकि यह एक डिरेक्ट्री है." -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -816,31 +816,31 @@ "%1\n" "चूंकि यह स्थानीय फ़ाइल नहीं है." -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    %1

    " msgstr "" -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, fuzzy, kde-format msgid "Download completed" msgstr "डाउनलोड फ़ोल्डर" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    %1

    " msgstr "" -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, fuzzy, kde-format msgid "Download started" msgstr "डाउनलोड्स" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    %2

    " msgstr "" -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, fuzzy, kde-format msgid "Resolve" msgstr "ट्रांसफर का नाम बदलें" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, fuzzy, kde-format msgid "KGet is now closing, as all downloads have completed." msgstr "जब डाउनलोड पूर्ण हो तो बाहर हों." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, fuzzy, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "जब डाउनलोड पूर्ण हो तो बाहर हों." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, fuzzy, kde-format #| msgid "Auto shutdown" msgctxt "Shutting down computer" msgid "Shutdown" msgstr "स्वचलित बन्द" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, fuzzy, kde-format msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "जब डाउनलोड पूर्ण हो तो बाहर हों." -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, fuzzy, kde-format msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "जब डाउनलोड पूर्ण हो तो बाहर हों." -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, fuzzy, kde-format msgctxt "Suspending computer" msgid "Suspending" msgstr "गति" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, kde-format msgctxt "abort the proposed action" msgid "Abort" msgstr "" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "" -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, fuzzy, kde-format msgid "Downloads completed" msgstr "डाउनलोड फ़ोल्डर" @@ -1788,21 +1788,19 @@ msgid "Decrease Priority" msgstr "" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 +#: mainwindow.cpp:204 #, fuzzy, kde-format #| msgid "Delete Group" +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "समूह मिटाएँ" -msgstr[1] "समूह मिटाएँ" +msgstr "समूह मिटाएँ" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 +#: mainwindow.cpp:210 #, fuzzy, kde-format #| msgid "Rename Group" +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "समूह को नया नाम दें" -msgstr[1] "समूह को नया नाम दें" +msgstr "समूह को नया नाम दें" #: mainwindow.cpp:215 #, kde-format @@ -2143,8 +2141,8 @@ msgid "Which files the chunk is located in" msgstr "" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2163,16 +2161,16 @@ msgid "Currently downloading:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, fuzzy, kde-format msgid "Downloaded:" msgstr "डाउनलोड्स" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -3018,8 +3016,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3084,8 +3082,8 @@ msgid "New Script...." msgstr "" -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, fuzzy, kde-format @@ -3416,6 +3414,22 @@ msgid "Failed to write to the file." msgstr "%1 पर सहेजा नहीं जा सकता." +#: ui/contextmenu.cpp:116 +#, fuzzy, kde-format +#| msgid "Delete Group" +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "समूह मिटाएँ" +msgstr[1] "समूह मिटाएँ" + +#: ui/contextmenu.cpp:120 +#, fuzzy, kde-format +#| msgid "Rename Group" +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "समूह को नया नाम दें" +msgstr[1] "समूह को नया नाम दें" + #: ui/droptarget.cpp:84 #, fuzzy, kde-format msgctxt "fix position for droptarget" @@ -3734,31 +3748,31 @@ msgstr "फ़ाइल खोलें" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, kde-format msgid "&File" msgstr "फ़ाइल (&F)" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, kde-format msgid "&Downloads" msgstr "डाउनलोड (&D)" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "विन्यास (&S)" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "मदद (&H)" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "मुख्य औज़ार पट्टी" @@ -4144,8 +4158,8 @@ msgid "File size (in bytes):" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, fuzzy, kde-format msgid "Verification:" @@ -4709,19 +4723,19 @@ msgid "Remaining Time:" msgstr "" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, fuzzy, kde-format #| msgid "Details for: %1" msgid "Transfer Settings for %1" msgstr "के लिए विवरण: %1" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." msgstr "" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, fuzzy, kde-format msgid "Destination unmodified" msgstr "गंतव्य खोलें" diff -Nru kget-20.12.3/po/hr/kgetplugin.po kget-21.04.0/po/hr/kgetplugin.po --- kget-20.12.3/po/hr/kgetplugin.po 2021-03-02 00:48:41.000000000 +0000 +++ kget-21.04.0/po/hr/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kget 0\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2010-05-26 11:56+0200\n" "Last-Translator: Marko Dimjasevic \n" "Language-Team: Croatian \n" @@ -51,22 +51,15 @@ msgid "No Links" msgstr "Nema veza" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "Neuspjela komunikacija s Kgetom, upraviteljem preuzimanja." - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format msgid "&Tools" msgstr "" +#~ msgid "Unable to communicate with the KGet download manager." +#~ msgstr "Neuspjela komunikacija s Kgetom, upraviteljem preuzimanja." + #, fuzzy #~ msgid "New Group" #~ msgstr "Uobičajeni direktorij" diff -Nru kget-20.12.3/po/hr/kget.po kget-21.04.0/po/hr/kget.po --- kget-20.12.3/po/hr/kget.po 2021-03-02 00:48:41.000000000 +0000 +++ kget-21.04.0/po/hr/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kget 0\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" "PO-Revision-Date: 2010-05-26 11:56+0200\n" "Last-Translator: Marko Dimjasevic \n" "Language-Team: Croatian \n" @@ -280,7 +280,7 @@ msgid " sec" msgstr "" -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, fuzzy, kde-format #| msgid "" #| "Could not open file for writing:\n" @@ -333,7 +333,7 @@ msgid "The width of the columns in the history view" msgstr "" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "" @@ -471,8 +471,8 @@ msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -500,7 +500,7 @@ msgstr "Brzina" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -569,54 +569,54 @@ "settings or restart KGet and retry downloading." msgstr "" -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, fuzzy, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "Jeste li sigurni da želite obrisati ove prenose?" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, fuzzy, kde-format msgid "Remove Group" msgstr "Uobičajeni direktorij" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, fuzzy, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "Jeste li sigurni da želite obrisati ove prenose?" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, fuzzy, kde-format msgid "Remove groups" msgstr "Uobičajeni direktorij" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    %1

    " msgstr "" -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, fuzzy, kde-format msgid "Download added" msgstr "Preuzimanje je nastavljeno" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "" -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "" -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, fuzzy, kde-format msgid "My Downloads" msgstr "Preuzimanje je nastavljeno" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, fuzzy, kde-format msgid "" "The file %1 already exists.\n" @@ -627,17 +627,17 @@ "već postoji.\n" "Želite li da ga prebrišete?" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -649,34 +649,34 @@ msgstr[1] "" msgstr[2] "" -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "Novo preuzimanje" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, kde-format msgctxt "@title:window" msgid "Save As" msgstr "" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, fuzzy, kde-format msgid "" "Malformed URL:\n" @@ -685,7 +685,7 @@ "Pogrešno formiran URL:\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, fuzzy, kde-format msgid "" "Malformed URL, protocol missing:\n" @@ -694,7 +694,7 @@ "Pogrešno formiran URL:\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -704,12 +704,12 @@ "Download it again?" msgstr "" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, kde-format msgid "Download it again?" msgstr "Preuzeti ponovno?" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -719,17 +719,17 @@ "Delete it and download again?" msgstr "" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, kde-format msgid "Delete it and download again?" msgstr "Izbrisati i ponovno preuzeti?" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -737,7 +737,7 @@ "Download and delete the previous one?" msgstr "" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, fuzzy, kde-format msgid "File already downloaded. Download anyway?" msgstr "" @@ -745,12 +745,12 @@ "%1\n" "Da ga preuzmem ponovo?" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, fuzzy, kde-format @@ -761,22 +761,22 @@ "već postoji.\n" "Želite li da ga prebrišete?" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "" -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "" -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "" -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, fuzzy, kde-format msgid "" "Not deleting\n" @@ -787,7 +787,7 @@ "%1\n" "zato jer je to direktorij." -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -798,31 +798,31 @@ "%1\n" "zato jer je to nije lokalni datoteka." -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    %1

    " msgstr "" -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, fuzzy, kde-format msgid "Download completed" msgstr "Preuzimanje je završeno" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    %1

    " msgstr "" -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, fuzzy, kde-format msgid "Download started" msgstr "Preuzimanje je nastavljeno" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    %2

    " msgstr "" -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, fuzzy, kde-format msgid "Resolve" msgstr "Otvori prenos" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, fuzzy, kde-format msgid "KGet is now closing, as all downloads have completed." msgstr "Preuzimanje je završeno" -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, fuzzy, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "Preuzimanje je završeno" -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, fuzzy, kde-format msgctxt "Shutting down computer" msgid "Shutdown" msgstr "Automatsko gašenje računala je uključeno." -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, fuzzy, kde-format msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "Preuzimanje je završeno" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, fuzzy, kde-format msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "Preuzimanje je završeno" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, fuzzy, kde-format #| msgid "Scheduling" msgctxt "Suspending computer" msgid "Suspending" msgstr "Raspored" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, fuzzy, kde-format #| msgid "Font:" msgctxt "abort the proposed action" msgid "Abort" msgstr "Pismo:" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "" -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, fuzzy, kde-format msgid "Downloads completed" msgstr "Preuzimanje je završeno" @@ -1744,21 +1744,17 @@ msgid "Decrease Priority" msgstr "Pismo:" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 -#, kde-format +#: mainwindow.cpp:204 +#, fuzzy, kde-format +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr "Uobičajeni direktorij" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 +#: mainwindow.cpp:210 #, fuzzy, kde-format +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "Uobičajeni direktorij" -msgstr[1] "Uobičajeni direktorij" -msgstr[2] "Uobičajeni direktorij" +msgstr "Uobičajeni direktorij" #: mainwindow.cpp:215 #, kde-format @@ -2098,8 +2094,8 @@ msgid "Which files the chunk is located in" msgstr "" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2119,16 +2115,16 @@ msgid "Currently downloading:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, fuzzy, kde-format msgid "Downloaded:" msgstr "Preuzimanje je nastavljeno" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -2988,8 +2984,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3054,8 +3050,8 @@ msgid "New Script...." msgstr "" -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, fuzzy, kde-format @@ -3392,6 +3388,22 @@ "Ne mogu pisati u datoteku:\n" "%1" +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ui/contextmenu.cpp:120 +#, fuzzy, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "Uobičajeni direktorij" +msgstr[1] "Uobičajeni direktorij" +msgstr[2] "Uobičajeni direktorij" + #: ui/droptarget.cpp:84 #, fuzzy, kde-format #| msgid "Sticky" @@ -3709,31 +3721,31 @@ msgstr "Otvori &datoteku" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, fuzzy, kde-format msgid "&File" msgstr "Otvori &datoteku" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, fuzzy, kde-format msgid "&Downloads" msgstr "Preuzimanje je nastavljeno" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "" @@ -4119,8 +4131,8 @@ msgid "File size (in bytes):" msgstr "Ukupna veličina je %1 bajtova" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, fuzzy, kde-format #| msgid "Description" @@ -4681,18 +4693,18 @@ msgid "Remaining Time:" msgstr "Preostalo vrijeme" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, fuzzy, kde-format msgid "Transfer Settings for %1" msgstr "Uobičajeni direktorij" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." msgstr "" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "Destination unmodified" msgstr "Odredište nije promijenjeno" @@ -5539,10 +5551,6 @@ #~ msgstr "&Napredno" #, fuzzy -#~ msgid "Delete Group." -#~ msgstr "Uobičajeni direktorij" - -#, fuzzy #~ msgid "Hide Me" #~ msgstr "Ime datoteke" diff -Nru kget-20.12.3/po/hu/kgetplugin.po kget-21.04.0/po/hu/kgetplugin.po --- kget-20.12.3/po/hu/kgetplugin.po 2021-03-02 00:48:41.000000000 +0000 +++ kget-21.04.0/po/hu/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: KDE 4.3\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2012-01-22 15:23+0100\n" "Last-Translator: Kristóf Kiszel \n" "Language-Team: Hungarian \n" @@ -46,22 +46,18 @@ msgid "No Links" msgstr "Nincs link" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "Nem lehet kommunikálni a KGet letöltéskezelővel." - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "Kommunikációs hiba" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format msgid "&Tools" msgstr "&Eszközök" +#~ msgid "Unable to communicate with the KGet download manager." +#~ msgstr "Nem lehet kommunikálni a KGet letöltéskezelővel." + +#~ msgid "Communication Error" +#~ msgstr "Kommunikációs hiba" + #~ msgid "Plugins" #~ msgstr "Bővítmények" diff -Nru kget-20.12.3/po/hu/kget.po kget-21.04.0/po/hu/kget.po --- kget-20.12.3/po/hu/kget.po 2021-03-02 00:48:41.000000000 +0000 +++ kget-21.04.0/po/hu/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: KDE 4.3\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" "PO-Revision-Date: 2014-03-19 22:16+0100\n" "Last-Translator: Balázs Úr \n" "Language-Team: Hungarian \n" @@ -268,7 +268,7 @@ msgid " sec" msgstr " s" -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "A KWallet nem nyitható meg" @@ -315,7 +315,7 @@ msgid "The width of the columns in the history view" msgstr "Az előzmények nézetben az oszlopok szélessége" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "Bővítmények" @@ -450,8 +450,8 @@ msgstr "Legerősebb (leglassabb)" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -477,7 +477,7 @@ msgstr "Kulcskiszolgálók:" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -548,27 +548,27 @@ "további kiszolgálókat a beállításokhoz vagy indítsa újra a KGetet és " "kísérelje meg újból a letöltést." -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "Biztosan törölni szeretné ezt a csoportot: %1?" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, kde-format msgid "Remove Group" msgstr "Csoport törlése" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "Biztosan törölni szeretné a következő csoportokat?" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, kde-format msgid "Remove groups" msgstr "Csoportok törlése" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    A következő átvitel lett hozzáadva a letöltési listához:

    %1

    " -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, kde-format msgid "Download added" msgstr "Letöltés hozzáadva" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "

    A következő átvitel lett hozzáadva a letöltési listához:

    " -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "

    A következő átvitelek lettek hozzáadva a letöltési listához:

    " -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "Letöltések" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" @@ -606,17 +606,17 @@ "Már létezik %1 nevű fájl.\n" "Felül szeretné írni?" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "Felülírást választ?" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "Nem sikerült menteni ide: %1" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -630,35 +630,35 @@ "

    A következő URL-ek nem tölthetők le, a KGet nem támogatja a " "protokolljukat:

    " -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "A protokoll nem támogatott" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "Új letöltés" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "Cím:" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, fuzzy, kde-format #| msgid "Save As" msgctxt "@title:window" msgid "Save As" msgstr "Mentés másként" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -667,7 +667,7 @@ "Hibás URL:\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, kde-format msgid "" "Malformed URL, protocol missing:\n" @@ -676,7 +676,7 @@ "Hibás URL, a protokoll nincs megadva:\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -690,12 +690,12 @@ "%1\n" "Letölti újból?" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, kde-format msgid "Download it again?" msgstr "Letöltés újból" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -709,17 +709,17 @@ "%1\n" "Törli, és letölti újból?" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, kde-format msgid "Delete it and download again?" msgstr "Törlés és letöltés újból" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "A könyvtárban nem lehet írni" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -730,39 +730,39 @@ "\n" "Letölti, és törli az előzőt?" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, kde-format msgid "File already downloaded. Download anyway?" msgstr "A fájl már letöltve. Letölti mindenképp?" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "A fájl letöltése már folyamatban van" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, kde-format msgid "File already exists" msgstr "A fájl már létezik" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "Az internetkapcsolat létrejött, átvitelek folytatása." -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "Nincs internetkapcsolat, átvitelek leállítása." -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "A bővítménykezelő nem tudta betölteni ezt a bővítményt: %1." -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -773,7 +773,7 @@ "nem lesz törölve,\n" "mert mappa." -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -784,7 +784,7 @@ "nem lesz törölve,\n" "mert nem helyi fájl." -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    A következő fájl letöltése befejeződött:

    %1

    " -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, kde-format msgid "Download completed" msgstr "Letöltve" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    A következő átvitel lett elindítva:

    %1" -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, kde-format msgid "Download started" msgstr "Letöltés elindítva" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    Hiba történt a következő átvitelben:

    " "%1

    A hibaüzenet:

    %2

    " -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, kde-format msgid "Resolve" msgstr "Feloldás" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, kde-format msgid "KGet is now closing, as all downloads have completed." msgstr "Minden letöltés befejeződött, ezért a program kilép." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "Minden letöltés befejeződött, ezért a számítógép leáll." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgctxt "Shutting down computer" msgid "Shutdown" msgstr "Leállítás" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "Minden letöltés befejeződött, ezért a számítógép hibernál." -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "Hibernálás" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "Minden letöltés befejeződött, ezért a számítógép felfüggeszt." -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgctxt "Suspending computer" msgid "Suspending" msgstr "Felfüggesztés" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, kde-format msgctxt "abort the proposed action" msgid "Abort" msgstr "Megszakítás" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "

    Minden fájlátvitel befejeződött.

    " -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, kde-format msgid "Downloads completed" msgstr "A letöltések befejeződtek" @@ -1745,19 +1745,21 @@ msgid "Decrease Priority" msgstr "Prioritás csökkentése" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 -#, kde-format +#: mainwindow.cpp:204 +#, fuzzy, kde-format +#| msgid "Delete Group" +#| msgid_plural "Delete Groups" +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "Csoport törlése" -msgstr[1] "Csoportok törlése" +msgstr "Csoport törlése" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 -#, kde-format +#: mainwindow.cpp:210 +#, fuzzy, kde-format +#| msgid "Rename Group..." +#| msgid_plural "Rename Groups..." +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "Csoport átnevezése…" -msgstr[1] "Csoportok átnevezése…" +msgstr "Csoport átnevezése…" #: mainwindow.cpp:215 #, kde-format @@ -2089,8 +2091,8 @@ msgid "Which files the chunk is located in" msgstr "Fájlnevek" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2109,16 +2111,16 @@ msgid "Currently downloading:" msgstr "Letöltés alatt:" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, kde-format msgid "Downloaded:" msgstr "Letöltve:" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -2986,8 +2988,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3051,8 +3053,8 @@ msgid "New Script...." msgstr "Új szkript…" -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, kde-format @@ -3380,6 +3382,20 @@ msgid "Failed to write to the file." msgstr "Nem sikerült írni a fájlba." +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "Csoport törlése" +msgstr[1] "Csoportok törlése" + +#: ui/contextmenu.cpp:120 +#, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "Csoport átnevezése…" +msgstr[1] "Csoportok átnevezése…" + #: ui/droptarget.cpp:84 #, kde-format msgctxt "fix position for droptarget" @@ -3693,31 +3709,31 @@ msgstr "Fájl megnyitása" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, kde-format msgid "&File" msgstr "&Fájl" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, kde-format msgid "&Downloads" msgstr "&Letöltések" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "&Beállítások" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "&Súgó" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "Alap eszköztár" @@ -4101,8 +4117,8 @@ msgid "File size (in bytes):" msgstr "Fájlméret (bájtokban):" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, kde-format msgid "Verification:" @@ -4666,18 +4682,18 @@ msgid "Remaining Time:" msgstr "Hátralévő idő:" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, kde-format msgid "Transfer Settings for %1" msgstr "Letöltési jellemzők: %1" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." msgstr "A cél módosítása nem sikerült, a cél nem módosult." -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "Destination unmodified" msgstr "Cél nincs módosítva" diff -Nru kget-20.12.3/po/ia/kgetplugin.po kget-21.04.0/po/ia/kgetplugin.po --- kget-20.12.3/po/ia/kgetplugin.po 2021-03-02 00:48:41.000000000 +0000 +++ kget-21.04.0/po/ia/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2011-01-27 14:05+0100\n" "Last-Translator: g.sora \n" "Language-Team: Interlingua \n" @@ -47,22 +47,18 @@ msgid "No Links" msgstr "Nulle ligamines" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "Incapace de communicar con gerente de discargamento de KGet." - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "Error de communication" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format msgid "&Tools" msgstr "Ins&trumentos" +#~ msgid "Unable to communicate with the KGet download manager." +#~ msgstr "Incapace de communicar con gerente de discargamento de KGet." + +#~ msgid "Communication Error" +#~ msgstr "Error de communication" + #~ msgid "Plugins" #~ msgstr "Plugins" diff -Nru kget-20.12.3/po/ia/kget.po kget-21.04.0/po/ia/kget.po --- kget-20.12.3/po/ia/kget.po 2021-03-02 00:48:41.000000000 +0000 +++ kget-21.04.0/po/ia/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -1,13 +1,13 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. # -# g.sora , 2011, 2012, 2013, 2014, 2017, 2018, 2020. +# g.sora , 2011, 2012, 2013, 2014, 2017, 2018, 2020, 2021. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" -"PO-Revision-Date: 2020-09-20 22:58+0100\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" +"PO-Revision-Date: 2021-03-18 23:27+0100\n" "Last-Translator: Giovanni Sora \n" "Language-Team: Interlingua \n" "Language: ia\n" @@ -268,7 +268,7 @@ msgid " sec" msgstr "sec" -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "Il non pote aperir KWallet" @@ -315,7 +315,7 @@ msgid "The width of the columns in the history view" msgstr "Le largessa del columnas in le vista de historia" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "Plugins" @@ -450,8 +450,8 @@ msgstr "Plus forte (le plus lente)" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -477,7 +477,7 @@ msgstr "Servitores de claves:" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -551,27 +551,27 @@ "Nulle utile servitor de clave trovate, clave non discargate. Adde altere " "servitores al preferentias o re-initia KGet e tenta discargar de nove." -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "Tu es secur que tu vole remover le gruppo nominate %1?" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, kde-format msgid "Remove Group" msgstr "Remove gruppo" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "Tu es secur que tu vole remover le gruppos sequente?" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, kde-format msgid "Remove groups" msgstr "Remove gruppos" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    Le sequente transferimento ha essite addite al lista de discargamento:

    %1

    " -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, kde-format msgid "Download added" msgstr "Discargamento addite" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "" "

    Le sequente transferimento ha essite addite al lista de discargamento:

    " -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "" "

    Le sequente transferimentos ha essite addite al lista de discargamento:" -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "Mi discargamentos" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" @@ -612,17 +612,17 @@ "Le file'%1 ja existe\n" "Tu vole super scriber lo?" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "Super scribe le file existente?" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "Inhabile a salveguardar a: %1" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -637,34 +637,34 @@ "

    Le sequente URLs non pote esser discargate, lor protocollos non es " "supportate per KGet:

    " -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "Protocollo non supportate" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "Nove discargamento" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "Entra un URL:" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "Selige directorio" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, kde-format msgctxt "@title:window" msgid "Save As" msgstr "Salveguarda como" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -673,7 +673,7 @@ "URL mal formate\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, kde-format msgid "" "Malformed URL, protocol missing:\n" @@ -682,7 +682,7 @@ "URL mal formate, protocollo mancante\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -697,12 +697,12 @@ "\n" "Tu discarga de nove?" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, kde-format msgid "Download it again?" msgstr "Discarga de nove?" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -717,17 +717,17 @@ "\n" "Tu dele e discarga de nove?" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, kde-format msgid "Delete it and download again?" msgstr "Dele lo e discarga de nove?" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "Directorio non es scribebile" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -738,39 +738,39 @@ "\n" "Discarga e dele le precedente?" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, kde-format msgid "File already downloaded. Download anyway?" msgstr "File ja discargate. Tu discarga lo malgrado toto?" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "Tu es discargante le mesme file" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, kde-format msgid "File already exists" msgstr "File Jam Existe" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "Connexion de internet stabilite recuperante transferentias." -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "Nulle connexion internet, stoppante transferentias." -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "Cargator de Plug-in non pote cargar plug-in: %1." -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -781,7 +781,7 @@ "%1\n" "proque il es un directorio." -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -792,7 +792,7 @@ "%1\n" "proque il non es un file local." -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    le sequente file ha terminate de discargar:

    %1

    " -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, kde-format msgid "Download completed" msgstr "Discargamento completate" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    Le sequente transferimento ha essite initiate:

    %1

    " -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, kde-format msgid "Download started" msgstr "Discargamento initiate" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    %1

    Le message de error es:

    %2

    " -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, kde-format msgid "Resolve" msgstr "Resolve" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, kde-format msgid "KGet is now closing, as all downloads have completed." msgstr "KGet es ora claudente, proque omne su discargamentos es completate." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "" "Le computator ora extinguera se, quando omne discargamentos ha completate." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgctxt "Shutting down computer" msgid "Shutdown" msgstr "Stoppa (Shutdown)" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "" "Le computator ora suspendera se a disco, quando omne discargamentos es " "completate." -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "Hibernante" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "" "Le computator ora suspendera se a RAM, quando omne discargamentos ha " "completate." -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgctxt "Suspending computer" msgid "Suspending" msgstr "Suspender" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, kde-format msgctxt "abort the proposed action" msgid "Abort" msgstr "Aborta" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "

    Omne transferentias ha essite terminate.

    " -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, kde-format msgid "Downloads completed" msgstr "Discargamentos completate" @@ -1757,19 +1757,17 @@ msgid "Decrease Priority" msgstr "Diminue prioritate" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 +#: mainwindow.cpp:204 #, kde-format +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "Dele gruppo" -msgstr[1] "Dele Gruppos" +msgstr "Dele gruppo" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 +#: mainwindow.cpp:210 #, kde-format +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "Renomina Gruppo ..." -msgstr[1] "Renomina gruppos..." +msgstr "Renomina Gruppo ..." #: mainwindow.cpp:215 #, kde-format @@ -2099,8 +2097,8 @@ msgid "Which files the chunk is located in" msgstr "In qual files le pecia es locate" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2119,16 +2117,16 @@ msgid "Currently downloading:" msgstr "Currentemente discargante:" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, kde-format msgid "Downloaded:" msgstr "Discargate:" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -2993,8 +2991,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3058,8 +3056,8 @@ msgid "New Script...." msgstr "Nove script...." -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, kde-format @@ -3391,6 +3389,20 @@ msgid "Failed to write to the file." msgstr "Il falleva a scriber al file." +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "Dele gruppo" +msgstr[1] "Dele Gruppos" + +#: ui/contextmenu.cpp:120 +#, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "Renomina Gruppo ..." +msgstr[1] "Renomina gruppos..." + #: ui/droptarget.cpp:84 #, kde-format msgctxt "fix position for droptarget" @@ -3701,31 +3713,31 @@ msgstr "Aperi file" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, kde-format msgid "&File" msgstr "&File" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, kde-format msgid "&Downloads" msgstr "&Discargamentos" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "Preferentia&s" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "&Adjuta" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "Barra de instrumento principal" @@ -4106,8 +4118,8 @@ msgid "File size (in bytes):" msgstr "Dimension de file (in bytes):" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, kde-format msgid "Verification:" @@ -4671,12 +4683,12 @@ msgid "Remaining Time:" msgstr "Tempore remanente:" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, kde-format msgid "Transfer Settings for %1" msgstr "Preferentias de transferimento per %1" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." @@ -4684,7 +4696,7 @@ "Modificar le destination non functionara, le destination remane non " "modificate." -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "Destination unmodified" msgstr "Destination non modificate" diff -Nru kget-20.12.3/po/id/kgetplugin.po kget-21.04.0/po/id/kgetplugin.po --- kget-20.12.3/po/id/kgetplugin.po 2021-03-02 00:48:41.000000000 +0000 +++ kget-21.04.0/po/id/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2019-08-06 19:55+0700\n" "Last-Translator: Wantoyo \n" "Language-Team: Indonesian \n" @@ -48,18 +48,14 @@ msgid "No Links" msgstr "Tidak ada link" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "Tidak dapat berkomunikasi dengan unduh manager KGet." - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "Komunikasi Error" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format msgid "&Tools" msgstr "Pera&latan" + +#~ msgid "Unable to communicate with the KGet download manager." +#~ msgstr "Tidak dapat berkomunikasi dengan unduh manager KGet." + +#~ msgid "Communication Error" +#~ msgstr "Komunikasi Error" diff -Nru kget-20.12.3/po/is/kgetplugin.po kget-21.04.0/po/is/kgetplugin.po --- kget-20.12.3/po/is/kgetplugin.po 2021-03-02 00:48:41.000000000 +0000 +++ kget-21.04.0/po/is/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2014-11-22 18:41+0000\n" "Last-Translator: Sveinn í Felli \n" "Language-Team: Icelandic \n" @@ -55,22 +55,18 @@ msgid "No Links" msgstr "Engir tenglar" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "Tókst ekki að tengjast KGet niðurhalsstjóranum." - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "Samskiptavilla" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format msgid "&Tools" msgstr "Verk&færi" +#~ msgid "Unable to communicate with the KGet download manager." +#~ msgstr "Tókst ekki að tengjast KGet niðurhalsstjóranum." + +#~ msgid "Communication Error" +#~ msgstr "Samskiptavilla" + #, fuzzy #~ msgid "Plugins" #~ msgstr "Íforrit" diff -Nru kget-20.12.3/po/is/kget.po kget-21.04.0/po/is/kget.po --- kget-20.12.3/po/is/kget.po 2021-03-02 00:48:41.000000000 +0000 +++ kget-21.04.0/po/is/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" "PO-Revision-Date: 2009-06-13 15:37+0000\n" "Last-Translator: Sveinn í Felli \n" "Language-Team: icelandic \n" @@ -284,7 +284,7 @@ msgid " sec" msgstr "sek" -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "" @@ -334,7 +334,7 @@ msgid "The width of the columns in the history view" msgstr "" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, fuzzy, kde-format msgid "Plugins" msgstr "Íforrit" @@ -472,8 +472,8 @@ msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -501,7 +501,7 @@ msgstr "Hraði" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -569,54 +569,54 @@ "settings or restart KGet and retry downloading." msgstr "" -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, fuzzy, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "Ertu viss um að þú viljir eyða þessum færslum?" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, fuzzy, kde-format msgid "Remove Group" msgstr "Sjálfgefin mappa" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, fuzzy, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "Ertu viss um að þú viljir eyða þessum færslum?" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, fuzzy, kde-format msgid "Remove groups" msgstr "Sjálfgefin mappa" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    %1

    " msgstr "" -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, fuzzy, kde-format msgid "Download added" msgstr "Niðurhali haldið áfram" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "" -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "" -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, fuzzy, kde-format msgid "My Downloads" msgstr "Niðurhali haldið áfram" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, fuzzy, kde-format msgid "" "The file %1 already exists.\n" @@ -627,17 +627,17 @@ "er þegar til.\n" "Viltu skrifa yfir hana?" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -648,34 +648,34 @@ msgstr[0] "" msgstr[1] "" -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, fuzzy, kde-format msgid "New Download" msgstr "Hlaða niður aftur" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, kde-format msgctxt "@title:window" msgid "Save As" msgstr "" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -684,7 +684,7 @@ "Gölluð slóð:\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, fuzzy, kde-format #| msgid "" #| "Malformed URL:\n" @@ -696,7 +696,7 @@ "Gölluð slóð:\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -706,12 +706,12 @@ "Download it again?" msgstr "" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, fuzzy, kde-format msgid "Download it again?" msgstr "Hlaða niður aftur" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -721,17 +721,17 @@ "Delete it and download again?" msgstr "" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, fuzzy, kde-format msgid "Delete it and download again?" msgstr "Hlaða niður aftur" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -739,7 +739,7 @@ "Download and delete the previous one?" msgstr "" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, fuzzy, kde-format msgid "File already downloaded. Download anyway?" msgstr "" @@ -747,12 +747,12 @@ "%1\n" "Sækja aftur?" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, fuzzy, kde-format @@ -763,22 +763,22 @@ "er þegar til.\n" "Viltu skrifa yfir hana?" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "" -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "" -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "" -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -789,7 +789,7 @@ "%1\n" "Þar sem það er mappa" -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -800,32 +800,32 @@ "%1\n" "þar sem hún er ekki staðbundin skrá." -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    %1

    " msgstr "" -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, fuzzy, kde-format #| msgid "Download finished" msgid "Download completed" msgstr "Niðurhali lokið" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    %1

    " msgstr "" -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, fuzzy, kde-format msgid "Download started" msgstr "Niðurhali haldið áfram" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    %2

    " msgstr "" -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, fuzzy, kde-format #| msgid "Open Transfer" msgid "Resolve" msgstr "Opna flutning" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, fuzzy, kde-format #| msgid "All the downloads are finished." msgid "KGet is now closing, as all downloads have completed." msgstr "Öllum niðurhölum lokið." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, fuzzy, kde-format #| msgid "All the downloads are finished." msgid "The computer will now turn off, as all downloads have completed." msgstr "Öllum niðurhölum lokið." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, fuzzy, kde-format msgctxt "Shutting down computer" msgid "Shutdown" msgstr "Slekkur sjálfvirkt." -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, fuzzy, kde-format #| msgid "All the downloads are finished." msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "Öllum niðurhölum lokið." -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, fuzzy, kde-format #| msgid "All the downloads are finished." msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "Öllum niðurhölum lokið." -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, fuzzy, kde-format msgctxt "Suspending computer" msgid "Suspending" msgstr "Í bið" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, fuzzy, kde-format msgctxt "abort the proposed action" msgid "Abort" msgstr "Hætt við" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "" -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, fuzzy, kde-format #| msgid "Download finished" msgid "Downloads completed" @@ -1781,19 +1781,17 @@ msgid "Decrease Priority" msgstr "Forgangur" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 -#, kde-format +#: mainwindow.cpp:204 +#, fuzzy, kde-format +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "" -msgstr[1] "" +msgstr "Engar skrár valdar" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 +#: mainwindow.cpp:210 #, fuzzy, kde-format +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "Sjálfgefin mappa" -msgstr[1] "Sjálfgefin mappa" +msgstr "Sjálfgefin mappa" #: mainwindow.cpp:215 #, fuzzy, kde-format @@ -2137,8 +2135,8 @@ msgid "Which files the chunk is located in" msgstr "Í hvaða skrám búturinn er staðsettur" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2158,16 +2156,16 @@ msgid "Currently downloading:" msgstr "Í niðurhali núna:" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, fuzzy, kde-format msgid "Downloaded:" msgstr "Niðurhali haldið áfram" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -3045,8 +3043,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3111,8 +3109,8 @@ msgid "New Script...." msgstr "" -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, fuzzy, kde-format @@ -3457,6 +3455,20 @@ "Gat ekki skrifað í skrá:\n" "%1" +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "" +msgstr[1] "" + +#: ui/contextmenu.cpp:120 +#, fuzzy, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "Sjálfgefin mappa" +msgstr[1] "Sjálfgefin mappa" + #: ui/droptarget.cpp:84 #, fuzzy, kde-format #| msgid "Sticky" @@ -3783,31 +3795,31 @@ msgstr "Opna &skrá" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, fuzzy, kde-format msgid "&File" msgstr "Opna &skrá" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, fuzzy, kde-format msgid "&Downloads" msgstr "Niðurhali haldið áfram" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, fuzzy, kde-format msgid "&Settings" msgstr "&Stillingar" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, fuzzy, kde-format msgid "&Help" msgstr "&Hjálp" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, fuzzy, kde-format msgid "Main Toolbar" msgstr "Aðaltækjaslá" @@ -4195,8 +4207,8 @@ msgid "File size (in bytes):" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, fuzzy, kde-format #| msgid "Description" @@ -4761,19 +4773,19 @@ msgid "Remaining Time:" msgstr "Tími eftir" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, fuzzy, kde-format #| msgid "Default folder:" msgid "Transfer Settings for %1" msgstr "Sjálfgefin mappa:" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." msgstr "" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, fuzzy, kde-format #| msgid "Destination:" msgid "Destination unmodified" @@ -4942,10 +4954,6 @@ #~ msgstr "Niðurhali haldið áfram" #, fuzzy -#~ msgid "Delete selected group" -#~ msgstr "Engar skrár valdar" - -#, fuzzy #~ msgid "Starts / resumes all transfers" #~ msgstr "Engar skrár valdar" diff -Nru kget-20.12.3/po/it/kgetplugin.po kget-21.04.0/po/it/kgetplugin.po --- kget-20.12.3/po/it/kgetplugin.po 2021-03-02 00:48:41.000000000 +0000 +++ kget-21.04.0/po/it/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: kgetplugin\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2011-01-19 19:48+0100\n" "Last-Translator: Pino Toscano \n" "Language-Team: Italian \n" @@ -52,22 +52,18 @@ msgid "No Links" msgstr "Nessun collegamento" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "Impossibile comunicare con il gestore degli scaricamenti KGet." - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "Errore di comunicazione" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format msgid "&Tools" msgstr "S&trumenti" +#~ msgid "Unable to communicate with the KGet download manager." +#~ msgstr "Impossibile comunicare con il gestore degli scaricamenti KGet." + +#~ msgid "Communication Error" +#~ msgstr "Errore di comunicazione" + #~ msgid "Plugins" #~ msgstr "Estensioni" diff -Nru kget-20.12.3/po/it/kget.po kget-21.04.0/po/it/kget.po --- kget-20.12.3/po/it/kget.po 2021-03-02 00:48:41.000000000 +0000 +++ kget-21.04.0/po/it/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -8,22 +8,22 @@ # Matteo , 2009, 2010. # Pino Toscano , 2011. # Giovanni Venturi , 2011, 2013. -# Vincenzo Reale , 2013, 2017, 2019. +# Vincenzo Reale , 2013, 2017, 2019, 2021. # msgid "" msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" -"PO-Revision-Date: 2019-05-01 22:48+0200\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" +"PO-Revision-Date: 2021-03-01 13:56+0100\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian \n" "Language: it\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 19.04.0\n" +"X-Generator: Lokalize 20.12.2\n" #: conf/autopastemodel.cpp:174 #, kde-format @@ -279,7 +279,7 @@ msgid " sec" msgstr " sec" -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "Impossibile aprire KWallet" @@ -326,7 +326,7 @@ msgid "The width of the columns in the history view" msgstr "La larghezza delle colonne nella vista della cronologia" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "Estensioni" @@ -461,8 +461,8 @@ msgstr "Più forte (più lento)" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -488,7 +488,7 @@ msgstr "Server delle chiavi:" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -562,27 +562,27 @@ "Nessun server utile per le chiavi trovato, chiave non scaricata. Aggiungi " "ulteriori server alle impostazioni o riavvia KGet e riprova a scaricare." -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "Sei sicuro di voler eliminare il gruppo chiamato %1?" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, kde-format msgid "Remove Group" msgstr "Rimuovi gruppo" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "Sei sicuro di voler eliminare i seguenti gruppi?" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, kde-format msgid "Remove groups" msgstr "Rimuovi gruppi" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    Il seguente trasferimento è stato aggiunto alla lista degli scaricamenti:" "

    %1

    " -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, kde-format msgid "Download added" msgstr "Scaricamento aggiunto" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "" "

    Il seguente trasferimento è stato aggiunto alla lista degli scaricamenti:" "

    " -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "" "

    I seguenti trasferimenti sono stati aggiunti alla lista degli " "scaricamenti:

    " -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "I miei scaricamenti" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" @@ -624,17 +624,17 @@ "Il file %1 già esiste.\n" "Vuoi sovrascriverlo?" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "Sovrascrivere il file esistente?" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "Impossibile salvare in: %1" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -649,34 +649,34 @@ "

    Gli URL seguenti non possono essere scaricati, i loro protocolli non sono " "supportati da KGet:

    " -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "Protocollo non supportato" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "Nuovo scaricamento" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "Inserisci URL:" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "Scegli cartella" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, kde-format msgctxt "@title:window" msgid "Save As" msgstr "Salva come" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -685,7 +685,7 @@ "URL non valido:\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, kde-format msgid "" "Malformed URL, protocol missing:\n" @@ -694,7 +694,7 @@ "URL non valido, protocollo mancante:\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -709,12 +709,12 @@ "\n" "Vuoi riscaricarlo?" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, kde-format msgid "Download it again?" msgstr "Vuoi riscaricarlo?" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -729,17 +729,17 @@ "\n" "Vuoi eliminarlo e scaricarlo di nuovo?" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, kde-format msgid "Delete it and download again?" msgstr "Vuoi eliminarlo e scaricarlo di nuovo?" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "Non puoi scrivere in questa cartella" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -750,39 +750,39 @@ "\n" "Scaricare ed eliminare il precedente?" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, kde-format msgid "File already downloaded. Download anyway?" msgstr "File già scaricato. Scaricare comunque?" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "Stai già scaricando lo stesso file" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, kde-format msgid "File already exists" msgstr "Il file esiste già" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "Connessione a Internet stabilita, riprendo i trasferimenti." -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "Nessuna connessione a Internet, interrompo trasferimenti." -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "Il gestore delle estensioni non può caricare l'estensione: %1." -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -793,7 +793,7 @@ "%1\n" "perché è una cartella." -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -804,7 +804,7 @@ "%1\n" "perché non è un file locale." -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    Il seguente file è stato scaricato completamente:

    %1

    " -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, kde-format msgid "Download completed" msgstr "Scaricamento completato" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    Il seguente trasferimento è stato avviato:

    %1

    " -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, kde-format msgid "Download started" msgstr "Scaricamento avviato" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    %1

    Il messaggio d'errore è:

    %2

    " -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, kde-format msgid "Resolve" msgstr "Risolvi" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, kde-format msgid "KGet is now closing, as all downloads have completed." msgstr "" "KGet sta per essere terminato perché tutti gli scaricamenti sono stati " "completati." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "" "Ora il computer si spegnerà perché tutti gli scaricamenti sono stati " "completati." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgctxt "Shutting down computer" msgid "Shutdown" msgstr "Spegnimento automatico" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "" "Ora il computer si spegnerà perché tutti gli scaricamenti sono stati " "completati." -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "Ibernazione" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "" "Ora il computer si sospenderà in RAM perché tutti gli scaricamenti sono " "stati completati." -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgctxt "Suspending computer" msgid "Suspending" msgstr "Sospensione" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, kde-format msgctxt "abort the proposed action" msgid "Abort" msgstr "Annullato" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "

    Tutti i trasferimenti sono stati conclusi.

    " -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, kde-format msgid "Downloads completed" msgstr "Scaricamenti completati" @@ -1709,7 +1709,7 @@ #, kde-format msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" -msgstr "smart2128@baslug.org,,," +msgstr "smart2128vr@gmail.com,,," #: main.cpp:134 #, kde-format @@ -1776,19 +1776,17 @@ msgid "Decrease Priority" msgstr "Diminuisci priorità" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 +#: mainwindow.cpp:204 #, kde-format +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "Elimina gruppo" -msgstr[1] "Elimina gruppi" +msgstr "Elimina gruppo" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 +#: mainwindow.cpp:210 #, kde-format +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "Rinomina gruppo..." -msgstr[1] "Rinomina gruppi" +msgstr "Rinomina gruppo..." #: mainwindow.cpp:215 #, kde-format @@ -2120,8 +2118,8 @@ msgid "Which files the chunk is located in" msgstr "In quale parte sono posizionati i file" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2140,16 +2138,16 @@ msgid "Currently downloading:" msgstr "Scaricamento corrente:" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, kde-format msgid "Downloaded:" msgstr "Scaricato:" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -3014,8 +3012,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3079,8 +3077,8 @@ msgid "New Script...." msgstr "Nuovo script..." -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, kde-format @@ -3411,6 +3409,20 @@ msgid "Failed to write to the file." msgstr "Impossibile scrivere sul file." +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "Elimina gruppo" +msgstr[1] "Elimina gruppi" + +#: ui/contextmenu.cpp:120 +#, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "Rinomina gruppo..." +msgstr[1] "Rinomina gruppi" + #: ui/droptarget.cpp:84 #, kde-format msgctxt "fix position for droptarget" @@ -3724,31 +3736,31 @@ msgstr "Apri file" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, kde-format msgid "&File" msgstr "&File" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, kde-format msgid "&Downloads" msgstr "S&caricamenti" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "Impo&stazioni" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "&Aiuto" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "Barra degli strumenti principale" @@ -4129,8 +4141,8 @@ msgid "File size (in bytes):" msgstr "Dimensione file (in byte):" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, kde-format msgid "Verification:" @@ -4694,12 +4706,12 @@ msgid "Remaining Time:" msgstr "Tempo restante:" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, kde-format msgid "Transfer Settings for %1" msgstr "Impostazioni di trasferimento per %1" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." @@ -4707,7 +4719,7 @@ "Cambiando la destinazione non ha funzionato, la destinazione resterà " "inalterata." -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "Destination unmodified" msgstr "Destinazione non modificata" diff -Nru kget-20.12.3/po/ja/kgetplugin.po kget-21.04.0/po/ja/kgetplugin.po --- kget-20.12.3/po/ja/kgetplugin.po 2021-03-02 00:48:41.000000000 +0000 +++ kget-21.04.0/po/ja/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2010-09-26 18:04-0700\n" "Last-Translator: Fumiaki Okushi \n" "Language-Team: Japanese \n" @@ -54,18 +54,11 @@ msgid "No Links" msgstr "リンクがありません" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "KGet ダウンロードマネージャと通信できませんでした。" - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format msgid "&Tools" msgstr "ツール(&T)" + +#~ msgid "Unable to communicate with the KGet download manager." +#~ msgstr "KGet ダウンロードマネージャと通信できませんでした。" diff -Nru kget-20.12.3/po/ja/kget.po kget-21.04.0/po/ja/kget.po --- kget-20.12.3/po/ja/kget.po 2021-03-02 00:48:41.000000000 +0000 +++ kget-21.04.0/po/ja/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" "PO-Revision-Date: 2011-08-27 17:32-0700\n" "Last-Translator: Fumiaki Okushi \n" "Language-Team: Japanese \n" @@ -284,7 +284,7 @@ msgid " sec" msgstr " 秒" -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "KWallet を開けません" @@ -331,7 +331,7 @@ msgid "The width of the columns in the history view" msgstr "履歴ビューのカラムの幅" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "プラグイン" @@ -466,8 +466,8 @@ msgstr "最強 (遅い)" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -493,7 +493,7 @@ msgstr "鍵サーバ:" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -565,27 +565,27 @@ "有用な鍵サーバが見つからなかったため、鍵はダウンロードされていません。設定で" "他のサーバを追加するか、KGet を再起動してやり直してみてください。" -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "本当にグループ “%1” を削除しますか?" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, kde-format msgid "Remove Group" msgstr "グループを削除" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "本当に以下のグループを削除しますか?" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, kde-format msgid "Remove groups" msgstr "グループを削除" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, fuzzy, kde-format #| msgid "" #| "

    The following transfer has been added to the download list:

    以下の転送がダウンロード一覧に追加されました:

    %1

    " -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, kde-format msgid "Download added" msgstr "ダウンロードに追加" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "

    以下の転送がダウンロード一覧に追加されました:

    " -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "

    以下の転送がダウンロード一覧に追加されました:

    " -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "マイダウンロード" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" @@ -626,17 +626,17 @@ "ファイル ‘%1’ は既に存在します。\n" "上書きしますか?" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "既存のファイルを上書きしますか?" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "次に保存できません: %1" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -647,35 +647,35 @@ msgstr[0] "" msgstr[1] "" -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "サポートされていないプロトコル" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "新しいダウンロード" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "URL を入力:" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, fuzzy, kde-format #| msgid "Save As" msgctxt "@title:window" msgid "Save As" msgstr "名前を付けて保存" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -684,7 +684,7 @@ "不正な形式の URL:\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, kde-format msgid "" "Malformed URL, protocol missing:\n" @@ -693,7 +693,7 @@ "不正な形式の URL、プロトコルがありません:\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -708,12 +708,12 @@ "\n" "もう一度ダウンロードしますか?" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, kde-format msgid "Download it again?" msgstr "もう一度ダウンロードしますか?" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -728,17 +728,17 @@ "\n" "削除してダウンロードし直しますか?" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, kde-format msgid "Delete it and download again?" msgstr "削除してダウンロードし直しますか?" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "ディレクトリは書き込み不可です" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -749,39 +749,39 @@ "\n" "ダウンロードして以前のファイルを削除しますか?" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, kde-format msgid "File already downloaded. Download anyway?" msgstr "ファイルは既にダウンロード済みです。それでもダウンロードしますか?" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "同じファイルを既にダウンロード中です" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, kde-format msgid "File already exists" msgstr "ファイルは既に存在します" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "" -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "" -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "プラグインをロードできませんでした: %1。" -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -792,7 +792,7 @@ "はディレクトリなので\n" "削除できませんでした。" -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -803,7 +803,7 @@ "はローカルファイルではないので\n" "削除できませんでした。" -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, fuzzy, kde-format #| msgid "" #| "

    The following file has finished downloading:

    以下のファイルのダウンロードが完了しました:

    %1

    " -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, kde-format msgid "Download completed" msgstr "ダウンロード完了" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, fuzzy, kde-format #| msgid "" #| "

    The following transfer has been started:

    %1

    " msgstr "

    以下の転送が開始しました:

    %1

    " -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, kde-format msgid "Download started" msgstr "ダウンロード開始" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, fuzzy, kde-format #| msgid "" #| "

    There has been an error in the following transfer:

    以下の転送にエラーがありました:

    %1

    エラーメッセージは:

    %2

    " -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, kde-format msgid "Resolve" msgstr "解決" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, kde-format msgid "KGet is now closing, as all downloads have completed." msgstr "すべてのダウンロードが完了したので KGet を終了します。" -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "すべてのダウンロードが完了したのでコンピュータを停止します。" -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgctxt "Shutting down computer" msgid "Shutdown" msgstr "シャットダウン" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "すべてのダウンロードが完了したのでコンピュータをハイバネートします。" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "ハイバネート" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "すべてのダウンロードが完了したのでコンピュータをサスペンドします。" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgctxt "Suspending computer" msgid "Suspending" msgstr "サスペンド" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, kde-format msgctxt "abort the proposed action" msgid "Abort" msgstr "中止" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "" -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, kde-format msgid "Downloads completed" msgstr "ダウンロード完了" @@ -1910,19 +1910,21 @@ msgid "Decrease Priority" msgstr "優先度を下げる" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 -#, kde-format +#: mainwindow.cpp:204 +#, fuzzy, kde-format +#| msgid "Delete Group" +#| msgid_plural "Delete Groups" +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "グループを削除" -msgstr[1] "グループを削除" +msgstr "グループを削除" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 -#, kde-format +#: mainwindow.cpp:210 +#, fuzzy, kde-format +#| msgid "Rename Group..." +#| msgid_plural "Rename Groups..." +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "グループ名を変更..." -msgstr[1] "グループ名を変更..." +msgstr "グループ名を変更..." #: mainwindow.cpp:215 #, kde-format @@ -2263,8 +2265,8 @@ msgid "Which files the chunk is located in" msgstr "ピースがどのファイルにあるか" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2283,16 +2285,16 @@ msgid "Currently downloading:" msgstr "ダウンロード中:" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, kde-format msgid "Downloaded:" msgstr "ダウンロード済み:" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -3150,8 +3152,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3215,8 +3217,8 @@ msgid "New Script...." msgstr "新しいスクリプト..." -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, kde-format @@ -3550,6 +3552,20 @@ msgid "Failed to write to the file." msgstr "" +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "グループを削除" +msgstr[1] "グループを削除" + +#: ui/contextmenu.cpp:120 +#, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "グループ名を変更..." +msgstr[1] "グループ名を変更..." + #: ui/droptarget.cpp:84 #, kde-format msgctxt "fix position for droptarget" @@ -3868,31 +3884,31 @@ msgstr "ファイルを開く" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, kde-format msgid "&File" msgstr "ファイル(&F)" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, kde-format msgid "&Downloads" msgstr "ダウンロード(&D)" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "設定(&S)" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "ヘルプ(&H)" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "メインツールバー" @@ -4285,8 +4301,8 @@ msgid "File size (in bytes):" msgstr "ファイルサイズ (バイト単位):" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, kde-format msgid "Verification:" @@ -4865,18 +4881,18 @@ msgid "Remaining Time:" msgstr "残り時間:" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, kde-format msgid "Transfer Settings for %1" msgstr "%1 の転送設定" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." msgstr "保存先の変更に失敗したため、保存先は元のままです。" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "Destination unmodified" msgstr "保存先は変更されていません" diff -Nru kget-20.12.3/po/kk/kgetplugin.po kget-21.04.0/po/kk/kgetplugin.po --- kget-20.12.3/po/kk/kgetplugin.po 2021-03-02 00:48:41.000000000 +0000 +++ kget-21.04.0/po/kk/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2010-12-11 09:08+0600\n" "Last-Translator: Sairan Kikkarin \n" "Language-Team: Kazakh \n" @@ -50,22 +50,18 @@ msgid "No Links" msgstr "Сілтемелер жоқ" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "KGet жүктеу менеджерімен қатынау жоқ." - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "Қатынау қатесі" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format msgid "&Tools" msgstr "Құ&ралдар" +#~ msgid "Unable to communicate with the KGet download manager." +#~ msgstr "KGet жүктеу менеджерімен қатынау жоқ." + +#~ msgid "Communication Error" +#~ msgstr "Қатынау қатесі" + #~ msgid "Plugins" #~ msgstr "Плагиндер" diff -Nru kget-20.12.3/po/kk/kget.po kget-21.04.0/po/kk/kget.po --- kget-20.12.3/po/kk/kget.po 2021-03-02 00:48:41.000000000 +0000 +++ kget-21.04.0/po/kk/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" "PO-Revision-Date: 2013-06-27 02:50+0600\n" "Last-Translator: Sairan Kikkarin \n" "Language-Team: Kazakh \n" @@ -271,7 +271,7 @@ msgid " sec" msgstr " сек" -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "KWallet ашылмады" @@ -318,7 +318,7 @@ msgid "The width of the columns in the history view" msgstr "Журнал көрінісіндегі бағандарының ені" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "Плагиндер" @@ -453,8 +453,8 @@ msgstr "Ең қатаң (баяу)" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -480,7 +480,7 @@ msgstr "Қілт серверлері:" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -550,27 +550,27 @@ "Істейтін кілт сервері табылмады, кілт алынбады. Параметрлерінде қосымша " "серверлерін келтіріп, KGet-ті қайта жегіп, жүктеуді қайта бастаңыз." -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "%1 деп аталған топты шын өшірмексіз бе?" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, kde-format msgid "Remove Group" msgstr "Топты өшіру" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "Келесі топты шын өшірмексіз бе?" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, kde-format msgid "Remove groups" msgstr "Топты өшіру" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    Келесі файлдың жүктеп алуы аяқталды:

    " "%1

    " -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, kde-format msgid "Download added" msgstr "Жүктеп алу қосылды" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "

    Жүктеп алу тізіміне келесі тасымалдау тапсырмасы енгізілді:

    " -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "

    Жүктеп алу тізіміне келесі тасымалдау тапсырмалар енгізілді:

    " -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "Жүктеп алғандарым" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" @@ -608,17 +608,17 @@ "%1 деген файл бар екен.\n" "Үстінен жаза берейік пе?" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "Файл үстінен жаза берейік пе?" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "Келесіге сақталмады: %1" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -630,35 +630,35 @@ "

    Келесі URL-лер жүктеп алуға келмейді, өйтені олардың протоколдарын KGet " "түсінбейді:

    " -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "Танымайтын протокол" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "Жаңа жүктеліс" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "URL:" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, fuzzy, kde-format #| msgid "Save As" msgctxt "@title:window" msgid "Save As" msgstr "Былай сақтау" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -667,7 +667,7 @@ "Жарамсыз URL:\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, kde-format msgid "" "Malformed URL, protocol missing:\n" @@ -676,7 +676,7 @@ "Жарамсыз URL, протоколы келтірілмеген:\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -691,12 +691,12 @@ "\n" "Қайтадан жүктейік пе?" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, kde-format msgid "Download it again?" msgstr "Қайта жүктейік пе?" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -711,17 +711,17 @@ "\n" "Өшіріп, қайта жүктейік пе?" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, kde-format msgid "Delete it and download again?" msgstr "Өшіріп, қайта жүктейік пе?" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "Қапшыққа жазуға болмайды" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, fuzzy, kde-format #| msgid "" #| "You have already downloaded that file from another location.\n" @@ -738,39 +738,39 @@ "\n" "Қайтадан жүктеп, алдыңғысын өшіріп тастайық па?" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, kde-format msgid "File already downloaded. Download anyway?" msgstr "Файл жүктелген екен. Сонда да жүктелсін бе?" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "Дәл осындай файл жүктелуде екен" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, kde-format msgid "File already exists" msgstr "Файл бар екен" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "Интернетке қосылым бар, тасымалдау жалғасады." -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "Интернетке қосылым жоқ, тасымалдау тоқтайды." -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "Плагин жүктегіші келесі плагинді жүктей алмады: %1." -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -781,7 +781,7 @@ "деген өшірілмейді\n" "өйткені бұл қапшық." -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -792,7 +792,7 @@ "деген өшірілмейді\n" "өйткені бұл жергілікті файл емес." -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    Келесі файлдың жүктеп алуы аяқталды:

    " "%1

    " -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, kde-format msgid "Download completed" msgstr "Жүктеу аяқталды" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    Келесі тасымалдау басталды:

    %1

    " -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, kde-format msgid "Download started" msgstr "Жүктеп алу басталды" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    Келесі тасымалдауда қате орын алды:

    %1

    Қатенің хабарламасы:

    %2

    " -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, kde-format msgid "Resolve" msgstr "Шешу" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, kde-format msgid "KGet is now closing, as all downloads have completed." msgstr "KGet барлық тапсырмаларын орындап енді доғарады." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "KGet барлық тапсырмаларын орындады, компьютер енді сөндіріледі." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgctxt "Shutting down computer" msgid "Shutdown" msgstr "Компьютерді сөндіру" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "Барлығы жүктеп алынып, компьютер енді күйін діскіне сақтап ұйықтайды." -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "Ұйықтату" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "Барлығы жүктеп алынып, компьютер енді күйін жадына сақтап қалғиды." -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgctxt "Suspending computer" msgid "Suspending" msgstr "Қалғу" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, kde-format msgctxt "abort the proposed action" msgid "Abort" msgstr "Доғару" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "

    Барлық тасымалдары аяқталды.

    " -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, kde-format msgid "Downloads completed" msgstr "Жүктеулер аяқталды" @@ -1749,17 +1749,21 @@ msgid "Decrease Priority" msgstr "Артықшылығын түсіру" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 -#, kde-format +#: mainwindow.cpp:204 +#, fuzzy, kde-format +#| msgid "Delete Group" +#| msgid_plural "Delete Groups" +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "Топт(ард)ы өшіру" +msgstr "Топт(ард)ы өшіру" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 -#, kde-format +#: mainwindow.cpp:210 +#, fuzzy, kde-format +#| msgid "Rename Group..." +#| msgid_plural "Rename Groups..." +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "Топт(ард)ы қайта атау..." +msgstr "Топт(ард)ы қайта атау..." #: mainwindow.cpp:215 #, kde-format @@ -2087,8 +2091,8 @@ msgid "Which files the chunk is located in" msgstr "Тілімінің жататын файлдары" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2107,16 +2111,16 @@ msgid "Currently downloading:" msgstr "Жүктеп жатқаны:" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, kde-format msgid "Downloaded:" msgstr "Жүктеп алынғаны:" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -2982,8 +2986,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3047,8 +3051,8 @@ msgid "New Script...." msgstr "Жаңа скрипт..." -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, kde-format @@ -3377,6 +3381,18 @@ msgid "Failed to write to the file." msgstr "Файлға жазу жаңылысы." +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "Топт(ард)ы өшіру" + +#: ui/contextmenu.cpp:120 +#, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "Топт(ард)ы қайта атау..." + #: ui/droptarget.cpp:84 #, kde-format msgctxt "fix position for droptarget" @@ -3690,31 +3706,31 @@ msgstr "Файлды ашу" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, kde-format msgid "&File" msgstr "&Файл" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, kde-format msgid "&Downloads" msgstr "&Жүктеп алулары" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "&Баптау" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "&Анықтама" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "Негізгі Құралдар панелі" @@ -4098,8 +4114,8 @@ msgid "File size (in bytes):" msgstr "Файл өлшемі (байт):" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, kde-format msgid "Verification:" @@ -4663,18 +4679,18 @@ msgid "Remaining Time:" msgstr "Қалған уақыт:" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, kde-format msgid "Transfer Settings for %1" msgstr "%1 тасымалдың параметрлері" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." msgstr "Қабылдау орны өзгертілмейті - ол өзгермей қалды." -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "Destination unmodified" msgstr "Қабылдау орны өзгерген жоқ" diff -Nru kget-20.12.3/po/km/kgetplugin.po kget-21.04.0/po/km/kgetplugin.po --- kget-20.12.3/po/km/kgetplugin.po 2021-03-02 00:48:41.000000000 +0000 +++ kget-21.04.0/po/km/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2010-12-06 09:53+0700\n" "Last-Translator: Khoem Sokhem \n" "Language-Team: Khmer \n" @@ -46,22 +46,18 @@ msgid "No Links" msgstr "គ្មាន​តំណ" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "មិនអាច​ទាក់ទង​ជា​មួយ​កម្មវិធី​គ្រប់គ្រង​ការ​ទាញយក​របស់ KGet បាន​ទេ ។" - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "កំហុស​ក្នុង​ការ​ទំនាក់ទំនង" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format msgid "&Tools" msgstr "ឧបករណ៍" +#~ msgid "Unable to communicate with the KGet download manager." +#~ msgstr "មិនអាច​ទាក់ទង​ជា​មួយ​កម្មវិធី​គ្រប់គ្រង​ការ​ទាញយក​របស់ KGet បាន​ទេ ។" + +#~ msgid "Communication Error" +#~ msgstr "កំហុស​ក្នុង​ការ​ទំនាក់ទំនង" + #~ msgid "Plugins" #~ msgstr "កម្មវិធី​ជំនួយ" diff -Nru kget-20.12.3/po/km/kget.po kget-21.04.0/po/km/kget.po --- kget-20.12.3/po/km/kget.po 2021-03-02 00:48:41.000000000 +0000 +++ kget-21.04.0/po/km/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" "PO-Revision-Date: 2012-07-09 10:43+0700\n" "Last-Translator: Khoem Sokhem \n" "Language-Team: Khmer \n" @@ -269,7 +269,7 @@ msgid " sec" msgstr " វិ." -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "មិន​អាច​បើក KWallet បាន​ទេ" @@ -316,7 +316,7 @@ msgid "The width of the columns in the history view" msgstr "ទទឹង​របស់​ជួរឈរ​នៅ​ក្នុង​ទិដ្ឋភាព​ប្រវត្តិ" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "កម្មវិធី​ជំនួយ " @@ -451,8 +451,8 @@ msgstr "ខ្លាំង​បំផុត (យឺត​បំផុត)" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -478,7 +478,7 @@ msgstr "ម៉ាស៊ីន​បម្រើ​សោ ៖" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -549,27 +549,27 @@ "រក​មិនឃើញ​សោ​ដែលមានប្រយោជន៍​ទេ សោ​មិន​បានទាញយក​ទេ ។ បន្ថែម​ម៉ាស៊ីនបម្រើ​ផ្សេង​ទៀត​ទៅការ​កំណត់ ឬ​" "ចាប់ផ្ដើម KGet ឡើងវិញ ហើយ​ព្យាយាម​ទាញយក​ម្ដង​ទៀត ។" -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "តើ​អ្នក​ប្រាកដ​ជា​ចង់​យក​ក្រុម​ដែល​មាន​ឈ្មោះ %1 ចេញ​ឬ ?" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, kde-format msgid "Remove Group" msgstr "យក​ក្រុម​ចេញ" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "តើ​អ្នក​ប្រាកដ​ជា​ចង់​យក​ក្រុម​ដូច​ខាងក្រោម​ចេញ​ឬ ?" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, kde-format msgid "Remove groups" msgstr "យក​ក្រុម​ចេញ" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    ការ​ផ្ទេរ​ដូច​ខាង​ក្រោម​ត្រូវ​បាន​បន្ថែម​ទៅ​បញ្ជី​ទាញយក ៖

    " "%1

    " -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, kde-format msgid "Download added" msgstr "បាន​បន្ថែម​ការ​ទាញយក" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "

    កា​រផ្ទេរ​ដូច​ខាងក្រោម​ត្រូវ​បានបន្ថែម​ទៅ​ក្នុង​បញ្ជី​ទាញយក ៖

    " -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "

    កា​រផ្ទេរ​ដូច​ខាងក្រោម​ត្រូវ​បានបន្ថែម​ទៅ​ក្នុង​បញ្ជី​ទាញយក ៖

    " -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "ការ​ទាញយក​របស់​ខ្ញុំ" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" @@ -607,17 +607,17 @@ "មាន​ឯកសារ %1 រួច​ហើយ ។\n" "សរសេរ​ជាន់លើ​ឬ?" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "សរសេរ​ជាន់លើ​ឯកសារ​ដែល​មាន​រួច?" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "មិន​អាច​រក្សា​ទុក​ទៅ ៖ %1" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -629,35 +629,35 @@ "

    URLs ដូច​ខាងក្រោម​មិន​អាច​ត្រូវបាន​ទាញយក​បាន​ទេ ពិធិការ​របស់​ពួកគេ​មិន​ត្រូវបានគាំទ្រ​ដោយ​ KGet ទេ ៖" "

    " -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "មិនបានគាំទ្រ​ពិធីការ​ទេ" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "ទាញយក​ថ្មី" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "បញ្ចូល URL ៖" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, fuzzy, kde-format #| msgid "Save As" msgctxt "@title:window" msgid "Save As" msgstr "រក្សាទុកជា" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -666,7 +666,7 @@ "ទម្រង់ URL មិន​ត្រឹមត្រូវ ៖\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, kde-format msgid "" "Malformed URL, protocol missing:\n" @@ -675,7 +675,7 @@ "URL មិន​ត្រឹមត្រូវ​ បាត់​ពិធីការ ៖\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -690,12 +690,12 @@ "\n" "ទាញយក​វា​ម្ដង​ទៀត​ដែរឬទេ ?" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, kde-format msgid "Download it again?" msgstr "ទាញយក​ម្ដង​ទៀត ?" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -710,17 +710,17 @@ "\n" "លុបវា ហើយ​ទាញយក​ម្ដង​ទៀត​ដែរឬទេ ?" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, kde-format msgid "Delete it and download again?" msgstr "លុប​វា ហើយ​ទាញយក​ម្ដងទៀត ?" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "ថត​មិន​អាច​សរសេរ​បាន​ឡើយ" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -731,39 +731,39 @@ "\n" "ទាញយក ហើយ​លុប​ឯកសារ​មួយ​មុន​ដែរឬទេ ?" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, kde-format msgid "File already downloaded. Download anyway?" msgstr "បាន​ទាញយក​ឯកសារ​រួច​ហើយ ? អញ្ចឹង​ទាញយក​ដែរឬទេ ?" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "កំពុង​កំពុង​ទាញយក​ឯកសារ​ដូច​គ្នា​រួច​ហើយ" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, kde-format msgid "File already exists" msgstr "មាន​ឯកសារ​រួច​ហើយ" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "បាន​បើក​ការ​តភ្ជាប់​អ៊ីនធឺណិត ធ្វើ​ការ​ផ្ទេរ​បន្ត ។" -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "គ្មាន​ការ​តភ្ជាប់​អ៊ីនធឺណិត បញ្ឈប់​ការ​ផ្ទេរ ។" -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "កម្មវិធី​ផ្ទុក​កម្មវិធី​បញ្ជា​មិនអាច​ផ្ទុក​កម្មវិធី​បញ្ជា​បានទេ ៖ %1 ។" -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -774,7 +774,7 @@ "%1 ឡើយ\n" "ដោយ​សារ​តែ​វា​ជា​ថត ។" -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -785,7 +785,7 @@ "%1 ឡើយ\n" "ដោយ​សារ​តែ​វា​ជា​ឯកសារ​មូលដ្ឋាន ។" -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    ឯកសារ​ដូច​ខាង​ក្រោម​បាន​បញ្ចប់​កា​រទាញយក​ហើយ​ ៖

    %1" -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, kde-format msgid "Download completed" msgstr "បាន​បញ្ចប់​ការ​ទាញយក" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    ការ​ផ្ទេរ​ដូច​ខាង​ក្រោម​ត្រូ​វបាន​ចាប់ផ្ដើម ៖

    %1

    " -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, kde-format msgid "Download started" msgstr "បាន​ចាប់ផ្ដើម​កា​រទាញយក" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    មាន​បញ្ហា​​នៅ​ក្នុង​ការ​ផ្ទេរ​ដូ​ច​ខា​ងក្រោម ៖

    %1

    សារ​កំហុស​គឺ ៖

    %2

    " -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, kde-format msgid "Resolve" msgstr "ដោះស្រាយ" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, kde-format msgid "KGet is now closing, as all downloads have completed." msgstr "ឥឡូវ KGet បាន​បិទ ព្រោះ​បាន​បញ្ចប់​ការ​ទាញយក​ទាំងអស់​ហើយ ។" -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "កុំព្យូទ័រ​នឹង​បិទ​ឥឡូវ ពីព្រោះ​ការ​ទាញយក​ទាំងអស់​​បាន​បញ្ចប់​ហើយ ។" -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgctxt "Shutting down computer" msgid "Shutdown" msgstr "បិទ" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "កុំព្យូទ័រ​នឹង​ផ្អាក​ទៅ​ថាស​ឥឡូវ ព្រោះ​ថា​ការ​ទាញយក​ទាំងអស់​បាន​បញ្ចប់​ហើយ ។" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "សម្ងំ" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "កុំព្យូទ័រ​នឹង​ផ្អាក​ទៅសតិ​ឥឡូវ ព្រោះថា​ការ​ទាញយក​ទាំងអស់​បាន​បញ្ចប់​ហើយ ។ " -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgctxt "Suspending computer" msgid "Suspending" msgstr "ផ្អាក" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, kde-format msgctxt "abort the proposed action" msgid "Abort" msgstr "​បោះបង់" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "

    ការ​ផ្ទេរ​ទាំងអស់​បាន​ចប់​ហើយ ។

    " -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, kde-format msgid "Downloads completed" msgstr "ការ​ទាញយក​បាន​បញ្ចប់" @@ -1745,17 +1745,21 @@ msgid "Decrease Priority" msgstr "បន្ថយ​អាទិភាព" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 -#, kde-format +#: mainwindow.cpp:204 +#, fuzzy, kde-format +#| msgid "Delete Group" +#| msgid_plural "Delete Groups" +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "លុប​ក្រុម" +msgstr "លុប​ក្រុម" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 -#, kde-format +#: mainwindow.cpp:210 +#, fuzzy, kde-format +#| msgid "Rename Group..." +#| msgid_plural "Rename Groups..." +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "ប្ដូរ​ឈ្មោះ​ក្រុម​..." +msgstr "ប្ដូរ​ឈ្មោះ​ក្រុម​..." #: mainwindow.cpp:215 #, kde-format @@ -2083,8 +2087,8 @@ msgid "Which files the chunk is located in" msgstr "ឯកសារ​ណាមួយ​ដែល​កំណត់​ស្ថិត​នៅ" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2103,16 +2107,16 @@ msgid "Currently downloading:" msgstr "កា​រទាញ​យក​បច្ចុប្បន្ន ៖" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, kde-format msgid "Downloaded:" msgstr "បានទាញ​យក ៖" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -2973,8 +2977,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3038,8 +3042,8 @@ msgid "New Script...." msgstr "ស្គ្រីប​ថ្មី..." -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, kde-format @@ -3367,6 +3371,18 @@ msgid "Failed to write to the file." msgstr "បាន​បរាជ័យ​ក្នុងការ​សរសេរ​ទៅ​កាន់​ឯកសារ ។" +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "លុប​ក្រុម" + +#: ui/contextmenu.cpp:120 +#, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "ប្ដូរ​ឈ្មោះ​ក្រុម​..." + #: ui/droptarget.cpp:84 #, kde-format msgctxt "fix position for droptarget" @@ -3680,31 +3696,31 @@ msgstr "បើក​ឯកសារ" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, kde-format msgid "&File" msgstr "ឯកសារ" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, kde-format msgid "&Downloads" msgstr "ទាញយក" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "ការ​កំណត់" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "ជំនួយ" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "របារ​ឧបករណ៍​មេ" @@ -4085,8 +4101,8 @@ msgid "File size (in bytes):" msgstr "ទំហំ​ឯកសារ (គិត​ជា​បៃ) ៖" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, kde-format msgid "Verification:" @@ -4645,18 +4661,18 @@ msgid "Remaining Time:" msgstr "ពេលវេលា​នៅ​សល់ ៖" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, kde-format msgid "Transfer Settings for %1" msgstr "ការ​កំណត់​ផ្ទេរ​សម្រាប់ %1" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." msgstr "ការ​ផ្លាស់ប្ដូ​រទិសដៅ​មិន​ដំណើរការ​ទេ ទិសដៅ​មិន​ត្រូ​វបាន​កែប្រែ​ទេ ។" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "Destination unmodified" msgstr "មិនបាន​កែប្រែ​ទិសដៅ​ទេ" diff -Nru kget-20.12.3/po/ko/kgetplugin.po kget-21.04.0/po/ko/kgetplugin.po --- kget-20.12.3/po/ko/kgetplugin.po 2021-03-02 00:48:41.000000000 +0000 +++ kget-21.04.0/po/ko/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2020-04-21 00:34+0200\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean \n" @@ -48,18 +48,14 @@ msgid "No Links" msgstr "링크 없음" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "KGet 다운로드 관리자와 통신할 수 없습니다." - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "통신 오류" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format msgid "&Tools" msgstr "도구(&T)" + +#~ msgid "Unable to communicate with the KGet download manager." +#~ msgstr "KGet 다운로드 관리자와 통신할 수 없습니다." + +#~ msgid "Communication Error" +#~ msgstr "통신 오류" diff -Nru kget-20.12.3/po/ko/kget.po kget-21.04.0/po/ko/kget.po --- kget-20.12.3/po/ko/kget.po 2021-03-02 00:48:41.000000000 +0000 +++ kget-21.04.0/po/ko/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" "PO-Revision-Date: 2020-10-04 18:47+0200\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean \n" @@ -269,7 +269,7 @@ msgid " sec" msgstr "초" -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "KWallet을 열 수 없음" @@ -316,7 +316,7 @@ msgid "The width of the columns in the history view" msgstr "과거 기록 보기의 열 너비" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "플러그인" @@ -451,8 +451,8 @@ msgstr "매우 강함(가장 느림)" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -478,7 +478,7 @@ msgstr "키 서버:" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -548,27 +548,27 @@ "사용할 수 있는 키 서버가 없어서 키를 다운로드할 수 없습니다. 설정에서 키 서버" "를 더 추가하거나 KGet을 다시 시작한 다음 다운로드를 다시 시도하십시오." -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "%1 그룹을 삭제하시겠습니까?" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, kde-format msgid "Remove Group" msgstr "그룹 삭제" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "다음 그룹을 삭제하시겠습니까?" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, kde-format msgid "Remove groups" msgstr "그룹 삭제" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    다운로드 목록에 다음 전송 항목을 추가했습니다:

    %1

    " -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, kde-format msgid "Download added" msgstr "다운로드 추가됨" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "

    다운로드 목록에 다음 전송 항목을 추가했습니다:

    " -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "

    다운로드 목록에 다음 전송 항목을 추가했습니다:

    " -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "내 다운로드" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" @@ -606,17 +606,17 @@ "%1 파일이 이미 존재합니다.\n" "덮어쓰시겠습니까?" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "존재하는 파일을 덮어쓰시겠습니까?" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "다음에 저장할 수 없음: %1" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -627,34 +627,34 @@ msgstr[0] "" "

    KGet에서 프로토콜을 지원하지 않아서 다음 URL을 다운로드할 수 없습니다:

    " -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "프로토콜 지원하지 않음" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "새 다운로드" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "URL 입력:" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "디렉터리 선택" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, kde-format msgctxt "@title:window" msgid "Save As" msgstr "다른 이름으로 저장" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -663,7 +663,7 @@ "잘못된 URL:\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, kde-format msgid "" "Malformed URL, protocol missing:\n" @@ -672,7 +672,7 @@ "잘못된 URL, 프로토콜 없음:\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -687,12 +687,12 @@ "\n" "다시 다운로드하시겠습니까?" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, kde-format msgid "Download it again?" msgstr "다시 다운로드하시겠습니까?" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -707,17 +707,17 @@ "\n" "삭제한 후 다시 다운로드하시겠습니까?" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, kde-format msgid "Delete it and download again?" msgstr "삭제한 후 다시 다운로드하시겠습니까?" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "디렉터리에 쓸 수 없습니다" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -728,39 +728,39 @@ "\n" "이전 파일을 삭제하고 다운로드하시겠습니까?" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, kde-format msgid "File already downloaded. Download anyway?" msgstr "파일이 이미 다운로드되었습니다. 그래도 다운로드하시겠습니까?" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "같은 파일을 이미 다운로드하고 있음" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, kde-format msgid "File already exists" msgstr "파일이 이미 존재함" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "인터넷에 연결되어 전송을 다시 시작합니다." -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "인터넷 연결이 끊겨서 전송을 중단합니다." -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "플러그인 로더에서 플러그인을 불러올 수 없음: %1." -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -771,7 +771,7 @@ "이(가) 디렉터리이기 때문에\n" "삭제하지 않습니다." -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -782,7 +782,7 @@ "이(가) 로컬 파일이 아니기 때문에\n" "삭제하지 않습니다." -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    다음 파일을 다운로드했습니다:

    %1

    " -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, kde-format msgid "Download completed" msgstr "다운로드 완료됨" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    %1

    " msgstr "

    다음 전송을 시작했습니다:

    %1

    " -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, kde-format msgid "Download started" msgstr "다운로드 시작됨" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    다음 전송에서 오류가 발생했습니다:

    %1

    오류 메시지:

    %2

    " -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, kde-format msgid "Resolve" msgstr "해결" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, kde-format msgid "KGet is now closing, as all downloads have completed." msgstr "모든 다운로드가 완료되었기 때문에 KGet을 종료합니다." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "모든 다운로드가 완료되었기 때문에 컴퓨터를 끕니다." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgctxt "Shutting down computer" msgid "Shutdown" msgstr "컴퓨터 끄기" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "" "모든 다운로드가 완료되었기 때문에 컴퓨터를 최대 절전 모드로 전환합니다." -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "최대 절전 모드로 전환" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "모든 다운로드가 완료되었기 때문에 컴퓨터를 대기 모드로 전환합니다." -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgctxt "Suspending computer" msgid "Suspending" msgstr "대기 모드로 전환" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, kde-format msgctxt "abort the proposed action" msgid "Abort" msgstr "중지" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "

    모든 전송이 완료되었습니다.

    " -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, kde-format msgid "Downloads completed" msgstr "다운로드 완료됨" @@ -1733,17 +1733,21 @@ msgid "Decrease Priority" msgstr "우선 순위 감소" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 -#, kde-format +#: mainwindow.cpp:204 +#, fuzzy, kde-format +#| msgid "Delete Group" +#| msgid_plural "Delete Groups" +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "그룹 삭제" +msgstr "그룹 삭제" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 -#, kde-format +#: mainwindow.cpp:210 +#, fuzzy, kde-format +#| msgid "Rename Group..." +#| msgid_plural "Rename Groups..." +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "그룹 이름 바꾸기..." +msgstr "그룹 이름 바꾸기..." #: mainwindow.cpp:215 #, kde-format @@ -2068,8 +2072,8 @@ msgid "Which files the chunk is located in" msgstr "조각이 저장된 파일" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2088,16 +2092,16 @@ msgid "Currently downloading:" msgstr "다운로드 중인 조각 수:" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, kde-format msgid "Downloaded:" msgstr "다운로드된 조각 수:" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -2956,8 +2960,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3021,8 +3025,8 @@ msgid "New Script...." msgstr "새 스크립트..." -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, kde-format @@ -3349,6 +3353,18 @@ msgid "Failed to write to the file." msgstr "파일에 쓸 수 없습니다." +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "그룹 삭제" + +#: ui/contextmenu.cpp:120 +#, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "그룹 이름 바꾸기..." + #: ui/droptarget.cpp:84 #, kde-format msgctxt "fix position for droptarget" @@ -3659,31 +3675,31 @@ msgstr "파일 열기" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, kde-format msgid "&File" msgstr "파일(&F)" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, kde-format msgid "&Downloads" msgstr "다운로드(&D)" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "설정(&S)" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "도움말(&H)" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "주 도구 모음" @@ -4062,8 +4078,8 @@ msgid "File size (in bytes):" msgstr "파일 크기(바이트):" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, kde-format msgid "Verification:" @@ -4624,18 +4640,18 @@ msgid "Remaining Time:" msgstr "남은 시간:" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, kde-format msgid "Transfer Settings for %1" msgstr "%1의 전송 설정" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." msgstr "대상을 변경할 수 없습니다. 기존 대상을 사용합니다." -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "Destination unmodified" msgstr "대상이 변경되지 않음" diff -Nru kget-20.12.3/po/lt/kgetplugin.po kget-21.04.0/po/lt/kgetplugin.po --- kget-20.12.3/po/lt/kgetplugin.po 2021-03-02 00:48:41.000000000 +0000 +++ kget-21.04.0/po/lt/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kgetplugin\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2011-06-23 13:29+0300\n" "Last-Translator: Tomas Straupis \n" "Language-Team: Lithuanian \n" @@ -49,18 +49,14 @@ msgid "No Links" msgstr "Nėra nuorodų" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "Nepavyksta susisiekti su atsiuntimo tvarkykle KGet." - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "Susisiekimo klaida" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format msgid "&Tools" msgstr "Į&rankiai" + +#~ msgid "Unable to communicate with the KGet download manager." +#~ msgstr "Nepavyksta susisiekti su atsiuntimo tvarkykle KGet." + +#~ msgid "Communication Error" +#~ msgstr "Susisiekimo klaida" diff -Nru kget-20.12.3/po/lt/kget.po kget-21.04.0/po/lt/kget.po --- kget-20.12.3/po/lt/kget.po 2021-03-02 00:48:41.000000000 +0000 +++ kget-21.04.0/po/lt/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" "PO-Revision-Date: 2011-11-07 19:17+0200\n" "Last-Translator: Tomas Straupis \n" "Language-Team: Lithuanian \n" @@ -272,7 +272,7 @@ msgid " sec" msgstr " sek." -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "Nepavyko atverti slaptažodinės" @@ -319,7 +319,7 @@ msgid "The width of the columns in the history view" msgstr "Istorijos rodinio stulpelių plotis" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "Įskiepiai" @@ -454,8 +454,8 @@ msgstr "Stipriausia (lėčiausia)" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -481,7 +481,7 @@ msgstr "Raktų serveriai:" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -554,27 +554,27 @@ "raktų serverių nustatymuose tada paleiskite KGet iš naujo ir pabandykite " "pakartoti." -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "Ar tikrai norite pašalinti grupę %1?" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, kde-format msgid "Remove Group" msgstr "Pašalinti grupę" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "Ar tikrai norite pašalinti sekančias grupes?" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, kde-format msgid "Remove groups" msgstr "Pašalinti grupes" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, fuzzy, kde-format #| msgid "" #| "

    The following transfer has been added to the download list:

    Šis siuntimas buvo pridėtas į siuntimų sąrašą:

    \\%1

    " -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, kde-format msgid "Download added" msgstr "Siuntimas pridėtas" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "

    Šis siuntimas buvo pridėtas į siuntimų sąrašą:

    " -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "

    Šie siuntimai buvo pridėti į siuntimų sąrašą:

    " -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "Mano siuntiniai" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" @@ -615,17 +615,17 @@ "Failas %1 jau egzistuoja.\n" "Ar norite jį pakeisti?" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "Pakeisti egzistuojantį failą?" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "Nepavyko įrašyti į: %1" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -638,35 +638,35 @@ msgstr[2] "

    Šie URL negali būti atsiųsti, jų protokolų KGet nepalaiko:

    " msgstr[3] "

    Šie URL negali būti atsiųsti, jų protokolų KGet nepalaiko:

    " -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "Protokolas nepalaikomas" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "Naujas atsiuntimas" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "Įrašykite URL:" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, fuzzy, kde-format #| msgid "Save As" msgctxt "@title:window" msgid "Save As" msgstr "Įrašyti kaip" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -675,7 +675,7 @@ "Klaidingas URL:\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, kde-format msgid "" "Malformed URL, protocol missing:\n" @@ -684,7 +684,7 @@ "Klaidingas URL, nenurodytas protokolas:\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -699,12 +699,12 @@ "\n" "Atsiųsti dar kartą?" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, kde-format msgid "Download it again?" msgstr "Atsiųsti dar kartą?" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -719,17 +719,17 @@ "\n" "Ištrinti ir siųsti iš naujo?" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, kde-format msgid "Delete it and download again?" msgstr "Ištrinti ir atsiųsti dar kartą?" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "Į aplanką negalima rašyti" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -740,39 +740,39 @@ "\n" "Ištrinti jau turimą failą ir siųsti iš naujo?" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, kde-format msgid "File already downloaded. Download anyway?" msgstr "Šis failas jau atsiųstas. Siųsti vis tiek?" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "Jūs jau siunčiate tokį patį failą" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, kde-format msgid "File already exists" msgstr "Failas jau egzistuoja" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "Įjungtas interneto ryšys, tęsiami atsiuntimai." -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "Nėra interneto ryšio. Atsiuntimai stabdomi." -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "Nepavyko įkrauti priedo: %1" -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -783,7 +783,7 @@ "%1\n" "nes tai aplankas." -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -794,7 +794,7 @@ "%1\n" "nes tai nėra vietinis failas." -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, fuzzy, kde-format #| msgid "" #| "

    The following file has finished downloading:

    Šio failo siuntimas baigtas:

    \\%1

    " -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, kde-format msgid "Download completed" msgstr "Atsiuntimas baigtas" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, fuzzy, kde-format #| msgid "" #| "

    The following transfer has been started:

    %1

    " msgstr "

    Pradėtas šis siuntimas:

    \\%1

    " -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, kde-format msgid "Download started" msgstr "Pradėtas siuntimas" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, fuzzy, kde-format #| msgid "" #| "

    There has been an error in the following transfer:

    Šiame siuntime įvyko klaida:

    \\%1

    Klaidos pranešimas:

    \\%2

    " -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, kde-format msgid "Resolve" msgstr "Sutvarkyti" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, kde-format msgid "KGet is now closing, as all downloads have completed." msgstr "KGet baigia darbą, nes jau atsiųsti visi failai." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "Kompiuteris tuoj bus išjungtas, nes jau atsiųsti visi failai." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgctxt "Shutting down computer" msgid "Shutdown" msgstr "Išsijungimas" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "" "Visi siuntimai baigti, todėl dabar kompiuteris būseną išsaugojęs diske " "išsijungs." -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "Išsijungiama (hibernating)" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "" "Visi siuntimai baigti, todėl dabar kompiuteris būseną išsaugojęs atmintyje " "išsijungs." -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgctxt "Suspending computer" msgid "Suspending" msgstr "Išsijungiama (suspending)" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, kde-format msgctxt "abort the proposed action" msgid "Abort" msgstr "Nutraukti" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "

    Baigti visi siuntimai.

    " -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, kde-format msgid "Downloads completed" msgstr "Atsiuntimai baigti" @@ -1772,23 +1772,21 @@ msgid "Decrease Priority" msgstr "Mažinti prioritetą" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 -#, kde-format +#: mainwindow.cpp:204 +#, fuzzy, kde-format +#| msgid "Delete Group" +#| msgid_plural "Delete Groups" +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "Pašalinti grupę" -msgstr[1] "Pašalinti grupes" -msgstr[2] "Pašalinti grupes" -msgstr[3] "Pašalinti grupes" +msgstr "Pašalinti grupę" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 -#, kde-format +#: mainwindow.cpp:210 +#, fuzzy, kde-format +#| msgid "Rename Group..." +#| msgid_plural "Rename Groups..." +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "Pervadinti grupę..." -msgstr[1] "Pervadinti grupes..." -msgstr[2] "Pervadinti grupes..." -msgstr[3] "Pervadinti grupes..." +msgstr "Pervadinti grupę..." #: mainwindow.cpp:215 #, kde-format @@ -2128,8 +2126,8 @@ msgid "Which files the chunk is located in" msgstr "Kuriose failuose yra šis gabalas" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2148,16 +2146,16 @@ msgid "Currently downloading:" msgstr "Dabar siunčiama:" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, kde-format msgid "Downloaded:" msgstr "Atsiųsta:" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -3031,8 +3029,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3096,8 +3094,8 @@ msgid "New Script...." msgstr "Naujas scenarijus..." -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, kde-format @@ -3429,6 +3427,24 @@ msgid "Failed to write to the file." msgstr "Nepavyko rašyti į failą." +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "Pašalinti grupę" +msgstr[1] "Pašalinti grupes" +msgstr[2] "Pašalinti grupes" +msgstr[3] "Pašalinti grupes" + +#: ui/contextmenu.cpp:120 +#, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "Pervadinti grupę..." +msgstr[1] "Pervadinti grupes..." +msgstr[2] "Pervadinti grupes..." +msgstr[3] "Pervadinti grupes..." + #: ui/droptarget.cpp:84 #, kde-format msgctxt "fix position for droptarget" @@ -3743,31 +3759,31 @@ msgstr "Atverti failą" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, kde-format msgid "&File" msgstr "&Failas" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, kde-format msgid "&Downloads" msgstr "&Atsiuntimai" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "&Nuostatos" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "&Pagalba" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "Pagrindinė įrankinė" @@ -4151,8 +4167,8 @@ msgid "File size (in bytes):" msgstr "Failo dydis (baitais):" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, kde-format msgid "Verification:" @@ -4717,18 +4733,18 @@ msgid "Remaining Time:" msgstr "Likęs laikas:" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, kde-format msgid "Transfer Settings for %1" msgstr "Siuntimo %1 nuostatos" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." msgstr "Nepavyko pakeisti paskirties. Paskirtis išlieka nepakeista." -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "Destination unmodified" msgstr "Paskirtis nepakeista" diff -Nru kget-20.12.3/po/lv/kgetplugin.po kget-21.04.0/po/lv/kgetplugin.po --- kget-20.12.3/po/lv/kgetplugin.po 2021-03-02 00:48:41.000000000 +0000 +++ kget-21.04.0/po/lv/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2010-01-09 18:49+0200\n" "Last-Translator: Viesturs Zarins \n" "Language-Team: Latvian \n" @@ -52,23 +52,17 @@ msgid "No Links" msgstr "Nav saišu" -#: kget_plug_in.cpp:184 -#, fuzzy, kde-format -#| msgid "Unable to continue: KGet cannot download using this protocol." -msgid "Unable to communicate with the KGet download manager." -msgstr "Nevar turpināt: KGet nespēj lejupielādēt no šī protokola." - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format msgid "&Tools" msgstr "&Rīki" +#, fuzzy +#~| msgid "Unable to continue: KGet cannot download using this protocol." +#~ msgid "Unable to communicate with the KGet download manager." +#~ msgstr "Nevar turpināt: KGet nespēj lejupielādēt no šī protokola." + #~ msgid "Plugins" #~ msgstr "Spraudņi" diff -Nru kget-20.12.3/po/lv/kget.po kget-21.04.0/po/lv/kget.po --- kget-20.12.3/po/lv/kget.po 2021-03-02 00:48:41.000000000 +0000 +++ kget-21.04.0/po/lv/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" "PO-Revision-Date: 2010-01-09 18:49+0200\n" "Last-Translator: Viesturs Zarins \n" "Language-Team: Latvian \n" @@ -287,7 +287,7 @@ msgid " sec" msgstr " sek" -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "" @@ -336,7 +336,7 @@ msgid "The width of the columns in the history view" msgstr "Vēstures skata kolonu platums" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "Spraudņi" @@ -475,8 +475,8 @@ msgstr "Stiprākā (lēnākais)" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -502,7 +502,7 @@ msgstr "Atslēgu serveri:" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -575,27 +575,27 @@ "citus serverus iestatījumus un pārstartējiet KGet un mēģiniet ielādēt " "vēlreiz." -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "Vai esat pārliecināts ka vēlaties izdzēst grupu vārdā %1?" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, kde-format msgid "Remove Group" msgstr "Dzēst grupu" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "Vai esat pārliecināts ka vēlaties dzēst šīs grupas?" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, kde-format msgid "Remove groups" msgstr "Dzēst grupas" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, fuzzy, kde-format #| msgid "" #| "

    The following file has finished downloading:

    Pabeigta šī faila lejupielāde:

    %1

    " -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, fuzzy, kde-format #| msgid "Downloaded" msgid "Download added" msgstr "Lejupielādēts" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, fuzzy, kde-format #| msgid "" #| "

    The following file has finished downloading:

    Pabeigta šī faila lejupielāde:

    %1

    " -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, fuzzy, kde-format #| msgid "" #| "

    The following file has finished downloading:

    Pabeigta šī faila lejupielāde:

    %1

    " -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "Manas lejupielādes" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" @@ -647,17 +647,17 @@ "Fails %1 jau pastāv.\n" "Pārrakstīt?" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "Pārrakstīt esošu failu?" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "Nevar saglabāt iekš: %1" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -669,35 +669,35 @@ msgstr[1] "" msgstr[2] "" -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "Neatbalstīts protokols" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "Jauna lejupielāde" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "Ievadiet URL:" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, fuzzy, kde-format #| msgid "Save As" msgctxt "@title:window" msgid "Save As" msgstr "Saglabāt kā" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -706,7 +706,7 @@ "Kļūdains URL:\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, kde-format msgid "" "Malformed URL, protocol missing:\n" @@ -715,7 +715,7 @@ "Kļūdains URL, trūkst protokola:\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -730,12 +730,12 @@ "\n" "Lejupielādēt vēlreiz?" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, kde-format msgid "Download it again?" msgstr "Lejupielādēt vēlreiz?" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -750,17 +750,17 @@ "\n" "Dzēst un lejupielādēt vēlreiz?" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, kde-format msgid "Delete it and download again?" msgstr "Dzēst un lejupielādēt vēlreiz?" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "Nevar rakstīt mapē" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -771,34 +771,34 @@ "\n" "Vai izdzēst iepriekšējo un ielādēt no jauna?" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, kde-format msgid "File already downloaded. Download anyway?" msgstr "Fails jau lejupielādēts. Lejupielādēt vēlreiz?" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "Jūs jau ielādējat šo failu" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, kde-format msgid "File already exists" msgstr "Fails jau pastāv" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "" -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "" -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, fuzzy, kde-format #| msgid "" #| "

    Plugin loader could not load the plugin:
    %1

    " @@ -807,7 +807,7 @@ "

    Spraudņu ielādētājs nespēja ielādēt spraudni:
    %1

    " -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -818,7 +818,7 @@ "%1\n" "jo tā ir mape." -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -829,7 +829,7 @@ "%1\n" "jo tas nav lokāls fails." -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, fuzzy, kde-format #| msgid "" #| "

    The following file has finished downloading:

    Pabeigta šī faila lejupielāde:

    %1

    " -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, kde-format msgid "Download completed" msgstr "Lejupielāde pabeigta" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, fuzzy, kde-format #| msgid "" #| "

    The following file has finished downloading:

    Pabeigta šī faila lejupielāde:

    %1

    " -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, fuzzy, kde-format #| msgid "Download speed" msgid "Download started" msgstr "Lejupielādes ātrums" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, fuzzy, kde-format #| msgid "" #| "

    The following file has finished downloading:

    Pabeigta šī faila lejupielāde:

    %1

    " -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, fuzzy, kde-format #| msgid "Remove" msgid "Resolve" msgstr "Izņemt" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, kde-format msgid "KGet is now closing, as all downloads have completed." msgstr "KGet beidz darbu, jo visas lejupielādes ir pabeigtas." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "Dators tagad tiks izslēgts, jo visas lejupielādes ir pabeigtas." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, fuzzy, kde-format #| msgid "Auto shutdown" msgctxt "Shutting down computer" msgid "Shutdown" msgstr "Automātiski izslēgt datoru" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, fuzzy, kde-format #| msgid "The computer will now turn off, as all downloads have completed." msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "Dators tagad tiks izslēgts, jo visas lejupielādes ir pabeigtas." -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, fuzzy, kde-format #| msgid "The computer will now turn off, as all downloads have completed." msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "Dators tagad tiks izslēgts, jo visas lejupielādes ir pabeigtas." -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, fuzzy, kde-format #| msgctxt "Preview pending" #| msgid "Pending" @@ -926,19 +926,19 @@ msgid "Suspending" msgstr "Top" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, fuzzy, kde-format #| msgid "Aborted" msgctxt "abort the proposed action" msgid "Abort" msgstr "Pārtraukts" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "" -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, kde-format msgid "Downloads completed" msgstr "Lejupielādes pabeigtas" @@ -1952,21 +1952,21 @@ msgid "Decrease Priority" msgstr "Prioritāte" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 -#, kde-format +#: mainwindow.cpp:204 +#, fuzzy, kde-format +#| msgid "Delete Group" +#| msgid_plural "Delete Groups" +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "Dzēst grupu" -msgstr[1] "Dzēst grupas" -msgstr[2] "Dzēst grupas" +msgstr "Dzēst grupu" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 -#, kde-format +#: mainwindow.cpp:210 +#, fuzzy, kde-format +#| msgid "Rename Group..." +#| msgid_plural "Rename Groups..." +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "Pārdēvēt grupu..." -msgstr[1] "Pārdēvēt grupas..." -msgstr[2] "Pārdēvēt grupas..." +msgstr "Pārdēvēt grupu..." #: mainwindow.cpp:215 #, kde-format @@ -2311,8 +2311,8 @@ msgid "Which files the chunk is located in" msgstr "Kuri faili atrodas šajā gabalā" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2331,16 +2331,16 @@ msgid "Currently downloading:" msgstr "Šobrīt ielādē:" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, kde-format msgid "Downloaded:" msgstr "Lejupielādēti:" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -3212,8 +3212,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3277,8 +3277,8 @@ msgid "New Script...." msgstr "Jauns skripts..." -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, kde-format @@ -3614,6 +3614,22 @@ msgid "Failed to write to the file." msgstr "Neizdevās ierakstīt failā %1: %2" +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "Dzēst grupu" +msgstr[1] "Dzēst grupas" +msgstr[2] "Dzēst grupas" + +#: ui/contextmenu.cpp:120 +#, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "Pārdēvēt grupu..." +msgstr[1] "Pārdēvēt grupas..." +msgstr[2] "Pārdēvēt grupas..." + #: ui/droptarget.cpp:84 #, kde-format msgctxt "fix position for droptarget" @@ -3932,31 +3948,31 @@ msgstr "Atvērt failu" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, kde-format msgid "&File" msgstr "&Fails" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, kde-format msgid "&Downloads" msgstr "&Lejupielādes" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "Ie&statījumi" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "&Palīdzība" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "Galvenā rīkjosla " @@ -4349,8 +4365,8 @@ msgid "File size (in bytes):" msgstr "Faila izmērs (baitos):" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, kde-format msgid "Verification:" @@ -4928,18 +4944,18 @@ msgid "Remaining Time:" msgstr "Atlikušais laiks:" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, kde-format msgid "Transfer Settings for %1" msgstr "Ielādes %1 iestatījumi" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." msgstr "Mērķa mainīšana nenostrādāja, tas paliek nemainīts." -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "Destination unmodified" msgstr "Mērķis nav mainīts" diff -Nru kget-20.12.3/po/mr/kgetplugin.po kget-21.04.0/po/mr/kgetplugin.po --- kget-20.12.3/po/mr/kgetplugin.po 2021-03-02 00:48:41.000000000 +0000 +++ kget-21.04.0/po/mr/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2013-02-06 16:17+0530\n" "Last-Translator: Chetan Khona \n" "Language-Team: American English \n" @@ -47,18 +47,14 @@ msgid "No Links" msgstr "लिंक्स नाहीत" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "के-गेट डाउनलोड व्यवस्थापकाशी संवात करू शकत नाही." - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "संवाद त्रुटी" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format msgid "&Tools" msgstr "साधने (&T)" + +#~ msgid "Unable to communicate with the KGet download manager." +#~ msgstr "के-गेट डाउनलोड व्यवस्थापकाशी संवात करू शकत नाही." + +#~ msgid "Communication Error" +#~ msgstr "संवाद त्रुटी" diff -Nru kget-20.12.3/po/mr/kget.po kget-21.04.0/po/mr/kget.po --- kget-20.12.3/po/mr/kget.po 2021-03-02 00:48:41.000000000 +0000 +++ kget-21.04.0/po/mr/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" "PO-Revision-Date: 2013-04-01 10:57+0530\n" "Last-Translator: Chetan Khona \n" "Language-Team: American English \n" @@ -268,7 +268,7 @@ msgid " sec" msgstr " सेकंद" -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "के-वोलेट उघडणे शक्य झाले नाही " @@ -315,7 +315,7 @@ msgid "The width of the columns in the history view" msgstr "इतिहास दृश्यातील स्तंभांची रुंदी" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "प्लगइन्स" @@ -450,8 +450,8 @@ msgstr "सर्वात मजबूत (सर्वात हळू)" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -477,7 +477,7 @@ msgstr "कळ सर्व्हर्स :" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -545,71 +545,71 @@ "settings or restart KGet and retry downloading." msgstr "" -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "तुम्हाला नक्की या नावाचे समूह काढून टाकायचे आहेत का %1?" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, kde-format msgid "Remove Group" msgstr "समूह काढून टाका" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "तुम्हाला नक्की पुढील समूह काढून टाकायचे आहेत का?" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, kde-format msgid "Remove groups" msgstr "समूह काढून टाका" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    %1

    " msgstr "" -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, kde-format msgid "Download added" msgstr "डाउनलोड जोडले" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "" -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "" -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "माझे डाउनलोड" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" "Overwrite?" msgstr "" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "वर्तमान फाईल खोडून पुन्हा लिहायची आहे का?" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -620,35 +620,35 @@ msgstr[0] "" msgstr[1] "" -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "असमर्थीत शिष्टाचार" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "नवीन डाउनलोड" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "URL दाखल करा :" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, fuzzy, kde-format #| msgid "Save As" msgctxt "@title:window" msgid "Save As" msgstr "असे साठवा" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -657,7 +657,7 @@ "सदोषीत URL:\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, kde-format msgid "" "Malformed URL, protocol missing:\n" @@ -666,7 +666,7 @@ "सदोषीत URL, शिष्टाचार सापडला नाही :\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -676,12 +676,12 @@ "Download it again?" msgstr "" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, kde-format msgid "Download it again?" msgstr "ते पुन्हा डाउनलोड करायचे का?" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -691,17 +691,17 @@ "Delete it and download again?" msgstr "" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, kde-format msgid "Delete it and download again?" msgstr "ते काढून टाकून पुन्हा डाउनलोड करायचे का?" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "संचयीका लिखाणायोग्य नाही" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -709,39 +709,39 @@ "Download and delete the previous one?" msgstr "" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, kde-format msgid "File already downloaded. Download anyway?" msgstr "" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, kde-format msgid "File already exists" msgstr "फाईल आधीपासूनच अस्तित्वात आहे" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "" -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "महाजाळची जुळवणी नाही, बदल्या थांबवित आहे." -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "" -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -749,7 +749,7 @@ "as it is a directory." msgstr "" -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -757,31 +757,31 @@ "as it is not a local file." msgstr "" -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    %1

    " msgstr "" -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, kde-format msgid "Download completed" msgstr "डाउनलोड पूर्ण झाले" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    %1

    " msgstr "" -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, kde-format msgid "Download started" msgstr "डाउनलोड सुरु झाले" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    %2

    " msgstr "" -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, kde-format msgid "Resolve" msgstr "निवाडा करा" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, kde-format msgid "KGet is now closing, as all downloads have completed." msgstr "" -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "" -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgctxt "Shutting down computer" msgid "Shutdown" msgstr "बंद करा" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "हायबरनेट करत आहे" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgctxt "Suspending computer" msgid "Suspending" msgstr "अकार्यक्षम करत आहे" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, kde-format msgctxt "abort the proposed action" msgid "Abort" msgstr "रद्द करत आहे" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "" -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, kde-format msgid "Downloads completed" msgstr "डाउनलोड पूर्ण झाले" @@ -1647,19 +1647,21 @@ msgid "Decrease Priority" msgstr "प्राधान्यता कमी करा" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 -#, kde-format +#: mainwindow.cpp:204 +#, fuzzy, kde-format +#| msgid "Delete Group" +#| msgid_plural "Delete Groups" +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "समूह काढून टाका" -msgstr[1] "समूह काढून टाका" +msgstr "समूह काढून टाका" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 -#, kde-format +#: mainwindow.cpp:210 +#, fuzzy, kde-format +#| msgid "Rename Group..." +#| msgid_plural "Rename Groups..." +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "समूहाचे नाव बदला..." -msgstr[1] "समूहांचे नाव बदला..." +msgstr "समूहाचे नाव बदला..." #: mainwindow.cpp:215 #, kde-format @@ -1979,8 +1981,8 @@ msgid "Which files the chunk is located in" msgstr "" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -1999,16 +2001,16 @@ msgid "Currently downloading:" msgstr "सध्या डाउनलोड करत आहे :" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, kde-format msgid "Downloaded:" msgstr "डाउनलोड केलेले :" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -2850,8 +2852,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -2915,8 +2917,8 @@ msgid "New Script...." msgstr "नवीन स्क्रिप्ट...." -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, kde-format @@ -3239,6 +3241,20 @@ msgid "Failed to write to the file." msgstr "" +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "समूह काढून टाका" +msgstr[1] "समूह काढून टाका" + +#: ui/contextmenu.cpp:120 +#, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "समूहाचे नाव बदला..." +msgstr[1] "समूहांचे नाव बदला..." + #: ui/droptarget.cpp:84 #, kde-format msgctxt "fix position for droptarget" @@ -3552,31 +3568,31 @@ msgstr "फाईल उघडा" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, kde-format msgid "&File" msgstr "फाईल (&F)" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, kde-format msgid "&Downloads" msgstr "डाउनलोड (&D)" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "संयोजना (&S)" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "मदत (&H)" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "मुख्य साधनपट्टी" @@ -3953,8 +3969,8 @@ msgid "File size (in bytes):" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, kde-format msgid "Verification:" @@ -4505,18 +4521,18 @@ msgid "Remaining Time:" msgstr "उर्वरीत वेळ :" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, kde-format msgid "Transfer Settings for %1" msgstr "" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." msgstr "" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "Destination unmodified" msgstr "" diff -Nru kget-20.12.3/po/nb/kgetplugin.po kget-21.04.0/po/nb/kgetplugin.po --- kget-20.12.3/po/nb/kgetplugin.po 2021-03-02 00:48:41.000000000 +0000 +++ kget-21.04.0/po/nb/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2010-12-24 08:45+0100\n" "Last-Translator: Bjørn Steensrud \n" "Language-Team: Norwegian Bokmål \n" @@ -53,16 +53,6 @@ msgid "No Links" msgstr "Ingen lenker" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "Kunne ikke kommunisere med KGets nedlastingsbehandler." - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "Kommunikasjonsfeil" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format diff -Nru kget-20.12.3/po/nb/kget.po kget-21.04.0/po/nb/kget.po --- kget-20.12.3/po/nb/kget.po 2021-03-02 00:48:41.000000000 +0000 +++ kget-21.04.0/po/nb/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" "PO-Revision-Date: 2014-04-28 17:48+0200\n" "Last-Translator: Bjørn Steensrud \n" "Language-Team: Norwegian Bokmål \n" @@ -274,7 +274,7 @@ msgid " sec" msgstr " s" -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "Klarte ikke åpne KWallet" @@ -321,7 +321,7 @@ msgid "The width of the columns in the history view" msgstr "Bredden på kolonnene i historievisningen" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "Programtillegg" @@ -456,8 +456,8 @@ msgstr "Sterkest (langsomst)" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -483,7 +483,7 @@ msgstr "Nøkkeltjenere:" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -556,27 +556,27 @@ "tjenere til innstillingene, eller start KGet på nytt og forsøk nedlasting " "igjen." -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "Er du sikker på at du vil slette gruppen som heter %1?" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, kde-format msgid "Remove Group" msgstr "Fjern gruppe" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "Er du sikker på at du vil slette de følgende gruppene?" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, kde-format msgid "Remove groups" msgstr "Fjern grupper" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    Følgende overføring er blitt lagt til nedlastingslista:

    %1

    " -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, kde-format msgid "Download added" msgstr "Nedlasting lagt til" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "

    Følgende overføring er blitt lagt til nedlastingslista:

    " -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "

    Følgende overføringer er blitt lagt til nedlastingslista:

    " -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "Mine nedlastinger" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" @@ -614,17 +614,17 @@ "Målfila %1 finnes fra før.\n" "Vil du skrive over?" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "Skriv over eksisterende fil?" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "Klarte ikke å lagre %1" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -637,34 +637,34 @@ msgstr[1] "" "

    Følgende URLer kan ikke lastes ned, KGet støtter ikke protokollene:

    " -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "Ustøttet protokoll" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "Ny nedlasting" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "Oppgi nettadresse:" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, kde-format msgctxt "@title:window" msgid "Save As" msgstr "" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -673,7 +673,7 @@ "Feilskrevet nettadresse:\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, kde-format msgid "" "Malformed URL, protocol missing:\n" @@ -682,7 +682,7 @@ "Feilskrevet nettadresse, protokollen mangler:\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -697,12 +697,12 @@ "\n" "Laste ned igjen?" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, kde-format msgid "Download it again?" msgstr "Laste ned på nytt?" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -717,17 +717,17 @@ "\n" "Skal den slettes og lastes ned på nytt?" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, kde-format msgid "Delete it and download again?" msgstr "Slett og last ned igjen?" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "Mappa er skrivebeskyttet" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -738,39 +738,39 @@ "\n" "Vil du laste ned, og slette den forrige?" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, kde-format msgid "File already downloaded. Download anyway?" msgstr "Fila lastet ned fra før. Laste ned likevel?" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "Du er allerede i ferd med å laste ned den samme fila" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, kde-format msgid "File already exists" msgstr "Fila finnes fra før" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "Internettforbindelse er etablert, gjenopptar overføringer." -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "Ingen internettforbindelse, stopper overføringer." -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "Plugin-lasteren klarte ikke laste programtillegget: %1." -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -781,7 +781,7 @@ "%1\n" "siden det er en mappe." -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -792,7 +792,7 @@ "%1\n" "siden det ikke er en lokal fil." -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    Følgende fil er ferdig nedlastet:

    %1

    " -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, kde-format msgid "Download completed" msgstr "Nedlastingen er ferdig" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    Følgende overføring er startet:

    %1

    " -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, kde-format msgid "Download started" msgstr "Nedlasting startet" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    Det oppsto en feil i følgende overføring:

    %1

    Feilmeldinga er:

    %2

    " -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, kde-format msgid "Resolve" msgstr "Løs opp" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, kde-format msgid "KGet is now closing, as all downloads have completed." msgstr "KGet stenger nå, fordi alle nedlastinger er ferdige." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "Maskinen slår seg av nå, fordi alle nedlastinger er ferdige." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgctxt "Shutting down computer" msgid "Shutdown" msgstr "Steng av" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "Maskinen går nå i dvalemodus, fordi alle nedlastinger er ferdige." -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "Dvale" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "Maskinen går nå i hvilemodus, fordi alle nedlastinger er ferdige." -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgctxt "Suspending computer" msgid "Suspending" msgstr "Suspender" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, kde-format msgctxt "abort the proposed action" msgid "Abort" msgstr "Avbryt" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "

    Alle filoverføringer fullført.

    " -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, kde-format msgid "Downloads completed" msgstr "Nedlastinger er ferdige" @@ -1745,19 +1745,17 @@ msgid "Decrease Priority" msgstr "Minsk prioritet" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 +#: mainwindow.cpp:204 #, kde-format +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "Slett gruppe" -msgstr[1] "Slett grupper" +msgstr "" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 +#: mainwindow.cpp:210 #, kde-format +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "Endre navn på gruppe …" -msgstr[1] "Endre navn på grupper …" +msgstr "" #: mainwindow.cpp:215 #, kde-format @@ -2087,8 +2085,8 @@ msgid "Which files the chunk is located in" msgstr "Hvilke filer biten finnes i" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2107,16 +2105,16 @@ msgid "Currently downloading:" msgstr "Laster ned nå:" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, kde-format msgid "Downloaded:" msgstr "Nedlastet:" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -2986,8 +2984,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3051,8 +3049,8 @@ msgid "New Script...." msgstr "Nytt skript …" -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, kde-format @@ -3383,6 +3381,20 @@ msgid "Failed to write to the file." msgstr "Klarte ikke skrive til fila." +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "Slett gruppe" +msgstr[1] "Slett grupper" + +#: ui/contextmenu.cpp:120 +#, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "Endre navn på gruppe …" +msgstr[1] "Endre navn på grupper …" + #: ui/droptarget.cpp:84 #, kde-format msgctxt "fix position for droptarget" @@ -3693,31 +3705,31 @@ msgstr "Åpne fil" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, kde-format msgid "&File" msgstr "&Fil" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, kde-format msgid "&Downloads" msgstr "&Nedlastinger" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "&Innstillinger" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "&Hjelp" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "Hovedverktøylinje" @@ -4098,8 +4110,8 @@ msgid "File size (in bytes):" msgstr "Filstørrelse (i byte):" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, kde-format msgid "Verification:" @@ -4659,18 +4671,18 @@ msgid "Remaining Time:" msgstr "Tid som gjenstår:" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, kde-format msgid "Transfer Settings for %1" msgstr "Overføringsinnstillinger for %1" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." msgstr "Det virket ikke å endre målet, målet forblir uendret." -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "Destination unmodified" msgstr "Mål uendret" diff -Nru kget-20.12.3/po/nds/kgetplugin.po kget-21.04.0/po/nds/kgetplugin.po --- kget-20.12.3/po/nds/kgetplugin.po 2021-03-02 00:48:41.000000000 +0000 +++ kget-21.04.0/po/nds/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2011-06-05 06:19+0200\n" "Last-Translator: Manfred Wiese \n" "Language-Team: Low Saxon \n" @@ -47,22 +47,18 @@ msgid "No Links" msgstr "Keen Links" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "Keen Kommunikatschoon mit KGet-Daallaadpleger mööglich." - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "Kommunikatschoonfehler" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format msgid "&Tools" msgstr "&Warktüüch" +#~ msgid "Unable to communicate with the KGet download manager." +#~ msgstr "Keen Kommunikatschoon mit KGet-Daallaadpleger mööglich." + +#~ msgid "Communication Error" +#~ msgstr "Kommunikatschoonfehler" + #~ msgid "Plugins" #~ msgstr "Modulen" diff -Nru kget-20.12.3/po/nds/kget.po kget-21.04.0/po/nds/kget.po --- kget-20.12.3/po/nds/kget.po 2021-03-02 00:48:41.000000000 +0000 +++ kget-21.04.0/po/nds/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" "PO-Revision-Date: 2014-06-29 22:07+0200\n" "Last-Translator: Sönke Dibbern \n" "Language-Team: Low Saxon \n" @@ -268,7 +268,7 @@ msgid " sec" msgstr " s" -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "De Knipp lett sik nich opmaken." @@ -315,7 +315,7 @@ msgid "The width of the columns in the history view" msgstr "De Breed vun de Vörgeschichtansicht ehr Striepen" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "Modulen" @@ -450,8 +450,8 @@ msgstr "Bannig dannig (bannig langsam)" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -477,7 +477,7 @@ msgstr "Slötelservers:" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -549,27 +549,27 @@ "Keen bruukbor Slötelserver funnen, keen Slötel daallaadt. Föög de Instellen " "mehr Slötelservers to, oder start KGet nieg un versöök dat nochmaal." -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "Wullt Du dissen Koppel redig wegdoon? \"%1\"" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, kde-format msgid "Remove Group" msgstr "Koppel wegdoon" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "Wullt Du disse Koppeln redig wegdoon?" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, kde-format msgid "Remove groups" msgstr "Koppeln wegdoon" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    Disse Överdregen wöör de Daalladen-List toföögt:

    %1

    " -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, kde-format msgid "Download added" msgstr "Daalladen toföögt" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "

    Disse Överdregen wöör de Daalladen-List toföögt:

    " -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "

    Disse Överdregen wöörn de Daalladen-List toföögt:

    " -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "De Daalladen" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" @@ -607,17 +607,17 @@ "Dat gifft de Datei \"%1\" al.\n" "Wullt Du ehr överschrieven?" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "Vörhannen Datei överschrieven?" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "\"%1\" lett sik nich sekern" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -632,35 +632,35 @@ "

    Disse URL laat sik nich daalladen. - KGet ünnerstütt de Protokollen nich:" "

    " -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "Protokoll warrt nich ünnerstütt" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "Nieg Daalladen" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "Bitte URL ingeven:" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, fuzzy, kde-format #| msgid "Save As" msgctxt "@title:window" msgid "Save As" msgstr "Sekern as" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -669,7 +669,7 @@ "Leeg URL:\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, kde-format msgid "" "Malformed URL, protocol missing:\n" @@ -678,7 +678,7 @@ "Leeg URL, Protokoll fehlt:\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -693,12 +693,12 @@ "\n" "Wullt Du em nochmaal daalladen?" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, kde-format msgid "Download it again?" msgstr "Nochmaal daalladen?" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -713,17 +713,17 @@ "\n" "Wegdoon un nochmaal daalladen?" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, kde-format msgid "Delete it and download again?" msgstr "Wegdoon und nochmaal daalladen?" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "Schrieven na Orner nich mööglich" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -734,39 +734,39 @@ "\n" "Wullt Du disse daalladen un de annere wegdoon?" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, kde-format msgid "File already downloaded. Download anyway?" msgstr "Datei al daallaadt. Liekers daalladen?" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "Du laadst de sülve Datei al daal" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, kde-format msgid "File already exists" msgstr "Gifft de Datei al" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "Tokoppelt. Överdregen warrt wedder opnahmen" -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "Afkoppelt. Överdregen warrt anhollen" -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "Dat Moduul lett sik nich laden: %1" -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -777,7 +777,7 @@ "warrt nich wegdaan.\n" "Dat is en Orner." -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -788,7 +788,7 @@ "warrt nich wegdaan.\n" "Dat is keen lokaal Datei." -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    Disse Datei is nu heel daallaadt:

    %1

    " -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, kde-format msgid "Download completed" msgstr "Daalladen afslaten" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    Disse Överdregen hett anfungen:

    %1

    " -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, kde-format msgid "Download started" msgstr "Daalladen anfungen" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    %1

    De Fehlermellen is:

    %2" -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, kde-format msgid "Resolve" msgstr "Oplösen" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, kde-format msgid "KGet is now closing, as all downloads have completed." msgstr "All Daalladen sünd afslaten, KGet maakt sik nu ut." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "De Reekner maakt sik nu ut, all Daalladen sünd afslaten." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgctxt "Shutting down computer" msgid "Shutdown" msgstr "Utmaken" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "De Reekner warrt op Fastplaat infroren, all Daalladen sünd afslaten." -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "An't Infreren" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "De Reekner warrt nu infroren (in't RAM), all Daalladen sünd afslaten." -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgctxt "Suspending computer" msgid "Suspending" msgstr "An't Inslapen/Infreren" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, kde-format msgctxt "abort the proposed action" msgid "Abort" msgstr "Afbreken" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "

    All Överdregen sünd afslaten.

    " -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, kde-format msgid "Downloads completed" msgstr "Daalladen afslaten" @@ -1753,19 +1753,21 @@ msgid "Decrease Priority" msgstr "Sietere Prioriteet" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 -#, kde-format +#: mainwindow.cpp:204 +#, fuzzy, kde-format +#| msgid "Delete Group" +#| msgid_plural "Delete Groups" +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "Koppel wegdoon" -msgstr[1] "Koppeln wegdoon" +msgstr "Koppel wegdoon" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 -#, kde-format +#: mainwindow.cpp:210 +#, fuzzy, kde-format +#| msgid "Rename Group..." +#| msgid_plural "Rename Groups..." +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "Koppel ümnömen..." -msgstr[1] "Koppeln ümnömen..." +msgstr "Koppel ümnömen..." #: mainwindow.cpp:215 #, kde-format @@ -2096,8 +2098,8 @@ msgid "Which files the chunk is located in" msgstr "De Dateien, binnen de de Block liggt" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2116,16 +2118,16 @@ msgid "Currently downloading:" msgstr "Opstunns bi to daalladen:" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, kde-format msgid "Downloaded:" msgstr "Daallaadt:" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -2993,8 +2995,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3058,8 +3060,8 @@ msgid "New Script...." msgstr "Nieg Skript..." -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, kde-format @@ -3388,6 +3390,20 @@ msgid "Failed to write to the file." msgstr "De Datei lett sik nich schrieven." +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "Koppel wegdoon" +msgstr[1] "Koppeln wegdoon" + +#: ui/contextmenu.cpp:120 +#, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "Koppel ümnömen..." +msgstr[1] "Koppeln ümnömen..." + #: ui/droptarget.cpp:84 #, kde-format msgctxt "fix position for droptarget" @@ -3701,31 +3717,31 @@ msgstr "Datei opmaken" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, kde-format msgid "&File" msgstr "&Datei" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, kde-format msgid "&Downloads" msgstr "&Daalladen" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "&Instellen" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "&Hülp" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "Hööft-Warktüüchbalken" @@ -4109,8 +4125,8 @@ msgid "File size (in bytes):" msgstr "Dateigrött (in Bytes):" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, kde-format msgid "Verification:" @@ -4674,18 +4690,18 @@ msgid "Remaining Time:" msgstr "Nablieven Tiet:" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, kde-format msgid "Transfer Settings for %1" msgstr "Överdreeginstellen för %1" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." msgstr "Dat Ännern vun't Teel funkscheneert nich, dat Teel blifft, as't is." -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "Destination unmodified" msgstr "Teel nich ännert" diff -Nru kget-20.12.3/po/nl/kgetplugin.po kget-21.04.0/po/nl/kgetplugin.po --- kget-20.12.3/po/nl/kgetplugin.po 2021-03-02 00:48:41.000000000 +0000 +++ kget-21.04.0/po/nl/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2011-02-05 12:41+0100\n" "Last-Translator: Freek de Kruijf \n" "Language-Team: Dutch \n" @@ -47,18 +47,14 @@ msgid "No Links" msgstr "Geen koppelingen" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "Niet in staat om met de KGet-downloadbeheerder te communiceren." - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "Communicatiefout" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format msgid "&Tools" msgstr "H&ulpmiddelen" + +#~ msgid "Unable to communicate with the KGet download manager." +#~ msgstr "Niet in staat om met de KGet-downloadbeheerder te communiceren." + +#~ msgid "Communication Error" +#~ msgstr "Communicatiefout" diff -Nru kget-20.12.3/po/nl/kget.po kget-21.04.0/po/nl/kget.po --- kget-20.12.3/po/nl/kget.po 2021-03-02 00:48:42.000000000 +0000 +++ kget-21.04.0/po/nl/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -17,20 +17,20 @@ # Kristof Bal , 2009. # Freek de Kruijf , 2009, 2010. # Freek de Kruijf , 2010, 2011, 2012. -# Freek de Kruijf , 2011, 2013, 2014, 2017, 2018, 2019, 2020. +# Freek de Kruijf , 2011, 2013, 2014, 2017, 2018, 2019, 2020, 2021. msgid "" msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" -"PO-Revision-Date: 2020-01-19 19:45+0100\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" +"PO-Revision-Date: 2021-03-01 10:41+0100\n" "Last-Translator: Freek de Kruijf \n" "Language-Team: Dutch \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 19.12.1\n" +"X-Generator: Lokalize 20.12.2\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" #: conf/autopastemodel.cpp:174 @@ -284,7 +284,7 @@ msgid " sec" msgstr " sec" -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "Kon KWallet niet openen" @@ -331,7 +331,7 @@ msgid "The width of the columns in the history view" msgstr "De breedte van de kolommen in het geschiedenisbeeld" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "Plug-ins" @@ -466,8 +466,8 @@ msgstr "Het sterkst (het langzaamst)" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -493,7 +493,7 @@ msgstr "Sleutelservers:" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -567,27 +567,27 @@ "Geen bruikbare sleutelserver gevonden, sleutel kon niet worden gedownload. " "Voeg meer servers toe of herstart KGet en download opnieuw." -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "Wilt u de groep genaamd %1 verwijderen?" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, kde-format msgid "Remove Group" msgstr "Groep verwijderen" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "Wilt u echt de volgende groepen verwijderen?" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, kde-format msgid "Remove groups" msgstr "Groepen verwijderen" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    De volgende overdracht is toegevoegd aan de lijst met downloads:

    %1

    " -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, kde-format msgid "Download added" msgstr "Download toegevoegd" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "" "

    De volgende overdracht is toegevoegd aan de lijst met downloads:

    " -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "" "

    De volgende overdrachten zijn toegevoegd aan de lijst met downloads:

    " -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "Mijn downloads" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" @@ -627,17 +627,17 @@ "Bestand %1 bestaat reeds.\n" "Wilt u het vervangen?" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "Bestaand bestand overschrijven?" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "Kon niet opslaan naar: %1" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -652,34 +652,34 @@ "

    De volgende URL's kunnen niet worden gedownload, hun protocollen worden " "niet door KGet ondersteund:

    " -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "Protocol niet ondersteund" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "Nieuwe download" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "URL-adres invoeren:" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "Kies een map" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, kde-format msgctxt "@title:window" msgid "Save As" msgstr "Opslaan als" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -688,7 +688,7 @@ "Verkeerd gevormd URL-adres:\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, kde-format msgid "" "Malformed URL, protocol missing:\n" @@ -697,7 +697,7 @@ "Verkeerd gevormd URL-adres, protocol ontbreekt:\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -712,12 +712,12 @@ "\n" "Dit opnieuw downloaden?" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, kde-format msgid "Download it again?" msgstr "Opnieuw downloaden?" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -732,17 +732,17 @@ "\n" "Deze verwijderen en opnieuw downloaden?" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, kde-format msgid "Delete it and download again?" msgstr "Verwijder het opnieuw downloaden?" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "Map is niet schrijfbaar" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -753,39 +753,39 @@ "\n" "Downloaden en de vorige verwijderen?" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, kde-format msgid "File already downloaded. Download anyway?" msgstr "Bestand is al gedownload. Toch downloaden?" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "U bent hetzelfde bestand al aan het downloaden" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, kde-format msgid "File already exists" msgstr "Bestand bestaat reeds" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "Internet verbinding is opgezet, overdrachten worden voortgezet." -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "Geen internet verbinding, overdrachten worden gestopt." -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "De lader van plugins kon de plugin niet laden: %1." -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -796,7 +796,7 @@ "wordt niet verwijderd\n" "omdat het een map is." -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -807,7 +807,7 @@ "wordt niet verwijderd\n" "omdat het geen lokaal bestand is." -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    Het volgende bestand is gereed met downloaden:

    %1

    " -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, kde-format msgid "Download completed" msgstr "Download voltooid" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    De volgende overdracht is opgestrart:

    " "%1

    " -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, kde-format msgid "Download started" msgstr "Download gestart" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    \\%1

    De foutboodschap is:

    " "%2

    " -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, kde-format msgid "Resolve" msgstr "Oplossen" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, kde-format msgid "KGet is now closing, as all downloads have completed." msgstr "KGet zal nu worden afgesloten omdat alle downloads zijn voltooid." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "" "De computer zal nu worden afgesloten omdat alle downloads zijn voltooid." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgctxt "Shutting down computer" msgid "Shutdown" msgstr "Afsluiten" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "" "De computer zal nu in slaapstand naar schijf gaan omdat alle downloads zijn " "voltooid." -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "In slaapstand" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "" "De computer zal nu in slaapstand naar RAM gaan omdat alle downloads zijn " "voltooid." -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgctxt "Suspending computer" msgid "Suspending" msgstr "In slaapstand gaan" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, kde-format msgctxt "abort the proposed action" msgid "Abort" msgstr "Afbreken" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "

    Alle overdrachten zijn gereed.

    " -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, kde-format msgid "Downloads completed" msgstr "Voltooide downloads" @@ -1776,19 +1776,17 @@ msgid "Decrease Priority" msgstr "Prioriteit verkleinen" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 +#: mainwindow.cpp:204 #, kde-format +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "Groep verwijderen" -msgstr[1] "Groepen verwijderen" +msgstr "Groep verwijderen" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 +#: mainwindow.cpp:210 #, kde-format +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "Groep hernoemen..." -msgstr[1] "Groepen hernoemen..." +msgstr "Groep hernoemen..." #: mainwindow.cpp:215 #, kde-format @@ -2121,8 +2119,8 @@ msgid "Which files the chunk is located in" msgstr "In welke bestanden de chunk zit" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2141,16 +2139,16 @@ msgid "Currently downloading:" msgstr "Nu aan het downloaden:" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, kde-format msgid "Downloaded:" msgstr "Gedownload:" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -3022,8 +3020,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3087,8 +3085,8 @@ msgid "New Script...." msgstr "Nieuw script...." -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, kde-format @@ -3420,6 +3418,20 @@ msgid "Failed to write to the file." msgstr "Kon niet naar het bestand schrijven." +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "Groep verwijderen" +msgstr[1] "Groepen verwijderen" + +#: ui/contextmenu.cpp:120 +#, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "Groep hernoemen..." +msgstr[1] "Groepen hernoemen..." + #: ui/droptarget.cpp:84 #, kde-format msgctxt "fix position for droptarget" @@ -3731,31 +3743,31 @@ msgstr "Bestand openen" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, kde-format msgid "&File" msgstr "&Bestand" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, kde-format msgid "&Downloads" msgstr "&Downloads" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "&Instellingen" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "&Help" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "Hoofdwerkbalk" @@ -4136,8 +4148,8 @@ msgid "File size (in bytes):" msgstr "Bestandsgrootte (in bytes):" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, kde-format msgid "Verification:" @@ -4702,19 +4714,19 @@ msgid "Remaining Time:" msgstr "Resterende tijd:" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, kde-format msgid "Transfer Settings for %1" msgstr "Overdrachtsinstellingen voor %1" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." msgstr "" "Wijzigen van de bestemming werkte niet, de bestemming blijft ongewijzigd." -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "Destination unmodified" msgstr "Bestemming ongewijzigd" diff -Nru kget-20.12.3/po/nn/kgetplugin.po kget-21.04.0/po/nn/kgetplugin.po --- kget-20.12.3/po/nn/kgetplugin.po 2021-03-02 00:48:42.000000000 +0000 +++ kget-21.04.0/po/nn/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2016-11-13 11:36+0100\n" "Last-Translator: Karl Ove Hufthammer \n" "Language-Team: Norwegian Nynorsk \n" @@ -50,16 +50,6 @@ msgid "No Links" msgstr "Ingen lenkjer" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "Klarte ikkje kommunisera med nedlastingshandsamaren KGet." - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "Kommunikasjonsfeil" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format diff -Nru kget-20.12.3/po/nn/kget.po kget-21.04.0/po/nn/kget.po --- kget-20.12.3/po/nn/kget.po 2021-03-02 00:48:42.000000000 +0000 +++ kget-21.04.0/po/nn/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" "PO-Revision-Date: 2020-12-13 13:52+0100\n" "Last-Translator: Karl Ove Hufthammer \n" "Language-Team: Norwegian Nynorsk \n" @@ -272,7 +272,7 @@ msgid " sec" msgstr " s" -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "Klarte ikkje opna KDE-lommeboka" @@ -319,7 +319,7 @@ msgid "The width of the columns in the history view" msgstr "Breidda på kolonnane i overføringsloggen." -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "Programtillegg" @@ -455,8 +455,8 @@ msgstr "Sterkast (saktast)" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -482,7 +482,7 @@ msgstr "Nøkkeltenarar:" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -552,27 +552,27 @@ "Kan ikkje lasta ned nøkkel, då ingen passande nøkkeltenar vart funnen. Legg " "til tenarar i oppsettet, eller start KGet på nytt og prøv igjen." -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "Er du sikker på at du vil fjerna gruppa %1?" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, kde-format msgid "Remove Group" msgstr "Fjern gruppe" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "Er du sikker på at du vil fjerna desse gruppene?" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, kde-format msgid "Remove groups" msgstr "Fjern grupper" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    Denne overføringa er lagd til på overføringslista:

    %1

    " -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, kde-format msgid "Download added" msgstr "Nedlasting lagd til" # «Overføringsliste» fordi KGet kan både lasta ned og opp (for eksempel via Bittorrent). -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "

    Denne overføringa er lagd til på overføringslista:

    " # «Overføringsliste» fordi KGet kan både lasta ned og opp (for eksempel via Bittorrent). -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "

    Desse overføringane er lagde til på overføringslista:

    " -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "Nedlastingar" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" @@ -612,18 +612,18 @@ "Fila %1 finst frå før.\n" "Vil du skriva over ho?" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "Vil du skriva over fila?" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "Kan ikkje lagra til %1" # Treng vel ikkje vera ei nettadresse. -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -636,34 +636,34 @@ msgstr[1] "" "

    Kan ikkje lasta desse adressene, då KGet ikkje støttar protokollane:

    " -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "Protokollen er ikkje støtta" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "Ny nedlasting" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "Skriv inn adresse:" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, kde-format msgctxt "@title:window" msgid "Save As" msgstr "" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -672,7 +672,7 @@ "Adressa er ugyldig:\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, kde-format msgid "" "Malformed URL, protocol missing:\n" @@ -681,7 +681,7 @@ "Adressa er ugyldig, då ho må innehalda ein protokoll:\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -696,13 +696,13 @@ "\n" "Vil du lasta ho ned på nytt?" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, kde-format msgid "Download it again?" msgstr "Vil du lasta ned på nytt?" # Handlinga slettar òg fila frå disken. -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -717,18 +717,18 @@ "\n" "Vil du sletta fila og lasta ned på nytt?" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, kde-format msgid "Delete it and download again?" msgstr "Sletta fila og lasta ned på nytt?" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "Kan ikkje skriva til mappa" # Handlinga slettar òg fila frå disken. -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -739,40 +739,40 @@ "\n" "Vil du sletta fila og lasta ned frå den nye adressa?" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, kde-format msgid "File already downloaded. Download anyway?" msgstr "Fila er alt lasta ned. Vil du lasta ho ned på nytt?" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "Du held alt på å lasta ned denne fila" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, kde-format msgid "File already exists" msgstr "Fila finst frå før" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "Kopla til internett, så overføringane held fram." -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "Ikkje kopla til internett, så overføringane stoppar." # «%1» er eit filnamn. -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "Klarte ikkje lasta programtillegget %1." -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -783,7 +783,7 @@ "%1\n" "då det er ei mappe." -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -794,7 +794,7 @@ "%1\n" "då det ikkje er ei lokal fil." -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    Denne fila er ferdig nedlasta:

    %1

    " -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, kde-format msgid "Download completed" msgstr "Nedlastinga er fullført" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    Denne overføringa er starta:

    %1

    " -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, kde-format msgid "Download started" msgstr "Nedlastinga er starta" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    Det oppstod ein feil med denne overføringa:

    %1

    Feilmeldinga er:

    %2

    " -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, kde-format msgid "Resolve" msgstr "" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, kde-format msgid "KGet is now closing, as all downloads have completed." msgstr "KGet vert no avslutta, då alle nedlastingane er fullførte." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "Maskina vert no slått av, då alle nedlastingane er fullførte." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgctxt "Shutting down computer" msgid "Shutdown" msgstr "Slår av maskina" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "Maskina går no i kvilemodus, då alle nedlastingane er fullførte." -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "Maskina går i dvalemodus" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "" "Maskina går no i kvilemodus til minnet, då alle nedlastingane er fullførte." -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgctxt "Suspending computer" msgid "Suspending" msgstr "Maskina går i kvilemodus" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, kde-format msgctxt "abort the proposed action" msgid "Abort" msgstr "Avbryt" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "

    Alle overføringane er fullførte.

    " -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, kde-format msgid "Downloads completed" msgstr "Nedlastingane er fullførte" @@ -1775,19 +1775,17 @@ msgid "Decrease Priority" msgstr "Lågare prioritet" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 +#: mainwindow.cpp:204 #, kde-format +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "Fjern gruppe" -msgstr[1] "Fjern grupper" +msgstr "" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 +#: mainwindow.cpp:210 #, kde-format +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "Endra namn på gruppe …" -msgstr[1] "Endra namn på grupper …" +msgstr "" #: mainwindow.cpp:215 #, kde-format @@ -2125,8 +2123,8 @@ msgid "Which files the chunk is located in" msgstr "Kva for filer blokka er ein del av" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2145,16 +2143,16 @@ msgid "Currently downloading:" msgstr "Lastar ned no:" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, kde-format msgid "Downloaded:" msgstr "Lasta ned:" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -3022,8 +3020,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3088,8 +3086,8 @@ msgid "New Script...." msgstr "" -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, kde-format @@ -3416,6 +3414,20 @@ msgid "Failed to write to the file." msgstr "Klarte ikkje skriva til fila." +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "Fjern gruppe" +msgstr[1] "Fjern grupper" + +#: ui/contextmenu.cpp:120 +#, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "Endra namn på gruppe …" +msgstr[1] "Endra namn på grupper …" + # unreviewed-context #: ui/droptarget.cpp:84 #, kde-format @@ -3729,31 +3741,31 @@ msgstr "Opna fil" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, kde-format msgid "&File" msgstr "&Fil" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, kde-format msgid "&Downloads" msgstr "&Nedlastingar" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "&Innstillingar" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "&Hjelp" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "Hovudverktøylinje" @@ -4129,8 +4141,8 @@ msgid "File size (in bytes):" msgstr "Filstorleik (i byte):" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, kde-format msgid "Verification:" @@ -4680,18 +4692,18 @@ msgid "Remaining Time:" msgstr "Tid att" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, kde-format msgid "Transfer Settings for %1" msgstr "Overføringsinnstillingar for %1" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." msgstr "" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "Destination unmodified" msgstr "Målet ikkje endra" diff -Nru kget-20.12.3/po/pa/kgetplugin.po kget-21.04.0/po/pa/kgetplugin.po --- kget-20.12.3/po/pa/kgetplugin.po 2021-03-02 00:48:42.000000000 +0000 +++ kget-21.04.0/po/pa/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2011-06-29 22:00+0530\n" "Last-Translator: A S Alam \n" "Language-Team: Punjabi/Panjabi \n" @@ -47,22 +47,15 @@ msgid "No Links" msgstr "ਕੋਈ ਸਬੰਧ ਨਹੀਂ" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "" - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "ਕਮਿਊਨੀਕੇਸ਼ਨ ਗਲਤੀ" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format msgid "&Tools" msgstr "ਟੂਲ(&T)" +#~ msgid "Communication Error" +#~ msgstr "ਕਮਿਊਨੀਕੇਸ਼ਨ ਗਲਤੀ" + #~ msgid "Plugins" #~ msgstr "ਪਲੱਗਇਨਾਂ" diff -Nru kget-20.12.3/po/pa/kget.po kget-21.04.0/po/pa/kget.po --- kget-20.12.3/po/pa/kget.po 2021-03-02 00:48:42.000000000 +0000 +++ kget-21.04.0/po/pa/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" "PO-Revision-Date: 2010-02-02 08:03+0530\n" "Last-Translator: A S Alam \n" "Language-Team: ਪੰਜਾਬੀ \n" @@ -277,7 +277,7 @@ msgid " sec" msgstr "" -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "" @@ -324,7 +324,7 @@ msgid "The width of the columns in the history view" msgstr "" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "ਪਲੱਗਇਨਾਂ" @@ -463,8 +463,8 @@ msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -491,7 +491,7 @@ msgstr "ਗਤੀ" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -559,55 +559,55 @@ "settings or restart KGet and retry downloading." msgstr "" -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, fuzzy, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "ਕੀ ਤੁਸੀਂ ਇਹ ਸੰਚਾਰ ਹਟਾਉਣ ਲਈ ਯਕੀਨੀ ਹੋ?" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, kde-format msgid "Remove Group" msgstr "ਗਰੁੱਪ ਹਟਾਓ" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, fuzzy, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "ਕੀ ਤੁਸੀਂ ਇਹ ਸੰਚਾਰ ਹਟਾਉਣ ਲਈ ਯਕੀਨੀ ਹੋ?" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, kde-format msgid "Remove groups" msgstr "ਗਰੁੱਪ ਹਟਾਓ" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    %1

    " msgstr "" -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, fuzzy, kde-format #| msgid "Downloaded" msgid "Download added" msgstr "ਡਾਊਨਲੋਡ ਕੀਤੇ" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "" -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "" -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "ਮੇਰੇ ਡਾਊਨਲੋਡ" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" @@ -616,17 +616,17 @@ "ਫਾਇਲ %1 ਪਹਿਲਾਂ ਹੀ ਮੌਜੂਦ ਹੈ।\n" "ਉੱਤੇ ਲਿਖਣਾ?" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "ਮੌਜੂਦਾ ਫਾਇਲ ਉੱਤੇ ਲਿਖਣਾ?" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "ਸੰਭਾਲਣ ਲਈ ਅਸਮਰੱਥ: %1" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -637,35 +637,35 @@ msgstr[0] "" msgstr[1] "" -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "ਪਰੋਟੋਕਾਲ ਸਹਾਇਕ ਨਹੀਂ" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "ਨਵਾਂ ਡਾਊਨਲੋਡ" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "URL ਦਿਓ:" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, fuzzy, kde-format #| msgid "Save As" msgctxt "@title:window" msgid "Save As" msgstr "ਇੰਝ ਸੰਭਾਲੋ" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -674,7 +674,7 @@ "ਗਲਤ URL:\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, kde-format msgid "" "Malformed URL, protocol missing:\n" @@ -683,7 +683,7 @@ "ਗਲਤ URL, ਪਰੋਟੋਕਾਲ ਮੌਜੂਦ ਨਹੀਂ:\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -693,12 +693,12 @@ "Download it again?" msgstr "" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, kde-format msgid "Download it again?" msgstr "ਕੀ ਮੁੜ ਡਾਊਨਲੋਡ ਕਰਨਾ?" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -708,17 +708,17 @@ "Delete it and download again?" msgstr "" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, fuzzy, kde-format msgid "Delete it and download again?" msgstr "ਮੁੜ ਡਾਊਨਲੋਡ" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "ਡਾਇਰੈਕਟਰੀ ਲਿਖਣਯੋਗ ਨਹੀਂ" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -726,39 +726,39 @@ "Download and delete the previous one?" msgstr "" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, kde-format msgid "File already downloaded. Download anyway?" msgstr "ਫਾਇਲ ਪਹਿਲਾਂ ਹੀ ਡਾਊਨਲੋਡ ਹੈ। ਕਿਵੇਂ ਵੀ ਡਾਊਨਲੋਡ ਕਰਨੀ ਹੈ?" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "ਤੁਸੀਂ ਇਹੀ ਫਾਇਲ ਡਾਊਨਲੋਡ ਕਰ ਰਹੇ ਹੋ" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, kde-format msgid "File already exists" msgstr "ਫਾਇਲ ਪਹਿਲਾਂ ਹੀ ਮੌਜੂਦ ਹੈ" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "" -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "" -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "" -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -769,7 +769,7 @@ "ਨੂੰ ਹਟਾਇਆ ਨਹੀਂ ਜਾਦਾ ਹੈ,\n" "ਕਿਉਕਿ ਇਹ ਡਾਇਰੈਕਟਰੀ ਹੈ।" -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -780,32 +780,32 @@ "ਨੂੰ ਹਟਾਇਆ ਨਹੀਂ\n" "ਜਾ ਸਕਿਆ, ਕਿਉਂਕਿ ਇਹ ਸਥਾਨਕ ਫਾਇਲ ਨਹੀਂ ਹੈ।" -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    %1

    " msgstr "" -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, kde-format msgid "Download completed" msgstr "ਡਾਊਨਲੋਡ ਮੁਕੰਮਲ" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    %1

    " msgstr "" -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, fuzzy, kde-format #| msgid "Download speed" msgid "Download started" msgstr "ਡਾਊਨਲੋਡ ਸਪੀਡ" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    %2

    " msgstr "" -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, fuzzy, kde-format #| msgid "Remove" msgid "Resolve" msgstr "ਹਟਾਓ" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, fuzzy, kde-format #| msgid "All the downloads are finished." msgid "KGet is now closing, as all downloads have completed." msgstr "ਸਭ ਡਾਊਨਲੋਡ ਮੁਕੰਮਲ ਹੋ ਗਏ ਹਨ।" -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "ਸਭ ਡਾਊਨਲੋਡ ਮੁਕੰਮਲ ਹੋ ਗਏ ਹਨ ਤਾਂ ਕੰਪਿਊਟਰ ਬੰਦ ਕਰ ਦਿੱਤਾ ਜਾਵੇਗਾ।" -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, fuzzy, kde-format #| msgid "Auto shutdown" msgctxt "Shutting down computer" msgid "Shutdown" msgstr "ਆਟੋਮੈਟਿਕ ਬੰਦ ਕਰੋ" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, fuzzy, kde-format #| msgid "The computer will now turn off, as all downloads have completed." msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "ਸਭ ਡਾਊਨਲੋਡ ਮੁਕੰਮਲ ਹੋ ਗਏ ਹਨ ਤਾਂ ਕੰਪਿਊਟਰ ਬੰਦ ਕਰ ਦਿੱਤਾ ਜਾਵੇਗਾ।" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, fuzzy, kde-format #| msgid "The computer will now turn off, as all downloads have completed." msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "ਸਭ ਡਾਊਨਲੋਡ ਮੁਕੰਮਲ ਹੋ ਗਏ ਹਨ ਤਾਂ ਕੰਪਿਊਟਰ ਬੰਦ ਕਰ ਦਿੱਤਾ ਜਾਵੇਗਾ।" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, fuzzy, kde-format #| msgctxt "Preview pending" #| msgid "Pending" @@ -863,19 +863,19 @@ msgid "Suspending" msgstr "ਬਾਕੀ" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, fuzzy, kde-format #| msgid "Aborted" msgctxt "abort the proposed action" msgid "Abort" msgstr "ਅਧੂਰਾ ਛੱਡਿਆ" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "" -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, kde-format msgid "Downloads completed" msgstr "ਡਾਊਨਲੋਡ ਮੁਕੰਮਲ" @@ -1767,19 +1767,17 @@ msgid "Decrease Priority" msgstr "ਤਰਜੀਹ" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 -#, kde-format +#: mainwindow.cpp:204 +#, fuzzy, kde-format +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "" -msgstr[1] "" +msgstr "ਕੋਈ ਫਾਇਲ ਨਹੀਂ ਚੁਣੀ" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 +#: mainwindow.cpp:210 #, fuzzy, kde-format +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "ਮੂਲ ਫੋਲਡਰ" -msgstr[1] "ਮੂਲ ਫੋਲਡਰ" +msgstr "ਮੂਲ ਫੋਲਡਰ" #: mainwindow.cpp:215 #, kde-format @@ -2116,8 +2114,8 @@ msgid "Which files the chunk is located in" msgstr "" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2136,16 +2134,16 @@ msgid "Currently downloading:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, kde-format msgid "Downloaded:" msgstr "ਡਾਊਨਲੋਡ ਕੀਤੇ:" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -2996,8 +2994,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3064,8 +3062,8 @@ msgid "New Script...." msgstr "" -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, kde-format @@ -3401,6 +3399,20 @@ "ਫਾਇਲ ਨੂੰ ਲਿਖਿਆ ਨਹੀਂ ਜਾ ਸਕਿਆ:\n" "%1" +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "" +msgstr[1] "" + +#: ui/contextmenu.cpp:120 +#, fuzzy, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "ਮੂਲ ਫੋਲਡਰ" +msgstr[1] "ਮੂਲ ਫੋਲਡਰ" + #: ui/droptarget.cpp:84 #, kde-format msgctxt "fix position for droptarget" @@ -3720,31 +3732,31 @@ msgstr "ਫਾਇਲ ਖੋਲ੍ਹੋ" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, fuzzy, kde-format msgid "&File" msgstr "ਫਾਇਲ਼ ਖੋਲੋ(&F)" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, fuzzy, kde-format msgid "&Downloads" msgstr "ਡਾਊਨਲੋਡ ਮੁੜ-ਪ੍ਰਾਪਤ" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "" @@ -4139,8 +4151,8 @@ msgid "File size (in bytes):" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, kde-format msgid "Verification:" @@ -4706,19 +4718,19 @@ msgid "Remaining Time:" msgstr "ਬਾਕੀ ਸਮਾਂ" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, fuzzy, kde-format #| msgid "Default folder:" msgid "Transfer Settings for %1" msgstr "ਮੂਲ ਫੋਲਡਰ:" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." msgstr "" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, fuzzy, kde-format #| msgid "Destination:" msgid "Destination unmodified" @@ -4883,10 +4895,6 @@ #~ msgstr "ਡਾਊਨਲੋਡ ਮੁੜ-ਪ੍ਰਾਪਤ" #, fuzzy -#~ msgid "Delete selected group" -#~ msgstr "ਕੋਈ ਫਾਇਲ ਨਹੀਂ ਚੁਣੀ" - -#, fuzzy #~ msgid "Starts / resumes all transfers" #~ msgstr "ਕੋਈ ਫਾਇਲ ਨਹੀਂ ਚੁਣੀ" diff -Nru kget-20.12.3/po/pl/kgetplugin.po kget-21.04.0/po/pl/kgetplugin.po --- kget-20.12.3/po/pl/kgetplugin.po 2021-03-02 00:48:42.000000000 +0000 +++ kget-21.04.0/po/pl/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -1,5 +1,5 @@ # translation of kget.po to -# Version: $Revision: 1569808 $ +# Version: $Revision: 1588292 $ # Copyright (C) 2002,2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. # # Wojciech Milewski , 2002. @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2011-01-12 10:43-0500\n" "Last-Translator: Ireneusz Gierlach \n" "Language-Team: Polish \n" @@ -53,22 +53,18 @@ msgid "No Links" msgstr "Brak odnośników" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "Nie można nawiązać połączenia z menadżerem pobierania KGet." - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "Błąd połączenia" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format msgid "&Tools" msgstr "&Narzędzia" +#~ msgid "Unable to communicate with the KGet download manager." +#~ msgstr "Nie można nawiązać połączenia z menadżerem pobierania KGet." + +#~ msgid "Communication Error" +#~ msgstr "Błąd połączenia" + #~ msgid "Plugins" #~ msgstr "Wtyczki" diff -Nru kget-20.12.3/po/pl/kget.po kget-21.04.0/po/pl/kget.po --- kget-20.12.3/po/pl/kget.po 2021-03-02 00:48:42.000000000 +0000 +++ kget-21.04.0/po/pl/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -1,5 +1,5 @@ # translation of kget.po to -# Version: $Revision: 1592192 $ +# Version: $Revision: 1597685 $ # Copyright (C) 2002,2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. # # Wojciech Milewski , 2002. @@ -7,20 +7,20 @@ # Michal Rudolf , 2003, 2004, 2005. # Marta Rybczyńska , 2007, 2008, 2009, 2010, 2013. # Ireneusz Gierlach , 2011. -# Łukasz Wojniłowicz , 2012, 2014, 2015, 2016, 2017, 2019, 2020. +# Łukasz Wojniłowicz , 2012, 2014, 2015, 2016, 2017, 2019, 2020, 2021. msgid "" msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" -"PO-Revision-Date: 2020-09-27 09:40+0200\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" +"PO-Revision-Date: 2021-04-04 08:09+0200\n" "Last-Translator: Łukasz Wojniłowicz \n" "Language-Team: Polish \n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 20.07.70\n" +"X-Generator: Lokalize 20.12.1\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" @@ -275,7 +275,7 @@ msgid " sec" msgstr " sek." -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "Nie można otworzyć Portfela" @@ -322,7 +322,7 @@ msgid "The width of the columns in the history view" msgstr "Szerokość kolumn w widoku historii" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "Wtyczki" @@ -457,8 +457,8 @@ msgstr "Najsilniejsza (najwolniejsza)" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -484,7 +484,7 @@ msgstr "Serwery kluczy:" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -557,27 +557,27 @@ "Proszę dodać więcej serwerów w ustawieniach, ponownie uruchomić KGet i " "powtórzyć pobieranie." -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "Czy usunąć grupę o nazwie %1?" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, kde-format msgid "Remove Group" msgstr "Usuń grupę" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "Czy usunąć grupę następujące grupy?" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, kde-format msgid "Remove groups" msgstr "Usuń grupy" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    Następujące przesyłanie zostało dodane do listy przesyłania:

    \\%1

    " -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, kde-format msgid "Download added" msgstr "Pobieranie dodane" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "

    Następujące przesyłanie zostało dodane do listy przesyłania:

    " -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "

    Następujące przesyłanie zostało dodane do listy przesyłania:

    " -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "Moje przesyłania" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" @@ -615,17 +615,17 @@ "Plik %1 już istnieje.\n" "Czy go zastąpić?" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "Czy zastąpić istniejący plik?" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "Nie można zapisać: %1" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -643,34 +643,34 @@ "

    Następujące adresy URL nie mogą zostać pobrane, ich protokoły nie są " "obsługiwane przez KGet:

    " -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "Niewspierany protokół" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "Nowe pobieranie" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "Podaj URL:" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "Wybierz katalog" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, kde-format msgctxt "@title:window" msgid "Save As" msgstr "Zapisz jako" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -679,7 +679,7 @@ "Błędny adres URL:\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, kde-format msgid "" "Malformed URL, protocol missing:\n" @@ -688,7 +688,7 @@ "Błędny adres URL, brakuje protokołu:\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -703,12 +703,12 @@ "\n" "Czy pobrać jeszcze raz?" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, kde-format msgid "Download it again?" msgstr "Pobrać jeszcze raz?" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -723,17 +723,17 @@ "\n" "Czy usunąć i pobrać ponownie?" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, kde-format msgid "Delete it and download again?" msgstr "Usunąć i pobrać ponownie?" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "Do katalogu nie można zapisywać" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -744,39 +744,39 @@ "\n" "Czy pobrać i usunąć poprzedni?" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, kde-format msgid "File already downloaded. Download anyway?" msgstr "Plik już pobrany. Pobrać jeszcze raz?" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "Pobieranie tego pliku już trwa" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, kde-format msgid "File already exists" msgstr "Plik już istnieje" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "Ustanowiono połączenie internetowe, wznawianie przesyłań." -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "Brak połączenia internetowego, zatrzymywanie przesyłań." -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "Program wczytujący wtyczki nie mógł wczytać wtyczki: %1." -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -787,7 +787,7 @@ "%1\n" "ponieważ to katalog." -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -798,7 +798,7 @@ "%1\n" "ponieważ to nie jest plik lokalny." -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    Zakończono pobieranie pliku:

    %1

    " -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, kde-format msgid "Download completed" msgstr "Pobieranie zakończone" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    Rozpoczęto przesyłanie pliku:

    %1

    " -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, kde-format msgid "Download started" msgstr "Pobieranie rozpoczęte" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    Wystąpił błąd w następującym przesyłaniu:

    \\%1

    Wiadomość błędu:

    %2

    " -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, kde-format msgid "Resolve" msgstr "Rozwiąż" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, kde-format msgid "KGet is now closing, as all downloads have completed." msgstr "" "KGet zakończy teraz działanie, bo wszystkie przesyłania zostały ukończone." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "" "Komputer zostanie teraz wyłączony, bo wszystkie przesyłania zostały " "ukończone." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgctxt "Shutting down computer" msgid "Shutdown" msgstr "Wyłącz komputer" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "" "Komputer zostanie teraz uśpiony, ponieważ wszystkie przesyłania zostały " "ukończone." -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "Hibernuje" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "" "Komputer zostanie teraz wstrzymany, ponieważ wszystkie przesyłania zostały " "ukończone." -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgctxt "Suspending computer" msgid "Suspending" msgstr "Usypianie" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, kde-format msgctxt "abort the proposed action" msgid "Abort" msgstr "Przerwij" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "

    Wszystkie przesyłania zostały zakończone.

    " -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, kde-format msgid "Downloads completed" msgstr "Pobieranie zakończone" @@ -1760,21 +1760,17 @@ msgid "Decrease Priority" msgstr "Zmniejsz priorytet" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 +#: mainwindow.cpp:204 #, kde-format +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "Usuń grupę" -msgstr[1] "Usuń grupy" -msgstr[2] "Usuń grupy" +msgstr "Usuń grupę" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 +#: mainwindow.cpp:210 #, kde-format +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "Zmień nazwę grupy..." -msgstr[1] "Zmień nazwy grup..." -msgstr[2] "Zmień nazwy grup..." +msgstr "Przemianuj grupę..." #: mainwindow.cpp:215 #, kde-format @@ -1894,7 +1890,7 @@ #: mainwindow.cpp:351 #, kde-format msgid "Import &Links..." -msgstr "Importuj &odnośniki..." +msgstr "Zaimportuj &odnośniki..." #: mainwindow.cpp:357 #, kde-format @@ -1966,7 +1962,7 @@ #, kde-format msgctxt "@title:window" msgid "Export Transfers" -msgstr "Eksportuj przesyłania" +msgstr "Wyeksportuj przesyłania" #: mainwindow.cpp:604 #, kde-format @@ -2107,8 +2103,8 @@ msgid "Which files the chunk is located in" msgstr "Z jakiego pliku pochodzi pobierana część" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2127,16 +2123,16 @@ msgid "Currently downloading:" msgstr "Aktualnie pobierane:" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, kde-format msgid "Downloaded:" msgstr "Pobrania:" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -3000,8 +2996,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3065,8 +3061,8 @@ msgid "New Script...." msgstr "Nowy skrypt..." -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, kde-format @@ -3395,6 +3391,22 @@ msgid "Failed to write to the file." msgstr "Nieudany zapis do pliku." +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "Usuń grupę" +msgstr[1] "Usuń grupy" +msgstr[2] "Usuń grupy" + +#: ui/contextmenu.cpp:120 +#, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "Zmień nazwę grupy..." +msgstr[1] "Zmień nazwy grup..." +msgstr[2] "Zmień nazwy grup..." + #: ui/droptarget.cpp:84 #, kde-format msgctxt "fix position for droptarget" @@ -3707,31 +3719,31 @@ msgstr "Otwórz plik" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, kde-format msgid "&File" msgstr "&Plik" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, kde-format msgid "&Downloads" msgstr "&Pobrania" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "U&stawienia" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "&Pomoc" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "Główny pasek narzędzi" @@ -3793,7 +3805,7 @@ #: ui/linkview/kget_linkview.cpp:41 #, kde-format msgid "Import Links" -msgstr "Importuj odnośniki" +msgstr "Zaimportuj odnośniki" #: ui/linkview/kget_linkview.cpp:58 #, kde-format @@ -4112,8 +4124,8 @@ msgid "File size (in bytes):" msgstr "Rozmiar pliku (w bajtach):" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, kde-format msgid "Verification:" @@ -4645,7 +4657,7 @@ #: ui/signaturedlg.ui:296 #, kde-format msgid "Fingerprint:" -msgstr "Odcisk palca:" +msgstr "Odcisk klucza:" #: ui/transferdetails.cpp:71 #, kde-format @@ -4676,18 +4688,18 @@ msgid "Remaining Time:" msgstr "Pozostały czas:" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, kde-format msgid "Transfer Settings for %1" msgstr "Szczegóły przesyłania %1" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." msgstr "Wybranie celu nie zadziałało, cel nie został zmieniony." -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "Destination unmodified" msgstr "Cel nie został zmieniony" diff -Nru kget-20.12.3/po/pt/kgetplugin.po kget-21.04.0/po/pt/kgetplugin.po --- kget-20.12.3/po/pt/kgetplugin.po 2021-03-02 00:48:42.000000000 +0000 +++ kget-21.04.0/po/pt/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: kgetplugin\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2011-02-05 14:25+0000\n" "Last-Translator: José Nuno Coelho Pires \n" "Language-Team: Portuguese \n" @@ -43,18 +43,14 @@ msgid "No Links" msgstr "Sem Ligações" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "Não foi possível comunicar com o gestor de transferências KGet." - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "Erro de Comunicação" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format msgid "&Tools" msgstr "Ferramen&tas" + +#~ msgid "Unable to communicate with the KGet download manager." +#~ msgstr "Não foi possível comunicar com o gestor de transferências KGet." + +#~ msgid "Communication Error" +#~ msgstr "Erro de Comunicação" diff -Nru kget-20.12.3/po/pt/kget.po kget-21.04.0/po/pt/kget.po --- kget-20.12.3/po/pt/kget.po 2021-03-02 00:48:42.000000000 +0000 +++ kget-21.04.0/po/pt/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -2,8 +2,8 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" -"PO-Revision-Date: 2019-05-02 11:11+0100\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" +"PO-Revision-Date: 2021-03-02 12:58+0000\n" "Last-Translator: Pedro Morais \n" "Language-Team: pt \n" "Language: pt\n" @@ -281,7 +281,7 @@ msgid " sec" msgstr " s" -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "Não foi possível aceder à KWallet" @@ -328,7 +328,7 @@ msgid "The width of the columns in the history view" msgstr "A largura das colunas na área de histórico" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "'Plugins'" @@ -463,8 +463,8 @@ msgstr "Muito forte (mais lenta)" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -490,7 +490,7 @@ msgstr "Servidores de chaves:" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -565,27 +565,27 @@ "obtida. Adicione mais servidores à configuração ou reinicie o KGet e repita " "a transferência." -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "Tem a certeza que deseja eliminar o grupo %1?" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, kde-format msgid "Remove Group" msgstr "Remover o Grupo" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "Tem a certeza que deseja eliminar os seguintes grupos?" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, kde-format msgid "Remove groups" msgstr "Remover os grupos" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    Foi adicionada a seguinte transferência à lista:

    %1

    " -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, kde-format msgid "Download added" msgstr "Transferência adicionada" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "

    Foi adicionada a seguinte transferência à lista:

    " -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "

    Foram adicionadas as seguintes transferências à lista:

    " -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "As Minhas Transferências" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" @@ -623,17 +623,17 @@ "O ficheiro %1 já existe.\n" "Deseja substituí-lo?" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "Deseja substituir o ficheiro existente?" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "Não é possível gravar em: %1" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -648,34 +648,34 @@ "

    Não foi possível obter os seguintes URL's; o seu protocolo não é " "suportado pelo KGet:

    " -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "Protocolo não suportado" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "Nova Transferência" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "Indique o URL:" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "Escolher a Pasta" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, kde-format msgctxt "@title:window" msgid "Save As" msgstr "Gravar Como" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -684,7 +684,7 @@ "URL inválido:\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, kde-format msgid "" "Malformed URL, protocol missing:\n" @@ -693,7 +693,7 @@ "URL inválido, por faltar o protocolo:\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -708,12 +708,12 @@ "\n" "Deseja transferi-la de novo?" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, kde-format msgid "Download it again?" msgstr "Transferi-lo de novo?" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -728,17 +728,17 @@ "\n" "Deseja apagá-la e transferi-la de novo?" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, kde-format msgid "Delete it and download again?" msgstr "Deseja apagá-lo e transferi-lo de novo?" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "Não pode gravar na pasta" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -749,40 +749,40 @@ "\n" "Deseja transferi-lo e apagar o anterior?" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, kde-format msgid "File already downloaded. Download anyway?" msgstr "O ficheiro já foi transferido. Deseja transferi-lo à mesma?" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "Já está a transferir o mesmo ficheiro" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, kde-format msgid "File already exists" msgstr "O ficheiro já existe" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "" "A ligação à Internet está estabelecida; a prosseguir as transferências." -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "Sem ligação à Internet; a interromper as transferências." -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "O carregador de 'plugins' não carregou o 'plugin': %1." -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -793,7 +793,7 @@ "não foi apagada\n" "uma vez que é uma directoria." -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -804,7 +804,7 @@ "não foi apagado\n" "uma vez que não é um ficheiro local." -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    Terminou a transferência do seguinte ficheiro:

    %1

    " -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, kde-format msgid "Download completed" msgstr "Transferência completa" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    Terminou a transferência do seguinte ficheiro:

    %1

    " -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, kde-format msgid "Download started" msgstr "A transferência foi iniciada" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    Ocorreu um erro na seguinte transferência:

    %1

    A mensagem de erro é:

    %2

    " -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, kde-format msgid "Resolve" msgstr "Resolver" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, kde-format msgid "KGet is now closing, as all downloads have completed." msgstr "O KGet vai sair agora, porque todas as transferências terminaram." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "" "O computador vai ser desligado agora, porque todas as transferências " "terminaram." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgctxt "Shutting down computer" msgid "Shutdown" msgstr "Encerrar" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "" "O computador vai ser agora suspenso para o disco, porque todas as " "transferências terminaram." -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "A hibernar" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "" "O computador suspender-se-á agora para a RAM, porque todas as transferências " "terminaram." -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgctxt "Suspending computer" msgid "Suspending" msgstr "A suspender-se" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, kde-format msgctxt "abort the proposed action" msgid "Abort" msgstr "Interromper" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "

    Terminaram todas as transferências.

    " -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, kde-format msgid "Downloads completed" msgstr "Transferências completas" @@ -1772,19 +1772,17 @@ msgid "Decrease Priority" msgstr "Diminuir a Prioridade" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 +#: mainwindow.cpp:204 #, kde-format +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "Apagar o Grupo" -msgstr[1] "Apagar os Grupos" +msgstr "Apagar o Grupo" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 +#: mainwindow.cpp:210 #, kde-format +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "Mudar o Nome do Grupo..." -msgstr[1] "Mudar o Nome dos Grupos..." +msgstr "Mudar o Nome do Grupo..." #: mainwindow.cpp:215 #, kde-format @@ -2116,8 +2114,8 @@ msgid "Which files the chunk is located in" msgstr "Quais os ficheiros em que o bloco se localiza" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2136,16 +2134,16 @@ msgid "Currently downloading:" msgstr "Actualmente a receber:" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, kde-format msgid "Downloaded:" msgstr "Obtido:" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -3015,8 +3013,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3080,8 +3078,8 @@ msgid "New Script...." msgstr "Novo Programa..." -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, kde-format @@ -3412,6 +3410,20 @@ msgid "Failed to write to the file." msgstr "Não foi possível gravar no ficheiro." +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "Apagar o Grupo" +msgstr[1] "Apagar os Grupos" + +#: ui/contextmenu.cpp:120 +#, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "Mudar o Nome do Grupo..." +msgstr[1] "Mudar o Nome dos Grupos..." + #: ui/droptarget.cpp:84 #, kde-format msgctxt "fix position for droptarget" @@ -3722,31 +3734,31 @@ msgstr "Abrir um ficheiro" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, kde-format msgid "&File" msgstr "&Ficheiro" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, kde-format msgid "&Downloads" msgstr "&Recepções" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "&Configuração" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "A&juda" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "Barra Principal" @@ -4127,8 +4139,8 @@ msgid "File size (in bytes):" msgstr "Tamanho do ficheiro (em 'bytes'):" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, kde-format msgid "Verification:" @@ -4696,12 +4708,12 @@ msgid "Remaining Time:" msgstr "Tempo Restante:" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, kde-format msgid "Transfer Settings for %1" msgstr "Configuração das Transferências de %1" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." @@ -4709,7 +4721,7 @@ "A alteração do destino não resultou; o destino irá permanecer sem " "modificações." -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "Destination unmodified" msgstr "Destino não modificado" diff -Nru kget-20.12.3/po/pt_BR/kgetplugin.po kget-21.04.0/po/pt_BR/kgetplugin.po --- kget-20.12.3/po/pt_BR/kgetplugin.po 2021-03-02 00:48:42.000000000 +0000 +++ kget-21.04.0/po/pt_BR/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -17,7 +17,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2011-01-29 16:14-0200\n" "Last-Translator: André Marcelo Alvarenga \n" "Language-Team: Brazilian Portuguese \n" @@ -61,22 +61,18 @@ msgid "No Links" msgstr "Sem links" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "Não foi possível se comunicar com o gerenciador de downloads KGet." - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "Erro de comunicação" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format msgid "&Tools" msgstr "Ferramen&tas" +#~ msgid "Unable to communicate with the KGet download manager." +#~ msgstr "Não foi possível se comunicar com o gerenciador de downloads KGet." + +#~ msgid "Communication Error" +#~ msgstr "Erro de comunicação" + #~ msgid "Plugins" #~ msgstr "Plugins" diff -Nru kget-20.12.3/po/pt_BR/kget.po kget-21.04.0/po/pt_BR/kget.po --- kget-20.12.3/po/pt_BR/kget.po 2021-03-02 00:48:42.000000000 +0000 +++ kget-21.04.0/po/pt_BR/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -13,23 +13,23 @@ # Henrique Marks , 2008. # Rubens de Souza Matos Júnior , 2008, 2009, 2010. # Andre Paulo Machado , 2008. -# Luiz Fernando Ranghetti , 2008, 2009, 2010, 2017, 2019. +# Luiz Fernando Ranghetti , 2008, 2009, 2010, 2017, 2019, 2021. # André Marcelo Alvarenga , 2009, 2010, 2011, 2012, 2013, 2014, 2019. # Marcus Vinícius de Andrade Gama , 2010, 2012. msgid "" msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" -"PO-Revision-Date: 2019-05-20 17:09-0300\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" +"PO-Revision-Date: 2021-03-19 09:39-0300\n" "Last-Translator: Luiz Fernando Ranghetti \n" -"Language-Team: Portuguese \n" +"Language-Team: Brazilian Portuguese \n" "Language: pt_BR\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 19.04.0\n" +"X-Generator: Lokalize 20.04.2\n" #: conf/autopastemodel.cpp:174 #, kde-format @@ -282,7 +282,7 @@ msgid " sec" msgstr " s" -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "Não foi possível abrir o KWallet" @@ -329,7 +329,7 @@ msgid "The width of the columns in the history view" msgstr "A largura das colunas na visão de histórico" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "Plugins" @@ -464,8 +464,8 @@ msgstr "Muito forte (mais lenta)" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -491,7 +491,7 @@ msgstr "Servidores de chaves:" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -567,27 +567,27 @@ "Adicione mais servidores às configurações ou reinicie o KGet e repita a " "transferência." -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "Deseja realmente remover o grupo %1?" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, kde-format msgid "Remove Group" msgstr "Remover grupo" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "Deseja realmente remover os seguintes grupos?" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, kde-format msgid "Remove groups" msgstr "Remover grupos" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    A seguinte transferência foi adicionada à lista de downloads:

    %1

    " -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, kde-format msgid "Download added" msgstr "Download adicionado" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "

    A seguinte transferência foi adicionada à lista de downloads:

    " -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "" "

    As seguintes transferências foram adicionadas à lista de downloads:

    " -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "Meus downloads" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" @@ -626,17 +626,17 @@ "O arquivo %1 já existe.\n" "Deseja sobrescrevê-lo?" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "Sobrescrever arquivo existente?" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "Não foi possível salvar em: %1" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -651,34 +651,34 @@ "

    Não foi possível baixar as URLs a seguir, porque os seus protocolos não " "são suportados pelo KGet:

    " -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "Protocolo não suportado" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "Novo download" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "Digitar URL:" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "Escolher pasta" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, kde-format msgctxt "@title:window" msgid "Save As" msgstr "Salvar como" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -687,7 +687,7 @@ "URL inválida:\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, kde-format msgid "" "Malformed URL, protocol missing:\n" @@ -696,7 +696,7 @@ "URL inválida, faltando o protocolo:\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -711,12 +711,12 @@ "\n" "Deseja baixá-lo novamente?" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, kde-format msgid "Download it again?" msgstr "Baixá-lo novamente?" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -731,17 +731,17 @@ "\n" "Deseja excluí-lo e baixar novamente?" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, kde-format msgid "Delete it and download again?" msgstr "Excluí-lo e baixar novamente?" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "A pasta não tem permissões de escrita" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -752,39 +752,39 @@ "\n" "Deseja baixá-lo e excluir o anterior?" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, kde-format msgid "File already downloaded. Download anyway?" msgstr "O arquivo já foi baixado. Deseja transferi-lo mesmo assim?" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "Você já está baixando o mesmo arquivo" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, kde-format msgid "File already exists" msgstr "O arquivo já existe" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "Conexão à Internet estabelecida, continuando as transferências." -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "Sem conexão à Internet, interrompendo as transferências." -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "O carregador de plugins não conseguiu carregar o plugin: %1." -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -795,7 +795,7 @@ "de %1\n" "pois é uma pasta." -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -806,7 +806,7 @@ "de %1\n" "pois não é um arquivo local." -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    O download do seguinte arquivo foi concluído:

    %1

    " -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, kde-format msgid "Download completed" msgstr "Download concluído" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    A seguinte transferência foi iniciada:

    " "%1

    " -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, kde-format msgid "Download started" msgstr "Download iniciado" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    Ocorreu um erro na seguinte transferência:

    %1

    A mensagem de erro é:

    %2

    " -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, kde-format msgid "Resolve" msgstr "Resolver" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, kde-format msgid "KGet is now closing, as all downloads have completed." msgstr "O KGet está fechando agora, pois todos os downloads foram concluídos." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "" "O computador será desligado agora, pois todos os downloads foram concluídos." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgctxt "Shutting down computer" msgid "Shutdown" msgstr "Desligar" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "" "O computador será suspenso para o disco agora, pois todos os downloads foram " "concluídos." -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "Hibernando" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "" "O computador será suspenso para a RAM agora, pois todos os downloads foram " "concluídos." -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgctxt "Suspending computer" msgid "Suspending" msgstr "Suspendendo" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, kde-format msgctxt "abort the proposed action" msgid "Abort" msgstr "Cancelar" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "

    Todas as transferências foram concluídas.

    " -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, kde-format msgid "Downloads completed" msgstr "Downloads concluídos" @@ -1776,19 +1776,17 @@ msgid "Decrease Priority" msgstr "Diminuir prioridade" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 +#: mainwindow.cpp:204 #, kde-format +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "Excluir grupo" -msgstr[1] "Excluir grupos" +msgstr "Excluir grupo" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 +#: mainwindow.cpp:210 #, kde-format +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "Renomear grupo..." -msgstr[1] "Renomear grupos..." +msgstr "Renomear grupo..." #: mainwindow.cpp:215 #, kde-format @@ -2121,8 +2119,8 @@ msgid "Which files the chunk is located in" msgstr "Em quais arquivos o bloco está localizado" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2141,16 +2139,16 @@ msgid "Currently downloading:" msgstr "Baixando atualmente:" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, kde-format msgid "Downloaded:" msgstr "Baixados:" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -3019,8 +3017,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3084,8 +3082,8 @@ msgid "New Script...." msgstr "Novo script..." -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, kde-format @@ -3414,6 +3412,20 @@ msgid "Failed to write to the file." msgstr "Não foi possível gravar no arquivo." +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "Excluir grupo" +msgstr[1] "Excluir grupos" + +#: ui/contextmenu.cpp:120 +#, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "Renomear grupo..." +msgstr[1] "Renomear grupos..." + #: ui/droptarget.cpp:84 #, kde-format msgctxt "fix position for droptarget" @@ -3724,31 +3736,31 @@ msgstr "Abrir arquivo" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, kde-format msgid "&File" msgstr "&Arquivo" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, kde-format msgid "&Downloads" msgstr "&Downloads" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "&Configurações" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "Aj&uda" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "Barra de ferramentas principal" @@ -4129,8 +4141,8 @@ msgid "File size (in bytes):" msgstr "Tamanho do arquivo (em bytes):" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, kde-format msgid "Verification:" @@ -4698,12 +4710,12 @@ msgid "Remaining Time:" msgstr "Tempo restante:" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, kde-format msgid "Transfer Settings for %1" msgstr "Configurações de transferência para %1" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." @@ -4711,7 +4723,7 @@ "A alteração do destino não funcionou. O destino irá permanecer sem " "modificações." -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "Destination unmodified" msgstr "Destino não modificado" diff -Nru kget-20.12.3/po/ro/kgetplugin.po kget-21.04.0/po/ro/kgetplugin.po --- kget-20.12.3/po/ro/kgetplugin.po 2021-03-02 00:48:42.000000000 +0000 +++ kget-21.04.0/po/ro/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2009-04-26 16:36+0300\n" "Last-Translator: Sergiu Bivol \n" "Language-Team: Romanian \n" @@ -50,23 +50,17 @@ msgid "No Links" msgstr "Nicio legătură" -#: kget_plug_in.cpp:184 -#, fuzzy, kde-format -#| msgid "Whether we are interested in downloading from this peer" -msgid "Unable to communicate with the KGet download manager." -msgstr "Dacă ne interesează descărcarea de la acest partener" - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format msgid "&Tools" msgstr "&Unelte" +#, fuzzy +#~| msgid "Whether we are interested in downloading from this peer" +#~ msgid "Unable to communicate with the KGet download manager." +#~ msgstr "Dacă ne interesează descărcarea de la acest partener" + #~ msgid "Plugins" #~ msgstr "Module" diff -Nru kget-20.12.3/po/ro/kget.po kget-21.04.0/po/ro/kget.po --- kget-20.12.3/po/ro/kget.po 2021-03-02 00:48:42.000000000 +0000 +++ kget-21.04.0/po/ro/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" "PO-Revision-Date: 2020-09-26 19:08+0100\n" "Last-Translator: Sergiu Bivol \n" "Language-Team: Romanian\n" @@ -291,7 +291,7 @@ msgid " sec" msgstr "sec" -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "" @@ -342,7 +342,7 @@ msgid "The width of the columns in the history view" msgstr "" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "Extensii" @@ -484,8 +484,8 @@ msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -513,7 +513,7 @@ msgstr "Încărcători:" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -584,7 +584,7 @@ "settings or restart KGet and retry downloading." msgstr "" -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, fuzzy, kde-format #| msgid "" #| "Are you sure that you want to remove\n" @@ -594,13 +594,13 @@ "Sigur doriți să eliminați grupul\n" "cu denumirea %1?" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, fuzzy, kde-format #| msgid "Rename Group" msgid "Remove Group" msgstr "Redenumește grupul" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, fuzzy, kde-format #| msgid "" #| "Are you sure that you want to remove\n" @@ -610,41 +610,41 @@ "Sigur doriți să eliminați grupul\n" "cu denumirea %1?" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, fuzzy, kde-format #| msgid "Rename Group" msgid "Remove groups" msgstr "Redenumește grupul" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    %1

    " msgstr "" -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, fuzzy, kde-format #| msgid "Downloaded" msgid "Download added" msgstr "Descărcat" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "" -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "" -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "Descărcările mele" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" @@ -653,17 +653,17 @@ "Fișierul %1 există deja.\n" "Îl suprascrieți?" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "Suprascrieți fișierul existent?" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "Imposibil de salvat în: %1" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -675,34 +675,34 @@ msgstr[1] "" msgstr[2] "" -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "Descărcare nouă" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "Introduceți URL:" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, kde-format msgctxt "@title:window" msgid "Save As" msgstr "" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -711,7 +711,7 @@ "URL eronat\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, kde-format msgid "" "Malformed URL, protocol missing:\n" @@ -720,7 +720,7 @@ "URL eronat, protocolul lipsește:\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -730,13 +730,13 @@ "Download it again?" msgstr "" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, fuzzy, kde-format #| msgid "Download again" msgid "Download it again?" msgstr "Descarcă din nou" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -746,18 +746,18 @@ "Delete it and download again?" msgstr "" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, fuzzy, kde-format #| msgid "Download again" msgid "Delete it and download again?" msgstr "Descarcă din nou" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "Directorul nu este inscriptibil" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -765,7 +765,7 @@ "Download and delete the previous one?" msgstr "" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, fuzzy, kde-format #| msgid "" #| "URL already saved:\n" @@ -777,13 +777,13 @@ "%1\n" "Descărcați din nou?" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, fuzzy, kde-format #| msgid "You are already downloading the torrent %1" msgid "You are already downloading the same file" msgstr "Acest torent se descarcă deja %1" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, fuzzy, kde-format @@ -795,22 +795,22 @@ "Fișierul %1 există deja.\n" "Îl suprascrieți?" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "" -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "" -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "" -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -818,7 +818,7 @@ "as it is a directory." msgstr "" -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -826,32 +826,32 @@ "as it is not a local file." msgstr "" -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    %1

    " msgstr "" -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, kde-format msgid "Download completed" msgstr "Descărcare completă" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    %1

    " msgstr "" -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, fuzzy, kde-format #| msgid "Downloaded" msgid "Download started" msgstr "Descărcat" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    %2

    " msgstr "" -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, fuzzy, kde-format #| msgctxt "@action:button" #| msgid "Remove" msgid "Resolve" msgstr "Elimină" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, fuzzy, kde-format #| msgid "KGet quits now because all downloads have been completed." msgid "KGet is now closing, as all downloads have completed." msgstr "KGet se închide acum deoarece toate descărcările s-au încheiat." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, fuzzy, kde-format #| msgid "" #| "The computer will turn off now because all downloads have been completed." @@ -880,14 +880,14 @@ msgstr "" "Calculatorul se va opri acum deoarece toate descărcările s-au încheiat." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, fuzzy, kde-format #| msgid "Auto shutdown" msgctxt "Shutting down computer" msgid "Shutdown" msgstr "Închidere automată" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, fuzzy, kde-format #| msgid "" #| "The computer will turn off now because all downloads have been completed." @@ -895,13 +895,13 @@ msgstr "" "Calculatorul se va opri acum deoarece toate descărcările s-au încheiat." -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, fuzzy, kde-format #| msgid "" #| "The computer will turn off now because all downloads have been completed." @@ -909,7 +909,7 @@ msgstr "" "Calculatorul se va opri acum deoarece toate descărcările s-au încheiat." -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, fuzzy, kde-format #| msgctxt "Preview pending" #| msgid "Pending" @@ -917,19 +917,19 @@ msgid "Suspending" msgstr "În așteptare" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, fuzzy, kde-format #| msgid "Aborted" msgctxt "abort the proposed action" msgid "Abort" msgstr "Abandonat" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "" -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, fuzzy, kde-format #| msgid "Download completed" msgid "Downloads completed" @@ -1829,23 +1829,19 @@ msgid "Decrease Priority" msgstr "Prioritate" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 +#: mainwindow.cpp:204 #, fuzzy, kde-format #| msgid "Delete Group" +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "Șterge grupul" -msgstr[1] "Șterge grupul" -msgstr[2] "Șterge grupul" +msgstr "Șterge grupul" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 +#: mainwindow.cpp:210 #, fuzzy, kde-format #| msgid "Rename Group" +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "Redenumește grupul" -msgstr[1] "Redenumește grupul" -msgstr[2] "Redenumește grupul" +msgstr "Redenumește grupul" #: mainwindow.cpp:215 #, fuzzy, kde-format @@ -2205,8 +2201,8 @@ msgid "Which files the chunk is located in" msgstr "În ce fișiere este amplasată bucata" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2225,16 +2221,16 @@ msgid "Currently downloading:" msgstr "Se descarcă:" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, kde-format msgid "Downloaded:" msgstr "Descărcate:" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -3120,8 +3116,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3185,8 +3181,8 @@ msgid "New Script...." msgstr "" -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, fuzzy, kde-format @@ -3538,6 +3534,24 @@ msgid "Failed to write to the file." msgstr "Eroare la scrierea în %1 : %2" +#: ui/contextmenu.cpp:116 +#, fuzzy, kde-format +#| msgid "Delete Group" +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "Șterge grupul" +msgstr[1] "Șterge grupul" +msgstr[2] "Șterge grupul" + +#: ui/contextmenu.cpp:120 +#, fuzzy, kde-format +#| msgid "Rename Group" +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "Redenumește grupul" +msgstr[1] "Redenumește grupul" +msgstr[2] "Redenumește grupul" + #: ui/droptarget.cpp:84 #, kde-format msgctxt "fix position for droptarget" @@ -3861,31 +3875,31 @@ msgstr "Deschide fișier" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, kde-format msgid "&File" msgstr "&Fișier" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, kde-format msgid "&Downloads" msgstr "&Descărcări" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "&Configurări" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "&Ajutor" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "Bara de unelte principală" @@ -4289,8 +4303,8 @@ msgid "File size (in bytes):" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, fuzzy, kde-format #| msgid "Description" @@ -4862,19 +4876,19 @@ msgid "Remaining Time:" msgstr "Timp rămas" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, fuzzy, kde-format #| msgid "Transfer-Settings for %1" msgid "Transfer Settings for %1" msgstr "Configurări transfer pentru %1" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." msgstr "" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, fuzzy, kde-format #| msgid "Destination" msgid "Destination unmodified" diff -Nru kget-20.12.3/po/ru/kgetplugin.po kget-21.04.0/po/ru/kgetplugin.po --- kget-20.12.3/po/ru/kgetplugin.po 2021-03-02 00:48:42.000000000 +0000 +++ kget-21.04.0/po/ru/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2011-02-05 12:59+0300\n" "Last-Translator: Alexander Potashev \n" "Language-Team: Russian \n" @@ -51,18 +51,14 @@ msgid "No Links" msgstr "Нет ссылок" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "Не удалось связаться с диспетчером загрузок KGet." - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "Ошибка связи" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format msgid "&Tools" msgstr "С&ервис" + +#~ msgid "Unable to communicate with the KGet download manager." +#~ msgstr "Не удалось связаться с диспетчером загрузок KGet." + +#~ msgid "Communication Error" +#~ msgstr "Ошибка связи" diff -Nru kget-20.12.3/po/ru/kget.po kget-21.04.0/po/ru/kget.po --- kget-20.12.3/po/ru/kget.po 2021-03-02 00:48:42.000000000 +0000 +++ kget-21.04.0/po/ru/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -18,7 +18,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" "PO-Revision-Date: 2020-03-17 22:08+0300\n" "Last-Translator: Alexander Yavorsky \n" "Language-Team: Russian \n" @@ -284,7 +284,7 @@ msgid " sec" msgstr " с" -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "Не удаётся открыть бумажник KWallet" @@ -331,7 +331,7 @@ msgid "The width of the columns in the history view" msgstr "Ширина столбцов при просмотре журнала" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "Модули" @@ -469,8 +469,8 @@ msgstr "Строжайшая (самая медленная)" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -496,7 +496,7 @@ msgstr "Серверы ключей:" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -569,27 +569,27 @@ "Не найден работающий сервер ключей, ключ не был загружен. Добавьте серверы в " "параметрах или перезапустите KGet и снова попробуйте начать загрузку." -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "Удалить группу %1?" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, kde-format msgid "Remove Group" msgstr "Удалить группу" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "Удалить следующие группы?" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, kde-format msgid "Remove groups" msgstr "Удалить группы" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    В список была добавлена загрузка:

    %1

    " -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, kde-format msgid "Download added" msgstr "Загрузка добавлена" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "

    В список была добавлена загрузка:

    " -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "

    В список были добавлены загрузки:

    " -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "Мои загрузки" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" @@ -626,17 +626,17 @@ "Файл %1 уже существует\n" "Заменить?" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "Заменить существующий файл?" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "Не удалось сохранить в: %1" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -657,34 +657,34 @@ "

    Следующий адрес URL не может быть загружен, протокол не поддерживается " "KGet:

    " -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "Неподдерживаемый протокол" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "Новая загрузка" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "Введите URL:" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "Выбор каталога" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, kde-format msgctxt "@title:window" msgid "Save As" msgstr "Сохранение в файл" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -693,7 +693,7 @@ "Ошибочный URL:\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, kde-format msgid "" "Malformed URL, protocol missing:\n" @@ -702,7 +702,7 @@ "Неверный URL, отсутствует протокол:\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -717,12 +717,12 @@ "\n" "Загрузить заново?" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, kde-format msgid "Download it again?" msgstr "Загрузить заново?" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -737,17 +737,17 @@ "\n" "Загрузить заново?" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, kde-format msgid "Delete it and download again?" msgstr "Удалить и загрузить заново?" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "Запись в папку невозможна" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -758,39 +758,39 @@ "\n" "Загрузить его и удалить предыдущую загрузку?" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, kde-format msgid "File already downloaded. Download anyway?" msgstr "Файл уже загружен. Загрузить снова?" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "Вы уже загружаете такой же файл" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, kde-format msgid "File already exists" msgstr "Файл уже существует" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "Подключение к Интернету восстановлено, передачи продолжаются." -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "Нет подключения к Интернету, передачи останавливаются." -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "Не удалось загрузить модуль: %1." -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -801,7 +801,7 @@ "%1\n" "т.к. это папка." -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -812,31 +812,31 @@ "%1\n" "т.к. это не локальный файл." -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    %1

    " msgstr "

    Был загружен файл:

    %1

    " -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, kde-format msgid "Download completed" msgstr "Загрузка завершена" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    %1

    " msgstr "

    Была начата загрузка:

    %1

    " -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, kde-format msgid "Download started" msgstr "Загрузка начата" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    Ошибка при загрузке:

    %1

    Сообщение " "об ошибке:

    %2

    " -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, kde-format msgid "Resolve" msgstr "Решить проблему" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, kde-format msgid "KGet is now closing, as all downloads have completed." msgstr "Все файлы загружены, KGet завершает свою работу." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "Все файлы загружены, компьютер сейчас будет выключен." # shutdown-method -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgctxt "Shutting down computer" msgid "Shutdown" msgstr "Завершение работы" # shutdown-method -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "Все файлы загружены, компьютер сейчас перейдёт в спящий режим." # shutdown-method -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "Спящий режим" # shutdown-method -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "Все файлы загружены, компьютер сейчас перейдёт в ждущий режим." # shutdown-method -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgctxt "Suspending computer" msgid "Suspending" msgstr "Ждущий режим" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, kde-format msgctxt "abort the proposed action" msgid "Abort" msgstr "Прервать" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "

    Все загрузки завершены.

    " -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, kde-format msgid "Downloads completed" msgstr "Загрузки завершены" @@ -1781,23 +1781,21 @@ msgid "Decrease Priority" msgstr "Понизить приоритет" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 -#, kde-format +#: mainwindow.cpp:204 +#, fuzzy, kde-format +#| msgid "Delete Group" +#| msgid_plural "Delete Groups" +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "Удалить группы" -msgstr[1] "Удалить группы" -msgstr[2] "Удалить группы" -msgstr[3] "Удалить группу" +msgstr "Удалить группы" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 -#, kde-format +#: mainwindow.cpp:210 +#, fuzzy, kde-format +#| msgid "Rename Group..." +#| msgid_plural "Rename Groups..." +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "Переименовать группы..." -msgstr[1] "Переименовать группы..." -msgstr[2] "Переименовать группы..." -msgstr[3] "Переименовать группу..." +msgstr "Переименовать группы..." #: mainwindow.cpp:215 #, kde-format @@ -2129,8 +2127,8 @@ msgid "Which files the chunk is located in" msgstr "Файл, в котором расположена эта часть" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2149,16 +2147,16 @@ msgid "Currently downloading:" msgstr "Сейчас загружается:" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, kde-format msgid "Downloaded:" msgstr "Загружено:" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -3025,8 +3023,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3090,8 +3088,8 @@ msgid "New Script...." msgstr "Новый сценарий..." -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, kde-format @@ -3420,6 +3418,24 @@ msgid "Failed to write to the file." msgstr "Ошибка записи в файл." +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "Удалить группы" +msgstr[1] "Удалить группы" +msgstr[2] "Удалить группы" +msgstr[3] "Удалить группу" + +#: ui/contextmenu.cpp:120 +#, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "Переименовать группы..." +msgstr[1] "Переименовать группы..." +msgstr[2] "Переименовать группы..." +msgstr[3] "Переименовать группу..." + #: ui/droptarget.cpp:84 #, kde-format msgctxt "fix position for droptarget" @@ -3730,31 +3746,31 @@ msgstr "Открыть файл" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, kde-format msgid "&File" msgstr "&Файл" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, kde-format msgid "&Downloads" msgstr "&Загрузки" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "&Настройка" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "&Справка" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "Основная панель инструментов" @@ -4135,8 +4151,8 @@ msgid "File size (in bytes):" msgstr "Размер файла (в байтах):" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, kde-format msgid "Verification:" @@ -4700,18 +4716,18 @@ msgid "Remaining Time:" msgstr "Осталось времени:" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, kde-format msgid "Transfer Settings for %1" msgstr "Параметры загрузки для %1" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." msgstr "Смена назначения не работает, назначение осталось неизменным." -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "Destination unmodified" msgstr "Назначение не изменено" diff -Nru kget-20.12.3/po/sk/kgetplugin.po kget-21.04.0/po/sk/kgetplugin.po --- kget-20.12.3/po/sk/kgetplugin.po 2021-03-02 00:48:42.000000000 +0000 +++ kget-21.04.0/po/sk/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: kgetplugin\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2020-04-17 10:29+0200\n" "Last-Translator: Dušan Kazik \n" "Language-Team: slovak\n" @@ -52,18 +52,14 @@ msgid "No Links" msgstr "Žiadne odkazy" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "Nie je možné komunikovať so správcom preberaní KGet." - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "Chyba komunikácie" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format msgid "&Tools" msgstr "&Nástroje" + +#~ msgid "Unable to communicate with the KGet download manager." +#~ msgstr "Nie je možné komunikovať so správcom preberaní KGet." + +#~ msgid "Communication Error" +#~ msgstr "Chyba komunikácie" diff -Nru kget-20.12.3/po/sk/kget.po kget-21.04.0/po/sk/kget.po --- kget-20.12.3/po/sk/kget.po 2021-03-02 00:48:42.000000000 +0000 +++ kget-21.04.0/po/sk/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" "PO-Revision-Date: 2019-08-06 15:56+0200\n" "Last-Translator: Matej Mrenica \n" "Language-Team: Slovak \n" @@ -274,7 +274,7 @@ msgid " sec" msgstr " sek" -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "Nemôžem otvoriť KWallet" @@ -321,7 +321,7 @@ msgid "The width of the columns in the history view" msgstr "Šírka stĺpcov v zobrazení histórie" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "Moduly" @@ -456,8 +456,8 @@ msgstr "Najsilnejší (najpomalšie)" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -483,7 +483,7 @@ msgstr "Servery kľúčov:" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -557,27 +557,27 @@ "Pridajte viac serverov v nastavení, alebo reštartuje KGet a opakujte " "sťahovanie." -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "Naozaj chcete odstrániť skupinu s názvom %1?" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, kde-format msgid "Remove Group" msgstr "Odstrániť skupinu" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "Naozaj chcete odstrániť nasledujúce skupiny?" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, kde-format msgid "Remove groups" msgstr "Odstrániť skupiny" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    Nasledujúci prenos bol pridaný do zoznamu sťahovaní:

    %1

    " -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, kde-format msgid "Download added" msgstr "Sťahovanie bolo pridané " -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "

    Nasledujúci prenos bol pridaný do zoznamu sťahovaní:

    " -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "

    Nasledujúce prenosy boli pridané do zoznamu sťahovaní:

    " -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "Moje sťahovania" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" @@ -615,17 +615,17 @@ "Súbor %1 už existuje.\n" "Chcete ho prepísať?" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "Prepísať existujúci súbor?" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "Nepodarilo sa uložiť do: %1" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -643,34 +643,34 @@ "

    Nasledujúce URL adresy nie je možné stiahnuť, pretože KGet nepodporuje " "ich protokoly:

    " -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "Nepodporovaný protokol" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "Nové sťahovanie" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "Zadajte URL:" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "Vybrať priečinok" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, kde-format msgctxt "@title:window" msgid "Save As" msgstr "Uložiť ako" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -679,7 +679,7 @@ "Neplatná adresa URL:\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, kde-format msgid "" "Malformed URL, protocol missing:\n" @@ -688,7 +688,7 @@ "Neplatná adresa URL, chýba protokol:\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -703,12 +703,12 @@ "\n" "Stiahnuť znovu?" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, kde-format msgid "Download it again?" msgstr "Stiahnuť znovu?" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -723,17 +723,17 @@ "\n" "Chcete ho odstrániť a stiahnuť znovu?" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, kde-format msgid "Delete it and download again?" msgstr "Chcete ho odstrániť a stiahnuť znovu?" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "Do adresára sa nedá zapisovať" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -744,39 +744,39 @@ "\n" "Chcete ho stiahnuť a odstrániť predchádzajúci?" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, kde-format msgid "File already downloaded. Download anyway?" msgstr "Súbor je už stiahnutý. Stiahnuť napriek tomu?" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "Už sťahujete rovnaký súbor" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, kde-format msgid "File already exists" msgstr "Súbor už existuje" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "Internetové pripojenie nadviazané, obnovujem prenosy." -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "Žiadne internetové pripojenie, zastavujem prenosy." -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "Zavádzač modulu nemohol načítať modul: %1." -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -787,7 +787,7 @@ "%1\n" "pretože je to adresár." -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -798,7 +798,7 @@ "%1\n" "pretože to nie je lokálny súbor." -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    Sťahovanie nasledujúceho súboru bolo dokončené:

    %1

    " -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, kde-format msgid "Download completed" msgstr "Sťahovanie bolo dokončené" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    Nasledujúci prenos bol spustený:

    %1

    " -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, kde-format msgid "Download started" msgstr "Sťahovanie bolo spustené" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    Nastala chyba v nasledujúcom prenose:

    " "%1

    Chybová správa:

    %2

    " -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, kde-format msgid "Resolve" msgstr "Vyriešiť" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, kde-format msgid "KGet is now closing, as all downloads have completed." msgstr "KGet sa teraz zatvára, pretože všetky sťahovania boli dokončené." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "Počítač bude teraz vypnutý, pretože všetky sťahovania boli dokončené." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgctxt "Shutting down computer" msgid "Shutdown" msgstr "Vypínanie" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "" "Počítač bude teraz uspatý na disk, pretože všetky sťahovania boli dokončené." -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "Hibernácia" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "" "Počítač bude teraz uspatý do RAM, pretože všetky sťahovania boli dokončené." -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgctxt "Suspending computer" msgid "Suspending" msgstr "Uspávanie" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, kde-format msgctxt "abort the proposed action" msgid "Abort" msgstr "Prerušiť" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "

    Všetky prenosy boli dokončené.

    " -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, kde-format msgid "Downloads completed" msgstr "Sťahovania boli dokončené" @@ -1760,21 +1760,21 @@ msgid "Decrease Priority" msgstr "Znížiť prioritu" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 -#, kde-format +#: mainwindow.cpp:204 +#, fuzzy, kde-format +#| msgid "Delete Group" +#| msgid_plural "Delete Groups" +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "Odstrániť skupinu" -msgstr[1] "Odstrániť skupiny" -msgstr[2] "Odstrániť skupiny" +msgstr "Odstrániť skupinu" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 -#, kde-format +#: mainwindow.cpp:210 +#, fuzzy, kde-format +#| msgid "Rename Group..." +#| msgid_plural "Rename Groups..." +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "Premenovať skupinu..." -msgstr[1] "Premenovať skupiny..." -msgstr[2] "Premenovať skupiny..." +msgstr "Premenovať skupinu..." #: mainwindow.cpp:215 #, kde-format @@ -2105,8 +2105,8 @@ msgid "Which files the chunk is located in" msgstr "V ktorých súboroch je blok umiestnený" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2125,16 +2125,16 @@ msgid "Currently downloading:" msgstr "Práve sa sťahuje:" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, kde-format msgid "Downloaded:" msgstr "Stiahnuté:" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -3000,8 +3000,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3065,8 +3065,8 @@ msgid "New Script...." msgstr "Nový skript...." -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, kde-format @@ -3395,6 +3395,22 @@ msgid "Failed to write to the file." msgstr "Zápis do súboru zlyhal." +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "Odstrániť skupinu" +msgstr[1] "Odstrániť skupiny" +msgstr[2] "Odstrániť skupiny" + +#: ui/contextmenu.cpp:120 +#, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "Premenovať skupinu..." +msgstr[1] "Premenovať skupiny..." +msgstr[2] "Premenovať skupiny..." + #: ui/droptarget.cpp:84 #, kde-format msgctxt "fix position for droptarget" @@ -3705,31 +3721,31 @@ msgstr "Otvoriť súbor" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, kde-format msgid "&File" msgstr "&Súbor" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, kde-format msgid "&Downloads" msgstr "&Sťahovania" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "Nas&tavenie" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "&Pomocník" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "Hlavný panel nástrojov" @@ -4110,8 +4126,8 @@ msgid "File size (in bytes):" msgstr "Veľkosť súboru (v bajtoch):" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, kde-format msgid "Verification:" @@ -4673,18 +4689,18 @@ msgid "Remaining Time:" msgstr "Zostávajúci čas:" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, kde-format msgid "Transfer Settings for %1" msgstr "Nastavenie prenosu pre %1" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." msgstr "Zmena cieľa sa nepodarila, cieľ zostáva nezmenený." -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "Destination unmodified" msgstr "Cieľ nezmenený" diff -Nru kget-20.12.3/po/sl/kgetplugin.po kget-21.04.0/po/sl/kgetplugin.po --- kget-20.12.3/po/sl/kgetplugin.po 2021-03-02 00:48:42.000000000 +0000 +++ kget-21.04.0/po/sl/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -1,7 +1,7 @@ # translation of kget.po to # Translation of kget.po to Slovenian # Copyright (C) 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc. -# $Id: kgetplugin.po 1569808 2020-05-22 08:27:06Z ltoscano $ +# $Id: kgetplugin.po 1588292 2020-12-13 05:01:38Z scripty $ # $Source$ # # Andrej Vernekar , 2002,2003, 2005, 2007. @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2013-11-29 17:23+0100\n" "Last-Translator: Andrej Mernik \n" "Language-Team: Slovenian \n" @@ -55,18 +55,14 @@ msgid "No Links" msgstr "Ni povezav" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "Ni se mogoče sporazumevati z upravljalnikom prejemov KGet." - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "Napaka sporazumevanja" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format msgid "&Tools" msgstr "O&rodja" + +#~ msgid "Unable to communicate with the KGet download manager." +#~ msgstr "Ni se mogoče sporazumevati z upravljalnikom prejemov KGet." + +#~ msgid "Communication Error" +#~ msgstr "Napaka sporazumevanja" diff -Nru kget-20.12.3/po/sl/kget.po kget-21.04.0/po/sl/kget.po --- kget-20.12.3/po/sl/kget.po 2021-03-02 00:48:42.000000000 +0000 +++ kget-21.04.0/po/sl/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -1,7 +1,7 @@ # translation of kget.po to # Translation of kget.po to Slovenian # Copyright (C) 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc. -# $Id: kget.po 1592192 2021-02-02 10:18:56Z scripty $ +# $Id: kget.po 1597235 2021-03-28 14:38:41Z scripty $ # $Source$ # # Andrej Vernekar , 2002,2003, 2005, 2007. @@ -9,13 +9,13 @@ # Jure Repinc , 2005, 2006, 2008, 2009, 2010, 2011, 2012, 2013. # Marko Burjek , 2007. # Andrej Mernik , 2012, 2013, 2014, 2015, 2018. -# Matjaž Jeran , 2020. +# Matjaž Jeran , 2020, 2021. msgid "" msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" -"PO-Revision-Date: 2020-03-20 08:24+0100\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" +"PO-Revision-Date: 2021-03-02 07:59+0100\n" "Last-Translator: Matjaž Jeran \n" "Language-Team: Slovenian \n" "Language: sl\n" @@ -23,7 +23,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Translator: Andrej Mernik \n" -"X-Generator: Poedit 2.3\n" +"X-Generator: Poedit 2.4.2\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n" "%100==4 ? 3 : 0);\n" @@ -278,7 +278,7 @@ msgid " sec" msgstr " sek." -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "Ni bilo mogoče odpreti Listnice za KDE" @@ -325,7 +325,7 @@ msgid "The width of the columns in the history view" msgstr "Širina stolpcev v prikazu zgodovine" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "Vstavki" @@ -460,8 +460,8 @@ msgstr "Najmočnejše (najpočasnejše)" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -487,7 +487,7 @@ msgstr "Strežniki ključev:" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -560,27 +560,27 @@ "prejet. V nastavitvah dodajte več strežnikov ali pa znova zaženite KGet in " "poskusite znova." -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "Ali ste prepričani, da želite odstraniti skupino z imenom %1?" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, kde-format msgid "Remove Group" msgstr "Odstrani skupino" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "Ali ste prepričani, da želite odstraniti naslednje skupine?" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, kde-format msgid "Remove groups" msgstr "Odstrani skupine" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    Naslednji prenos je bil dodan na seznam prejemov:

    %1

    " -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, kde-format msgid "Download added" msgstr "Prejem dodan" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "

    Naslednji prenos je bil dodan na seznam prejemov:

    " -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "

    Naslednji prenosi so bili dodani na seznam prejemov:

    " -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "Moji prejemi" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" @@ -618,17 +618,17 @@ "Datoteka %1 že obstaja.\n" "Jo želite prepisati?" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "Prepišem obstoječo datoteko?" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "Ni bilo mogoče shraniti v: %1" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -649,34 +649,34 @@ "

    Naslednjih naslovov URL ni bilo mogoče prejeti, KGet ne podpira njihovih " "protokolov:

    " -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "Protokol ni podprt" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "Nov prejem" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "Vnesite URL:" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "Izberi imenik" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, kde-format msgctxt "@title:window" msgid "Save As" msgstr "Shrani kot" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -685,7 +685,7 @@ "Napačno oblikovan URL:\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, kde-format msgid "" "Malformed URL, protocol missing:\n" @@ -694,7 +694,7 @@ "Napačno oblikovan URL, manjka protokol:\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -709,12 +709,12 @@ "\n" "Ali želite prejem opraviti znova?" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, kde-format msgid "Download it again?" msgstr "Želite prejem opraviti znova?" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -729,17 +729,17 @@ "\n" "Ali želite izbrisati datoteko in prejem opraviti znova?" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, kde-format msgid "Delete it and download again?" msgstr "Izbris in ponovni prejem?" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "Mapa ni zapisljiva" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -750,39 +750,39 @@ "\n" "Ali želite izbrisati obstoječo in jo prejeti znova?" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, kde-format msgid "File already downloaded. Download anyway?" msgstr "Datoteka že prejeta. Ali jo vseeno prejmem?" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "Enako datoteko že prejemate" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, kde-format msgid "File already exists" msgstr "Datoteka že obstaja" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "Internetna povezava je vzpostavljena, nadaljevanje prejemanja datotek." -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "Ni internetne povezave, preklic prejemanja datotek." -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "Nalagalnik ni mogel naložiti vstavka: %1." -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -793,7 +793,7 @@ "%1, \n" "ker je mapa." -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -804,7 +804,7 @@ "%1, \n" "ker ni krajevna datoteka." -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    Prejemanje naslednje datoteke se je zaključilo:

    %1

    " -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, kde-format msgid "Download completed" msgstr "Prejem je zaključen" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    Naslednji prenos se je začel:

    %1

    " -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, kde-format msgid "Download started" msgstr "Prejem se je začel" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    %1

    Sporočilo napake je:

    %2" -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, kde-format msgid "Resolve" msgstr "Razreši" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, kde-format msgid "KGet is now closing, as all downloads have completed." msgstr "KGet se bo sedaj zaprl, saj so bili vsi prejemi zaključeni." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "Računalnik se bo sedaj izklopil, saj so bili vsi prejemi zaključeni." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgctxt "Shutting down computer" msgid "Shutdown" msgstr "Izklopi" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "" "Računalnik bo zdaj postavljen v pripravljenost na disk, saj so bili vsi " "prejemi zaključeni." -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "Postavljanje v mirovanje" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "" "Računalnik se bo sedaj postavil v pripravljenost, saj so bili vsi prejemi " "zaključeni." -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgctxt "Suspending computer" msgid "Suspending" msgstr "Postavljanje v pripravljenost" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, kde-format msgctxt "abort the proposed action" msgid "Abort" msgstr "Prekini" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "

    Vsi prenosi so bili zaključeni.

    " -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, kde-format msgid "Downloads completed" msgstr "Prejemi so zaključeni" @@ -1775,23 +1775,17 @@ msgid "Decrease Priority" msgstr "Zmanjšaj prednost" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 +#: mainwindow.cpp:204 #, kde-format +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "Izbriši skupino" -msgstr[1] "Izbriši skupini" -msgstr[2] "Izbriši skupine" -msgstr[3] "Izbriši skupine" +msgstr "Zbriši skupino" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 +#: mainwindow.cpp:210 #, kde-format +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "Preimenuj skupino ..." -msgstr[1] "Preimenuj skupini ..." -msgstr[2] "Preimenuj skupine ..." -msgstr[3] "Preimenuj skupine ..." +msgstr "Preimenuj skupino..." #: mainwindow.cpp:215 #, kde-format @@ -2132,8 +2126,8 @@ msgid "Which files the chunk is located in" msgstr "V katerih datotekah se nahaja delček" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2152,16 +2146,16 @@ msgid "Currently downloading:" msgstr "Trenutno se prejema:" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, kde-format msgid "Downloaded:" msgstr "Prejeto:" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -3028,8 +3022,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3093,8 +3087,8 @@ msgid "New Script...." msgstr "Nov skript ...." -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, kde-format @@ -3424,6 +3418,24 @@ msgid "Failed to write to the file." msgstr "Zapisovanje v datoteko je spodletelo." +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "Izbriši skupino" +msgstr[1] "Izbriši skupini" +msgstr[2] "Izbriši skupine" +msgstr[3] "Izbriši skupine" + +#: ui/contextmenu.cpp:120 +#, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "Preimenuj skupino ..." +msgstr[1] "Preimenuj skupini ..." +msgstr[2] "Preimenuj skupine ..." +msgstr[3] "Preimenuj skupine ..." + #: ui/droptarget.cpp:84 #, kde-format msgctxt "fix position for droptarget" @@ -3734,31 +3746,31 @@ msgstr "Odpri datoteko" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, kde-format msgid "&File" msgstr "Datoteka" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, kde-format msgid "&Downloads" msgstr "Prejemi" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "Nastavitve" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "Pomoč" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "Glavna orodna vrstica" @@ -4139,8 +4151,8 @@ msgid "File size (in bytes):" msgstr "Velikost datoteke (v bajtih):" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, kde-format msgid "Verification:" @@ -4700,18 +4712,18 @@ msgid "Remaining Time:" msgstr "Preostali čas:" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, kde-format msgid "Transfer Settings for %1" msgstr "Nastavitve prenosa za %1" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." msgstr "Sprememba cilja ni uspela, zato ostaja nespremenjen." -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "Destination unmodified" msgstr "Cilj nespremenjen" diff -Nru kget-20.12.3/po/sl/plasma_runner_kget.po kget-21.04.0/po/sl/plasma_runner_kget.po --- kget-20.12.3/po/sl/plasma_runner_kget.po 2021-03-02 00:48:42.000000000 +0000 +++ kget-21.04.0/po/sl/plasma_runner_kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -8,8 +8,8 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2019-05-20 03:10+0200\n" -"PO-Revision-Date: 2020-02-23 20:32+0100\n" -"Last-Translator: \n" +"PO-Revision-Date: 2021-03-02 07:59+0100\n" +"Last-Translator: Matjaž Jeran \n" "Language-Team: Slovenian \n" "Language: sl\n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ "Translator: Andrej Mernik \n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n" "%100==4 ? 3 : 0);\n" -"X-Generator: Poedit 2.3\n" +"X-Generator: Poedit 2.4.2\n" #: kgetrunner.cpp:32 #, kde-format diff -Nru kget-20.12.3/po/sv/kgetplugin.po kget-21.04.0/po/sv/kgetplugin.po --- kget-20.12.3/po/sv/kgetplugin.po 2021-03-02 00:48:42.000000000 +0000 +++ kget-21.04.0/po/sv/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2011-02-05 09:43+0100\n" "Last-Translator: Stefan Asserhall \n" "Language-Team: Swedish \n" @@ -47,18 +47,14 @@ msgid "No Links" msgstr "Inga länkar" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "Kan inte kommunicera med nerladdningshanteraren Kget." - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "Kommunikationsfel" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format msgid "&Tools" msgstr "Verk&tyg" + +#~ msgid "Unable to communicate with the KGet download manager." +#~ msgstr "Kan inte kommunicera med nerladdningshanteraren Kget." + +#~ msgid "Communication Error" +#~ msgstr "Kommunikationsfel" diff -Nru kget-20.12.3/po/sv/kget.po kget-21.04.0/po/sv/kget.po --- kget-20.12.3/po/sv/kget.po 2021-03-02 00:48:42.000000000 +0000 +++ kget-21.04.0/po/sv/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -4,21 +4,21 @@ # # Mattias Newzella , 2002,2003. # Stefan Asserhäll , 2004, 2005, 2006, 2007, 2008, 2009, 2010. -# Stefan Asserhall , 2010, 2011, 2012, 2013, 2014, 2016, 2017, 2019. +# Stefan Asserhall , 2010, 2011, 2012, 2013, 2014, 2016, 2017, 2019, 2021. # Arve Eriksson <031299870@telia.com>, 2011. msgid "" msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" -"PO-Revision-Date: 2019-05-01 09:36+0100\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" +"PO-Revision-Date: 2021-03-01 07:24+0100\n" "Last-Translator: Stefan Asserhäll \n" "Language-Team: Swedish \n" "Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 2.0\n" +"X-Generator: Lokalize 20.08.1\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" #: conf/autopastemodel.cpp:174 @@ -272,7 +272,7 @@ msgid " sec" msgstr " sek" -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "Kunde inte öppna plånboken" @@ -319,7 +319,7 @@ msgid "The width of the columns in the history view" msgstr "Bredden på kolumnerna i historikvyn" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "Insticksprogram" @@ -454,8 +454,8 @@ msgstr "Starkast (långsammast)" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -481,7 +481,7 @@ msgstr "Nyckelservrar:" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -553,27 +553,27 @@ "Ingen användbar nyckelserver hittades, nyckel ej nerladdad. Lägg till flera " "servrar i inställningarna, eller starta om Kget och försök ladda ner igen." -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "Är du säker på att du vill ta bort gruppen som heter %1?" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, kde-format msgid "Remove Group" msgstr "Ta bort grupp" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "Är du säker på att du vill ta bort följande grupper?" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, kde-format msgid "Remove groups" msgstr "Ta bort grupper" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    Följande överföring har lagts till i nerladdningslistan:

    %1

    " -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, kde-format msgid "Download added" msgstr "Nerladdning tillagd" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "

    Följande överföring har lagts till i nerladdningslistan:

    " -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "

    Följande överföring har lagts till i nerladdningslistan:

    " -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "Nerladdningar" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" @@ -611,17 +611,17 @@ "Filen %1 finns redan.\n" "Skriv över?" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "Skriv över befintlig fil?" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "Kan inte spara i: %1" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -636,34 +636,34 @@ "

    Följande webbadress kan inte laddas ner. Dess protokoll stöds inte av " "Kget:

    " -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "Protokollet stöds inte" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "Ny nerladdning" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "Ange webbadress:" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "Välj katalog" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, kde-format msgctxt "@title:window" msgid "Save As" msgstr "Spara som" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -672,7 +672,7 @@ "Felaktig webbadress:\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, kde-format msgid "" "Malformed URL, protocol missing:\n" @@ -681,7 +681,7 @@ "Felaktig webbadress, saknar protokoll:\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -696,12 +696,12 @@ "\n" "Ladda ner den igen?" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, kde-format msgid "Download it again?" msgstr "Ladda ner den igen?" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -716,17 +716,17 @@ "\n" "Ta bort den och ladda ner igen?" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, kde-format msgid "Delete it and download again?" msgstr "Ta bort och ladda ner igen?" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "Katalogen är inte skrivbar" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -737,39 +737,39 @@ "\n" "Ladda ner och ta bort den tidigare?" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, kde-format msgid "File already downloaded. Download anyway?" msgstr "Filen redan nerladdad. Ladda ner ändå?" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "Du laddar redan ner samma fil" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, kde-format msgid "File already exists" msgstr "Filen finns redan" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "Internetanslutning upprättad, återupptar överföringar." -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "Ingen Internetanslutning, stoppar överföringar." -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "Laddaren av insticksprogram kunde inte ladda insticksprogrammet: %1" -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -780,7 +780,7 @@ "%1\n" "eftersom den är en katalog." -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -791,7 +791,7 @@ "%1\n" "eftersom den inte är en lokal fil." -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    Nerladdning av följande fil är klar:

    " "%1

    " -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, kde-format msgid "Download completed" msgstr "Nerladdning klar" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    Följande överföring har startats:

    %1

    " -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, kde-format msgid "Download started" msgstr "Nerladdning startad" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    Ett fel har uppstått i följande överföring:

    %1

    Felmeddelandet är:

    %2

    " -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, kde-format msgid "Resolve" msgstr "Lös upp" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, kde-format msgid "KGet is now closing, as all downloads have completed." msgstr "Kget avslutas nu, eftersom alla nerladdningar är klara." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "Datorn stängs nu av, eftersom alla nerladdningar är klara." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgctxt "Shutting down computer" msgid "Shutdown" msgstr "Avstängning" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "" "Datorn går nu till viloläge på disk, eftersom alla nerladdningar är klara." -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "Dvala" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "" "Datorn går nu till viloläge i minne, eftersom alla nerladdningar är klara." -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgctxt "Suspending computer" msgid "Suspending" msgstr "Viloläge" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, kde-format msgctxt "abort the proposed action" msgid "Abort" msgstr "Avbryt" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "

    Alla överföringar är färdiga.

    " -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, kde-format msgid "Downloads completed" msgstr "Nerladdning klar" @@ -1755,19 +1755,17 @@ msgid "Decrease Priority" msgstr "Minska prioritet" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 +#: mainwindow.cpp:204 #, kde-format +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "Ta bort grupp" -msgstr[1] "Ta bort grupper" +msgstr "Ta bort grupp" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 +#: mainwindow.cpp:210 #, kde-format +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "Byt namn på grupp" -msgstr[1] "Byt namn på grupper" +msgstr "Byt namn på grupp..." #: mainwindow.cpp:215 #, kde-format @@ -2100,8 +2098,8 @@ msgid "Which files the chunk is located in" msgstr "Vilka filer delen finns i" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2120,16 +2118,16 @@ msgid "Currently downloading:" msgstr "Nuvarande nerladdningar:" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, kde-format msgid "Downloaded:" msgstr "Nerladdat:" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -2998,8 +2996,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3063,8 +3061,8 @@ msgid "New Script...." msgstr "Nytt skript..." -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, kde-format @@ -3394,6 +3392,20 @@ msgid "Failed to write to the file." msgstr "Misslyckades skriva i filen." +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "Ta bort grupp" +msgstr[1] "Ta bort grupper" + +#: ui/contextmenu.cpp:120 +#, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "Byt namn på grupp" +msgstr[1] "Byt namn på grupper" + #: ui/droptarget.cpp:84 #, kde-format msgctxt "fix position for droptarget" @@ -3704,31 +3716,31 @@ msgstr "Öppna fil" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, kde-format msgid "&File" msgstr "&Arkiv" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, kde-format msgid "&Downloads" msgstr "&Nerladdningar" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "In&ställningar" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "&Hjälp" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "Huvudverktygsrad" @@ -4109,8 +4121,8 @@ msgid "File size (in bytes):" msgstr "Filstorlek (i byte):" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, kde-format msgid "Verification:" @@ -4671,18 +4683,18 @@ msgid "Remaining Time:" msgstr "Återstående tid:" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, kde-format msgid "Transfer Settings for %1" msgstr "Överföringsinställningar för %1" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." msgstr "Det fungerade inte att ändra mål, målet förblir oförändrat." -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "Destination unmodified" msgstr "Mål oförändrat" diff -Nru kget-20.12.3/po/tr/kgetplugin.po kget-21.04.0/po/tr/kgetplugin.po --- kget-20.12.3/po/tr/kgetplugin.po 2021-03-02 00:48:42.000000000 +0000 +++ kget-21.04.0/po/tr/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -18,7 +18,7 @@ msgstr "" "Project-Id-Version: kdenetwork-kde4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2014-06-08 13:57+0000\n" "Last-Translator: Volkan Gezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/kdenetwork-k-tr/" @@ -59,18 +59,14 @@ msgid "No Links" msgstr "Bağlantı Yok" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "KGet indirme yöneticisiyle iletişime geçilemiyor." - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "İletişim Hatası" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format msgid "&Tools" msgstr "&Araçlar" + +#~ msgid "Unable to communicate with the KGet download manager." +#~ msgstr "KGet indirme yöneticisiyle iletişime geçilemiyor." + +#~ msgid "Communication Error" +#~ msgstr "İletişim Hatası" diff -Nru kget-20.12.3/po/tr/kget.po kget-21.04.0/po/tr/kget.po --- kget-20.12.3/po/tr/kget.po 2021-03-02 00:48:42.000000000 +0000 +++ kget-21.04.0/po/tr/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -17,7 +17,7 @@ msgstr "" "Project-Id-Version: kdenetwork-kde4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" "PO-Revision-Date: 2017-09-19 09:30+0000\n" "Last-Translator: Kaan \n" "Language-Team: Turkish \n" @@ -279,7 +279,7 @@ msgid " sec" msgstr " sn" -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "KWallet açılamadı" @@ -326,7 +326,7 @@ msgid "The width of the columns in the history view" msgstr "Geçmiş görünümündeki sütunların genişliği" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "Eklentiler" @@ -461,8 +461,8 @@ msgstr "En güçlü (en yavaş)" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -488,7 +488,7 @@ msgstr "Anahtar sunucuları:" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -560,27 +560,27 @@ "Kullanılabilir anahtar sunucusu bulunamadı, anahtar indirilmedi. Ayarlardan " "daha fazla sunucu ekleyin veya KGet'i tekrar başlatarak deneyin." -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "%1 isimli grubu silmek istediğinizden emin misiniz?" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, kde-format msgid "Remove Group" msgstr "Grubu Kaldır" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "Bu grupları kaldırmak istediğinizden emin misiniz?" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, kde-format msgid "Remove groups" msgstr "Grupları kaldır" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    Aşağıdaki indirme görevi indirme listesine eklendi:

    %1

    " -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, kde-format msgid "Download added" msgstr "İndirme görevi eklendi" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "

    Aşağıdaki indirme görevi indirme listesine eklendi:

    " -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "

    Aşağıdaki indirme görevleri indirme listesine eklendi:

    " -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "İndirmelerim" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" @@ -618,17 +618,17 @@ "%1 dosyası var.\n" "Üzerine yazmak istiyor musunuz?" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "Var olan dosyanın üzerine yazılsın mı?" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "Buraya kaydedilemiyor: %1" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -641,35 +641,35 @@ msgstr[1] "" "

    Bu adresler indirilemez. Protokolleri KGet tarafından desteklenmiyor:

    " -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "Protokol desteklenmiyor" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "Yeni Aktarım" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "Adres Gir:" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, fuzzy, kde-format #| msgid "Save As" msgctxt "@title:window" msgid "Save As" msgstr "Farklı Kaydet" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -678,7 +678,7 @@ "Bozuk Adres:\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, kde-format msgid "" "Malformed URL, protocol missing:\n" @@ -687,7 +687,7 @@ "Bozuk adres, protokol yok:\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -702,12 +702,12 @@ "\n" "Yeniden yüklensin mi?" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, kde-format msgid "Download it again?" msgstr "Yeniden indirilsin mi?" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -722,17 +722,17 @@ "\n" "Silinip tekrar yüklensin mi?" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, kde-format msgid "Delete it and download again?" msgstr "Silinip yeniden indirilsin mi?" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "Dizin yazılabilir değil" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -743,39 +743,39 @@ "\n" "Eski indirilen silinip yeniden indirilsin mi?" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, kde-format msgid "File already downloaded. Download anyway?" msgstr "Dosya zaten indirilmiş. Yine de indirilsin mi?" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "Aynı dosya zaten indiriliyor" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, kde-format msgid "File already exists" msgstr "Dosya zaten var" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "İnternet bağlantısı sağlandı, aktarımlara devam ediliyor." -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "İnternet bağlantısı yok, aktarımlar durduruluyor." -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "Eklenti yükleyici eklentiyi yükleyemedi: %1." -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -786,7 +786,7 @@ "%1\n" "bir dizin." -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -797,7 +797,7 @@ "%1\n" "yerel bir dosya değil." -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    Aşağıdaki dosyanın indirilmesi tamamlandı:

    %1

    " -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, kde-format msgid "Download completed" msgstr "İndirme tamamlandı" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    Aşağıdaki dosyanın indirilmesine başlandı:

    %1

    " -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, kde-format msgid "Download started" msgstr "İndirme işlemi başladı" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    Bu indirmeler ile ilgili bir hata oluştu:

    %1

    Hata iletisi:

    %2

    " -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, kde-format msgid "Resolve" msgstr "Çözümle" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, kde-format msgid "KGet is now closing, as all downloads have completed." msgstr "Tüm aktarımlar tamamlandı, KGet uygulamasından çıkılıyor." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "Tüm aktarımlar tamamlandı, bilgisayar şimdi kapatılıyor." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgctxt "Shutting down computer" msgid "Shutdown" msgstr "Bilgisayarı Kapat" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "Tüm aktarımlar tamamlandı, bilgisayar şimdi hazırda bekletilecek." -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "Hazırda Bekletiliyor" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "" "Tüm aktarımlar tamamlandı, bilgisayar şimdi bellek kullanarak askıya " "alınacak." -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgctxt "Suspending computer" msgid "Suspending" msgstr "Askıya alınıyor" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, kde-format msgctxt "abort the proposed action" msgid "Abort" msgstr "İptal Et" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "

    Tüm aktarımlar tamamlandı.

    " -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, kde-format msgid "Downloads completed" msgstr "İndirmeler tamamlandı" @@ -1767,19 +1767,21 @@ msgid "Decrease Priority" msgstr "Önceliği Düşür" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 -#, kde-format +#: mainwindow.cpp:204 +#, fuzzy, kde-format +#| msgid "Delete Group" +#| msgid_plural "Delete Groups" +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "Grubu Sil" -msgstr[1] "Grupları Sil" +msgstr "Grubu Sil" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 -#, kde-format +#: mainwindow.cpp:210 +#, fuzzy, kde-format +#| msgid "Rename Group..." +#| msgid_plural "Rename Groups..." +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "Grubu Yeniden Adlandır..." -msgstr[1] "Grupları Yeniden Adlandır..." +msgstr "Grubu Yeniden Adlandır..." #: mainwindow.cpp:215 #, kde-format @@ -2115,8 +2117,8 @@ msgid "Which files the chunk is located in" msgstr "Parçanın, hangi dosyaların içinde bulunduğu" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2135,16 +2137,16 @@ msgid "Currently downloading:" msgstr "Şimdi indiriliyor:" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, kde-format msgid "Downloaded:" msgstr "İndirilen:" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -3014,8 +3016,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3079,8 +3081,8 @@ msgid "New Script...." msgstr "Yeni Betik...." -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, kde-format @@ -3409,6 +3411,20 @@ msgid "Failed to write to the file." msgstr "Dosyaya yazılamadı." +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "Grubu Sil" +msgstr[1] "Grupları Sil" + +#: ui/contextmenu.cpp:120 +#, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "Grubu Yeniden Adlandır..." +msgstr[1] "Grupları Yeniden Adlandır..." + #: ui/droptarget.cpp:84 #, kde-format msgctxt "fix position for droptarget" @@ -3722,31 +3738,31 @@ msgstr "Dosya aç" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, kde-format msgid "&File" msgstr "&Dosya" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, kde-format msgid "&Downloads" msgstr "&İndirmeler" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "Aya&rlar" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "&Yardım" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "Ana Araç Çubuğu" @@ -4129,8 +4145,8 @@ msgid "File size (in bytes):" msgstr "Dosya boyutu (bayt olarak):" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, kde-format msgid "Verification:" @@ -4691,19 +4707,19 @@ msgid "Remaining Time:" msgstr "Kalan Süre:" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, kde-format msgid "Transfer Settings for %1" msgstr "%1 için Aktarım Ayarları" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." msgstr "" "Hedefin değiştirilmesi başarısız, hedef değiştirilmeden önceki gibi kalacak." -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "Destination unmodified" msgstr "Hedef değiştirilmedi" diff -Nru kget-20.12.3/po/ug/kgetplugin.po kget-21.04.0/po/ug/kgetplugin.po --- kget-20.12.3/po/ug/kgetplugin.po 2021-03-02 00:48:42.000000000 +0000 +++ kget-21.04.0/po/ug/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kgetplugin\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2013-09-08 07:05+0900\n" "Last-Translator: Gheyret Kenji \n" "Language-Team: Uyghur Computer Science Association \n" @@ -48,18 +48,14 @@ msgid "No Links" msgstr "ئۇلانما يوق" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "بۇ KGet چۈشۈرۈش باشقۇرغۇچ بىلەن ئالاقە قىلالمىدى." - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "ئالاقە خاتالىقى" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format msgid "&Tools" msgstr "قوراللار(&T)" + +#~ msgid "Unable to communicate with the KGet download manager." +#~ msgstr "بۇ KGet چۈشۈرۈش باشقۇرغۇچ بىلەن ئالاقە قىلالمىدى." + +#~ msgid "Communication Error" +#~ msgstr "ئالاقە خاتالىقى" diff -Nru kget-20.12.3/po/ug/kget.po kget-21.04.0/po/ug/kget.po --- kget-20.12.3/po/ug/kget.po 2021-03-02 00:48:42.000000000 +0000 +++ kget-21.04.0/po/ug/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" "PO-Revision-Date: 2013-09-08 07:05+0900\n" "Last-Translator: Gheyret Kenji \n" "Language-Team: Uyghur Computer Science Association \n" @@ -269,7 +269,7 @@ msgid " sec" msgstr " سېكۇنت" -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "" @@ -316,7 +316,7 @@ msgid "The width of the columns in the history view" msgstr "" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "قىستۇرما" @@ -451,8 +451,8 @@ msgstr "ئەڭ كۈچلۈك (ئەڭ ئاستا)" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -478,7 +478,7 @@ msgstr "" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -546,71 +546,71 @@ "settings or restart KGet and retry downloading." msgstr "" -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, kde-format msgid "Remove Group" msgstr "گۇرۇپپىنى چىقىرىۋەت" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, kde-format msgid "Remove groups" msgstr "" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    %1

    " msgstr "" -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, kde-format msgid "Download added" msgstr "" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "" -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "" -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" "Overwrite?" msgstr "" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "مەۋجۇت ھۆججەتنى قاپلامسىز؟" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -620,35 +620,35 @@ "supported by KGet:

    " msgstr[0] "" -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "يېڭى چۈشۈرۈش" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "URL كىرگۈزۈڭ:" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, fuzzy, kde-format #| msgid "Save As" msgctxt "@title:window" msgid "Save As" msgstr "باشقا ئاتتا ساقلا" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -657,14 +657,14 @@ "بۇزۇق URL:\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, kde-format msgid "" "Malformed URL, protocol missing:\n" "%1" msgstr "" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -674,12 +674,12 @@ "Download it again?" msgstr "" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, kde-format msgid "Download it again?" msgstr "ئۇنى قايتا چۈشۈرەمدۇ؟" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -689,17 +689,17 @@ "Delete it and download again?" msgstr "" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, kde-format msgid "Delete it and download again?" msgstr "ئۇنى ئۆچۈرۈۋېتىپ قايتا چۈشۈرەمدۇ؟" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "مۇندەرىجە يېزىشچان ئەمەس" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -707,39 +707,39 @@ "Download and delete the previous one?" msgstr "" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, kde-format msgid "File already downloaded. Download anyway?" msgstr "" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, kde-format msgid "File already exists" msgstr "ھۆججەت مەۋجۇت" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "" -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "" -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "" -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -747,7 +747,7 @@ "as it is a directory." msgstr "" -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -755,31 +755,31 @@ "as it is not a local file." msgstr "" -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    %1

    " msgstr "" -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, kde-format msgid "Download completed" msgstr "چۈشۈرۈش تامام" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    %1

    " msgstr "" -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, kde-format msgid "Download started" msgstr "چۈشۈرۈش باشلاندى" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    %2

    " msgstr "" -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, kde-format msgid "Resolve" msgstr "تەھلىل" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, kde-format msgid "KGet is now closing, as all downloads have completed." msgstr "" -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "" -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgctxt "Shutting down computer" msgid "Shutdown" msgstr "تاقا" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgctxt "Suspending computer" msgid "Suspending" msgstr "" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, kde-format msgctxt "abort the proposed action" msgid "Abort" msgstr "توختات" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "

    ھەممە يوللاش تاماملاندى

    " -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, kde-format msgid "Downloads completed" msgstr "چۈشۈرۈشلەر تاماملاندى" @@ -1642,17 +1642,20 @@ msgid "Decrease Priority" msgstr "" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 -#, kde-format +#: mainwindow.cpp:204 +#, fuzzy, kde-format +#| msgid "Delete Group" +#| msgid_plural "Delete Groups" +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "گۇرۇپپا ئۆچۈر" +msgstr "گۇرۇپپا ئۆچۈر" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 -#, kde-format +#: mainwindow.cpp:210 +#, fuzzy, kde-format +#| msgid "Remove Group" +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "" +msgstr "گۇرۇپپىنى چىقىرىۋەت" #: mainwindow.cpp:215 #, kde-format @@ -1969,8 +1972,8 @@ msgid "Which files the chunk is located in" msgstr "" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -1989,16 +1992,16 @@ msgid "Currently downloading:" msgstr "نۆۋەتتە چۈشۈرۈۋاتقىنى:" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, kde-format msgid "Downloaded:" msgstr "چۈشۈرگىنى:" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -2841,8 +2844,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -2906,8 +2909,8 @@ msgid "New Script...." msgstr "يېڭى قوليازما…" -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, kde-format @@ -3230,6 +3233,18 @@ msgid "Failed to write to the file." msgstr "" +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "گۇرۇپپا ئۆچۈر" + +#: ui/contextmenu.cpp:120 +#, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "" + #: ui/droptarget.cpp:84 #, kde-format msgctxt "fix position for droptarget" @@ -3543,31 +3558,31 @@ msgstr "ھۆججەت ئاچ" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, kde-format msgid "&File" msgstr "ھۆججەت(&F)" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, kde-format msgid "&Downloads" msgstr "چۈشۈرۈلمىلەر(&D)" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "تەڭشەك(&S)" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "ياردەم(&H)" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "ئاساسىي قورال بالداق" @@ -3945,8 +3960,8 @@ msgid "File size (in bytes):" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, kde-format msgid "Verification:" @@ -4497,18 +4512,18 @@ msgid "Remaining Time:" msgstr "قالغان ۋاقىت:" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, kde-format msgid "Transfer Settings for %1" msgstr "" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." msgstr "" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "Destination unmodified" msgstr "" diff -Nru kget-20.12.3/po/uk/kgetplugin.po kget-21.04.0/po/uk/kgetplugin.po --- kget-20.12.3/po/uk/kgetplugin.po 2021-03-02 00:48:42.000000000 +0000 +++ kget-21.04.0/po/uk/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kgetplugin\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2011-02-05 09:15+0200\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Ukrainian \n" @@ -49,19 +49,15 @@ msgid "No Links" msgstr "Немає посилань" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "" -"Не вдалося обмінятися даними з програмою для керування отриманнями KGet." - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "Помилка встановлення зв'язку" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format msgid "&Tools" msgstr "&Інструменти" + +#~ msgid "Unable to communicate with the KGet download manager." +#~ msgstr "" +#~ "Не вдалося обмінятися даними з програмою для керування отриманнями KGet." + +#~ msgid "Communication Error" +#~ msgstr "Помилка встановлення зв'язку" diff -Nru kget-20.12.3/po/uk/kget.po kget-21.04.0/po/uk/kget.po --- kget-20.12.3/po/uk/kget.po 2021-03-02 00:48:42.000000000 +0000 +++ kget-21.04.0/po/uk/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -1,25 +1,25 @@ # Translation of kget.po to Ukrainian -# Copyright (C) 2002-2019 This_file_is_part_of_KDE +# Copyright (C) 2002-2021 This_file_is_part_of_KDE # This file is distributed under the license LGPL version 2.1 or # version 3 or later versions approved by the membership of KDE e.V. # # Andriy Rysin , 2002, 2003. # Eugene Onischenko , 2002, 2003, 2004, 2005. # Ivan Petrouchtchak , 2004, 2005, 2006, 2007, 2008. -# Yuri Chornoivan , 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2017, 2019. +# Yuri Chornoivan , 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2017, 2019, 2021. msgid "" msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" -"PO-Revision-Date: 2019-05-01 10:50+0300\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" +"PO-Revision-Date: 2021-03-01 09:23+0200\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Ukrainian \n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 19.03.70\n" +"X-Generator: Lokalize 20.11.70\n" "Plural-Forms: nplurals=4; plural=n==1 ? 3 : n%10==1 && n%100!=11 ? 0 : n" "%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" @@ -274,7 +274,7 @@ msgid " sec" msgstr " с" -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "Не вдалося відкрити KWallet" @@ -321,7 +321,7 @@ msgid "The width of the columns in the history view" msgstr "Ширина стовпчиків у вікні перегляду журналу" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "Додатки" @@ -456,8 +456,8 @@ msgstr "Посилена (найповільніша)" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -483,7 +483,7 @@ msgstr "Сервери ключів:" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -556,27 +556,27 @@ "серверів на допомогою діалогового вікна параметрів програми або " "перезапустіть KGet і повторіть спробу отримання." -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "Ви впевнені, що хочете вилучити групу з назвою %1?" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, kde-format msgid "Remove Group" msgstr "Вилучити групу" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "Ви впевнені, що хочете вилучити наведені нижче групи?" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, kde-format msgid "Remove groups" msgstr "Вилучити групи" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    До списку отримань було додано такий пункт:

    %1

    " -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, kde-format msgid "Download added" msgstr "Додано отримання" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "

    До списку перенесень було додано такий пункт:

    " -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "

    До списку перенесень було додано такі пункти:

    " -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "Мої отримання" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" @@ -614,17 +614,17 @@ "Файл %1 вже існує.\n" "Перезаписати його?" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "Перезаписати існуючий файл?" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "Неможливо зберегти до: %1" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -645,34 +645,34 @@ "

    Дані з наведеної нижче адреси неможливо отримати, підтримки відповідного " "протоколу у KGet не передбачено:

    " -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "Протокол не підтримується" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "Нове отримання" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "Введіть адресу URL:" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "Виберіть каталог" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, kde-format msgctxt "@title:window" msgid "Save As" msgstr "Збереження із новою назвою" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -681,7 +681,7 @@ "Неправильно сформований URL:\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, kde-format msgid "" "Malformed URL, protocol missing:\n" @@ -690,7 +690,7 @@ "Неправильно сформований URL, немає протоколу:\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -705,12 +705,12 @@ "\n" "Повторити їхнє отримання?" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, kde-format msgid "Download it again?" msgstr "Повторити отримання?" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -725,17 +725,17 @@ "\n" "Вилучити дані і повторити отримання?" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, kde-format msgid "Delete it and download again?" msgstr "Вилучити і повторити отримання?" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "В каталог неможливо записувати" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -746,39 +746,39 @@ "\n" "Вилучити попередній файл і отримати дані знову?" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, kde-format msgid "File already downloaded. Download anyway?" msgstr "Файл вже отримано. Отримати знову?" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "Ви вже отримуєте той самий файл" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, kde-format msgid "File already exists" msgstr "Файл вже існує" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "Встановлено з’єднання з інтернетом, поновлюємо перенесення даних." -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "З’єднання з інтернетом розірвано, припиняємо перенесення даних." -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "Засобу завантаження додатків не вдалося завантажити додаток: %1." -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -789,7 +789,7 @@ "%1,\n" "тому що це каталог." -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -800,31 +800,31 @@ "%1,\n" "тому що це не локальний файл." -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    %1

    " msgstr "

    Завершено отримання файла:

    %1

    " -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, kde-format msgid "Download completed" msgstr "Отримання завершено" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    %1

    " msgstr "

    Почато таке перенесення:

    %1

    " -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, kde-format msgid "Download started" msgstr "Почато отримання" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    %1

    Повідомлення про помилку:

    %2

    " -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, kde-format msgid "Resolve" msgstr "Вирішення" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, kde-format msgid "KGet is now closing, as all downloads have completed." msgstr "KGet буде закрито, оскільки завершено всі отримання." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "Комп’ютер вимикається, оскільки завершено всі отримання." -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgctxt "Shutting down computer" msgid "Shutdown" msgstr "Вимикання" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "" "Зараз операційну систему буде приспано на диск, оскільки завершено всі " "отримання." -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "Присипляння" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "" "Зараз операційну систему буде приспано у оперативну пам’ять, оскільки " "завершено всі отримання." -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgctxt "Suspending computer" msgid "Suspending" msgstr "Присипляння у пам’ять" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, kde-format msgctxt "abort the proposed action" msgid "Abort" msgstr "Перервати" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "

    Всі перенесення було завершено.

    " -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, kde-format msgid "Downloads completed" msgstr "Отримання завершено" @@ -1760,23 +1760,17 @@ msgid "Decrease Priority" msgstr "Зменшити пріоритет" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 +#: mainwindow.cpp:204 #, kde-format +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "Вилучити групи" -msgstr[1] "Вилучити групи" -msgstr[2] "Вилучити групи" -msgstr[3] "Вилучити групу" +msgstr "Вилучити групу" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 +#: mainwindow.cpp:210 #, kde-format +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "Перейменувати групи..." -msgstr[1] "Перейменувати групи..." -msgstr[2] "Перейменувати групи..." -msgstr[3] "Перейменувати групу..." +msgstr "Перейменувати групу…" #: mainwindow.cpp:215 #, kde-format @@ -2113,8 +2107,8 @@ msgid "Which files the chunk is located in" msgstr "Показує файли, у яких розташовано шматок" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2133,16 +2127,16 @@ msgid "Currently downloading:" msgstr "Отримуємо:" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, kde-format msgid "Downloaded:" msgstr "Отримано:" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -3008,8 +3002,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3073,8 +3067,8 @@ msgid "New Script...." msgstr "Новий скрипт..." -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, kde-format @@ -3403,6 +3397,24 @@ msgid "Failed to write to the file." msgstr "Не вдалося виконати запис до файла." +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "Вилучити групи" +msgstr[1] "Вилучити групи" +msgstr[2] "Вилучити групи" +msgstr[3] "Вилучити групу" + +#: ui/contextmenu.cpp:120 +#, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "Перейменувати групи..." +msgstr[1] "Перейменувати групи..." +msgstr[2] "Перейменувати групи..." +msgstr[3] "Перейменувати групу..." + #: ui/droptarget.cpp:84 #, kde-format msgctxt "fix position for droptarget" @@ -3714,31 +3726,31 @@ msgstr "Відкрити файл" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, kde-format msgid "&File" msgstr "&Файл" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, kde-format msgid "&Downloads" msgstr "&Отримання" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "П&араметри" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "&Довідка" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "Головний пенал" @@ -4119,8 +4131,8 @@ msgid "File size (in bytes):" msgstr "Розмір файла (у байтах):" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, kde-format msgid "Verification:" @@ -4687,18 +4699,18 @@ msgid "Remaining Time:" msgstr "Час, що залишився:" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, kde-format msgid "Transfer Settings for %1" msgstr "Параметри перенесення для %1" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." msgstr "Не вдалося змінити призначення, призначення залишиться незмінним." -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "Destination unmodified" msgstr "Незмінне призначення" diff -Nru kget-20.12.3/po/wa/kgetplugin.po kget-21.04.0/po/wa/kgetplugin.po --- kget-20.12.3/po/wa/kgetplugin.po 2021-03-02 00:48:42.000000000 +0000 +++ kget-21.04.0/po/wa/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -15,7 +15,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2003-09-10 00:07+0200\n" "Last-Translator: Lorint Hendschel \n" "Language-Team: walon \n" @@ -56,16 +56,6 @@ msgid "No Links" msgstr "Nole hårdêye" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "" - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format diff -Nru kget-20.12.3/po/wa/kget.po kget-21.04.0/po/wa/kget.po --- kget-20.12.3/po/wa/kget.po 2021-03-02 00:48:42.000000000 +0000 +++ kget-21.04.0/po/wa/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -15,7 +15,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" "PO-Revision-Date: 2003-09-10 00:07+0200\n" "Last-Translator: Lorint Hendschel \n" "Language-Team: walon \n" @@ -281,7 +281,7 @@ msgid " sec" msgstr "" -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, fuzzy, kde-format #| msgid "" #| "Could not open file for writing:\n" @@ -333,7 +333,7 @@ msgid "The width of the columns in the history view" msgstr "" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "" @@ -472,8 +472,8 @@ msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -501,7 +501,7 @@ msgstr "Roedeu" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -570,71 +570,71 @@ "settings or restart KGet and retry downloading." msgstr "" -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, fuzzy, kde-format msgid "Remove Group" msgstr "Prémetou ridant" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, fuzzy, kde-format msgid "Remove groups" msgstr "Prémetou ridant" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    %1

    " msgstr "" -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, fuzzy, kde-format msgid "Download added" msgstr "Manaedjeu des aberwetaedjes" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "" -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "" -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, fuzzy, kde-format msgid "My Downloads" msgstr "Manaedjeu des aberwetaedjes" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" "Overwrite?" msgstr "" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -645,48 +645,48 @@ msgstr[0] "" msgstr[1] "" -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, fuzzy, kde-format msgid "New Download" msgstr "Manaedjeu des aberwetaedjes" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, kde-format msgctxt "@title:window" msgid "Save As" msgstr "" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" "%1" msgstr "" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, kde-format msgid "" "Malformed URL, protocol missing:\n" "%1" msgstr "" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -696,12 +696,12 @@ "Download it again?" msgstr "" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, fuzzy, kde-format msgid "Download it again?" msgstr "Manaedjeu des aberwetaedjes" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -711,17 +711,17 @@ "Delete it and download again?" msgstr "" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, fuzzy, kde-format msgid "Delete it and download again?" msgstr "Manaedjeu des aberwetaedjes" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -729,39 +729,39 @@ "Download and delete the previous one?" msgstr "" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, kde-format msgid "File already downloaded. Download anyway?" msgstr "" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, kde-format msgid "File already exists" msgstr "" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "" -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "" -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "" -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -769,7 +769,7 @@ "as it is a directory." msgstr "" -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -777,31 +777,31 @@ "as it is not a local file." msgstr "" -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    %1

    " msgstr "" -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, fuzzy, kde-format msgid "Download completed" msgstr "Prémetou ridant" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    %1

    " msgstr "" -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, fuzzy, kde-format msgid "Download started" msgstr "Manaedjeu des aberwetaedjes" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    %2

    " msgstr "" -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, fuzzy, kde-format msgid "Resolve" msgstr " Transfers: %1" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, kde-format msgid "KGet is now closing, as all downloads have completed." msgstr "" -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "" -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgctxt "Shutting down computer" msgid "Shutdown" msgstr "" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, fuzzy, kde-format msgctxt "Suspending computer" msgid "Suspending" msgstr "Kesse" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, fuzzy, kde-format msgctxt "abort the proposed action" msgid "Abort" msgstr "Conter" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "" -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, fuzzy, kde-format msgid "Downloads completed" msgstr "Prémetou ridant" @@ -1692,19 +1692,17 @@ msgid "Decrease Priority" msgstr "Conter" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 -#, kde-format +#: mainwindow.cpp:204 +#, fuzzy, kde-format +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "" -msgstr[1] "" +msgstr "Prémetou ridant" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 +#: mainwindow.cpp:210 #, fuzzy, kde-format +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "Prémetou ridant" -msgstr[1] "Prémetou ridant" +msgstr "Prémetou ridant" #: mainwindow.cpp:215 #, kde-format @@ -2028,8 +2026,8 @@ msgid "Which files the chunk is located in" msgstr "" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2049,16 +2047,16 @@ msgid "Currently downloading:" msgstr "" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, fuzzy, kde-format msgid "Downloaded:" msgstr "Manaedjeu des aberwetaedjes" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -2915,8 +2913,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -2981,8 +2979,8 @@ msgid "New Script...." msgstr "" -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, fuzzy, kde-format @@ -3316,6 +3314,20 @@ "Dji n' a savou scrire e l' fitchî:\n" "%1" +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "" +msgstr[1] "" + +#: ui/contextmenu.cpp:120 +#, fuzzy, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "Prémetou ridant" +msgstr[1] "Prémetou ridant" + #: ui/droptarget.cpp:84 #, fuzzy, kde-format #| msgid "Sticky" @@ -3636,31 +3648,31 @@ msgstr "Drovi &fitchî" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, fuzzy, kde-format msgid "&File" msgstr "Drovi &fitchî" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, fuzzy, kde-format msgid "&Downloads" msgstr "Manaedjeu des aberwetaedjes" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "" @@ -4046,8 +4058,8 @@ msgid "File size (in bytes):" msgstr "Li grandeu totåle est di %1 octets" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, fuzzy, kde-format #| msgid "Description" @@ -4609,18 +4621,18 @@ msgid "Remaining Time:" msgstr "" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, fuzzy, kde-format msgid "Transfer Settings for %1" msgstr "Prémetou ridant" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." msgstr "" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, fuzzy, kde-format #| msgid "Destination:" msgid "Destination unmodified" @@ -5357,10 +5369,6 @@ #~ msgstr "Prémetou ridant" #, fuzzy -#~ msgid "Default Group" -#~ msgstr "Prémetou ridant" - -#, fuzzy #~ msgid "DlgAdvanced" #~ msgstr "Sipepieus" diff -Nru kget-20.12.3/po/zh_CN/kgetplugin.po kget-21.04.0/po/zh_CN/kgetplugin.po --- kget-20.12.3/po/zh_CN/kgetplugin.po 2021-03-02 00:48:42.000000000 +0000 +++ kget-21.04.0/po/zh_CN/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -13,8 +13,8 @@ msgstr "" "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" -"PO-Revision-Date: 2021-02-04 12:01\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" +"PO-Revision-Date: 2021-03-27 17:31\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" @@ -58,16 +58,6 @@ msgid "No Links" msgstr "无链接" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "无法与 KGet 下载管理器进行通讯。" - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "通讯错误" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format diff -Nru kget-20.12.3/po/zh_CN/kget.po kget-21.04.0/po/zh_CN/kget.po --- kget-20.12.3/po/zh_CN/kget.po 2021-03-02 00:48:42.000000000 +0000 +++ kget-21.04.0/po/zh_CN/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -14,8 +14,8 @@ msgstr "" "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" -"PO-Revision-Date: 2021-02-04 12:01\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" +"PO-Revision-Date: 2021-03-27 17:31\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" @@ -280,7 +280,7 @@ msgid " sec" msgstr " 秒" -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "无法打开 KWallet" @@ -327,7 +327,7 @@ msgid "The width of the columns in the history view" msgstr "历史视图的列宽" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "插件" @@ -462,8 +462,8 @@ msgstr "最强(最慢)" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -489,7 +489,7 @@ msgstr "密钥服务器:" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -559,27 +559,27 @@ "找不到可用的密钥服务器,未能下载密钥。请在设置中添加更多密钥服务器,或者重新" "启动 KGet 并重试下载。" -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "您确定要删除分组 %1 吗?" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, kde-format msgid "Remove Group" msgstr "移除组" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "您确定要删除以下分组吗?" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, kde-format msgid "Remove groups" msgstr "删除分组" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    已经将以下传输添加到下载列表:

    %1

    " -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, kde-format msgid "Download added" msgstr "下载已添加" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "

    已经将以下传输添加到下载列表:

    " -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "

    已经将以下传输添加到下载列表:

    " -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "我的下载" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" @@ -616,17 +616,17 @@ "文件 %1 已存在。\n" "覆盖吗?" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "覆盖已有文件吗?" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "无法保存到:%1" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -636,34 +636,34 @@ "supported by KGet:

    " msgstr[0] "

    以下 URL 无法被下载,因为 KGet 不支持这些协议:

    " -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "不支持的协议" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "新建下载" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "输入 URL:" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "选择目录" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, kde-format msgctxt "@title:window" msgid "Save As" msgstr "另存为" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -672,7 +672,7 @@ "无效的 URL:\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, kde-format msgid "" "Malformed URL, protocol missing:\n" @@ -681,7 +681,7 @@ "不正确的 URL,缺少协议:\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -696,12 +696,12 @@ "\n" "要重新下载吗?" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, kde-format msgid "Download it again?" msgstr "要重新下载吗?" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -716,17 +716,17 @@ "\n" "删除正在进行的任务并重新新建?" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, kde-format msgid "Delete it and download again?" msgstr "删除并重新下载吗?" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "目录不可写" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -737,39 +737,39 @@ "\n" "仍然要下载它并删除前一个吗?" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, kde-format msgid "File already downloaded. Download anyway?" msgstr "文件已经下载过。仍然要下载吗?" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "您已经在下载同一个文件了" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, kde-format msgid "File already exists" msgstr "文件已存在" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "网络连接建立,恢复传输。" -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "无网络连接诶,中断传输。" -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "插件加载器无法加载插件:%1。" -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -780,7 +780,7 @@ "%1\n" "因其是一个目录。" -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -791,31 +791,31 @@ "%1\n" "因其不是本地文件。" -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    %1

    " msgstr "

    以下文件下载完成:

    %1

    " -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, kde-format msgid "Download completed" msgstr "下载完成" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    %1

    " msgstr "

    以下传输已经开始:

    %1

    " -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, kde-format msgid "Download started" msgstr "开始下载" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    以下传输发生错误:

    %1

    错误消息为:" "

    %2

    " -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, kde-format msgid "Resolve" msgstr "解决" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, kde-format msgid "KGet is now closing, as all downloads have completed." msgstr "全部下载已完成,KGet 将退出。" -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "全部下载已完成,现在将关闭计算机。" -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgctxt "Shutting down computer" msgid "Shutdown" msgstr "关机" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "全部下载已完成,现在计算机将挂起到磁盘。" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "休眠中" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "全部下载已完成,现在计算机将挂起到内存。" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgctxt "Suspending computer" msgid "Suspending" msgstr "挂起中" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, kde-format msgctxt "abort the proposed action" msgid "Abort" msgstr "中止" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "

    全部传输均已完成。

    " -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, kde-format msgid "Downloads completed" msgstr "下载完成" @@ -1738,17 +1738,17 @@ msgid "Decrease Priority" msgstr "降低优先级" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 +#: mainwindow.cpp:204 #, kde-format +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "删除分组" +msgstr "" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 +#: mainwindow.cpp:210 #, kde-format +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "重命名分组..." +msgstr "" #: mainwindow.cpp:215 #, kde-format @@ -2072,8 +2072,8 @@ msgid "Which files the chunk is located in" msgstr "数据块归属的文件" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2092,16 +2092,16 @@ msgid "Currently downloading:" msgstr "当前下载:" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, kde-format msgid "Downloaded:" msgstr "已下载:" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -2955,8 +2955,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3020,8 +3020,8 @@ msgid "New Script...." msgstr "新建脚本..." -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, kde-format @@ -3346,6 +3346,18 @@ msgid "Failed to write to the file." msgstr "写入文件失败。" +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "删除分组" + +#: ui/contextmenu.cpp:120 +#, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "重命名分组..." + #: ui/droptarget.cpp:84 #, kde-format msgctxt "fix position for droptarget" @@ -3656,31 +3668,31 @@ msgstr "打开文件" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, kde-format msgid "&File" msgstr "文件(&F)" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, kde-format msgid "&Downloads" msgstr "&下载" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "设置(&S)" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "帮助(&H)" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "主工具栏" @@ -4058,8 +4070,8 @@ msgid "File size (in bytes):" msgstr "文件大小(字节):" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, kde-format msgid "Verification:" @@ -4613,18 +4625,18 @@ msgid "Remaining Time:" msgstr "剩余时间:" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, kde-format msgid "Transfer Settings for %1" msgstr "%1 的传输设置" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." msgstr "无法更改目的地,因此未对其作改动。" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "Destination unmodified" msgstr "目的地未修改" diff -Nru kget-20.12.3/po/zh_CN/plasma_applet_kget.po kget-21.04.0/po/zh_CN/plasma_applet_kget.po --- kget-20.12.3/po/zh_CN/plasma_applet_kget.po 2021-03-02 00:48:42.000000000 +0000 +++ kget-21.04.0/po/zh_CN/plasma_applet_kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -7,7 +7,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2019-05-20 03:10+0200\n" -"PO-Revision-Date: 2021-02-04 12:01\n" +"PO-Revision-Date: 2021-03-27 17:31\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -Nru kget-20.12.3/po/zh_CN/plasma_runner_kget.po kget-21.04.0/po/zh_CN/plasma_runner_kget.po --- kget-20.12.3/po/zh_CN/plasma_runner_kget.po 2021-03-02 00:48:42.000000000 +0000 +++ kget-21.04.0/po/zh_CN/plasma_runner_kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -9,7 +9,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2019-05-20 03:10+0200\n" -"PO-Revision-Date: 2021-02-04 12:01\n" +"PO-Revision-Date: 2021-03-27 17:31\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -Nru kget-20.12.3/po/zh_TW/kgetplugin.po kget-21.04.0/po/zh_TW/kgetplugin.po --- kget-20.12.3/po/zh_TW/kgetplugin.po 2021-03-02 00:48:42.000000000 +0000 +++ kget-21.04.0/po/zh_TW/kgetplugin.po 2021-04-16 08:44:10.000000000 +0000 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-04-24 03:34+0200\n" +"POT-Creation-Date: 2020-12-13 02:29+0100\n" "PO-Revision-Date: 2010-12-06 11:45+0800\n" "Last-Translator: Franklin Weng \n" "Language-Team: Chinese Traditional \n" @@ -52,18 +52,14 @@ msgid "No Links" msgstr "沒有連結" -#: kget_plug_in.cpp:184 -#, kde-format -msgid "Unable to communicate with the KGet download manager." -msgstr "無法與 KGet 下載管理員聯繫!" - -#: kget_plug_in.cpp:185 -#, kde-format -msgid "Communication Error" -msgstr "通訊錯誤" - #. i18n: ectx: Menu (tools) #: kget_plug_in.rc:4 #, kde-format msgid "&Tools" msgstr "工具(&T)" + +#~ msgid "Unable to communicate with the KGet download manager." +#~ msgstr "無法與 KGet 下載管理員聯繫!" + +#~ msgid "Communication Error" +#~ msgstr "通訊錯誤" diff -Nru kget-20.12.3/po/zh_TW/kget.po kget-21.04.0/po/zh_TW/kget.po --- kget-20.12.3/po/zh_TW/kget.po 2021-03-02 00:48:42.000000000 +0000 +++ kget-21.04.0/po/zh_TW/kget.po 2021-04-16 08:44:10.000000000 +0000 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: kget\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-02-02 09:40+0100\n" +"POT-Creation-Date: 2021-03-28 13:53+0000\n" "PO-Revision-Date: 2019-05-01 21:10+0800\n" "Last-Translator: pan93412 \n" "Language-Team: Chinese \n" @@ -274,7 +274,7 @@ msgid " sec" msgstr " 秒" -#: conf/dlgwebinterface.cpp:45 conf/dlgwebinterface.cpp:60 +#: conf/dlgwebinterface.cpp:44 conf/dlgwebinterface.cpp:59 #, kde-format msgid "Could not open KWallet" msgstr "無法開啟 KWallet" @@ -321,7 +321,7 @@ msgid "The width of the columns in the history view" msgstr "歷史檢視的欄位寬度" -#: conf/pluginselector.cpp:28 conf/preferencesdialog.cpp:78 +#: conf/pluginselector.cpp:25 conf/preferencesdialog.cpp:78 #, kde-format msgid "Plugins" msgstr "外掛程式" @@ -456,8 +456,8 @@ msgstr "最強(最慢)" #. i18n: ectx: property (title), widget (QGroupBox, signatureGroup) -#. i18n: ectx: property (text), widget (QPushButton, signature) #. i18n: ectx: property (title), widget (QGroupBox, sigGroup) +#. i18n: ectx: property (text), widget (QPushButton, signature) #: conf/verificationpreferences.ui:87 ui/signaturedlg.ui:20 #: ui/transfersettingsdialog.ui:172 #, kde-format @@ -483,7 +483,7 @@ msgstr "金鑰伺服器:" #: core/datasourcefactory.cpp:279 core/datasourcefactory.cpp:624 -#: core/kget.cpp:1392 transfer-plugins/metalink/metalink.cpp:200 +#: core/kget.cpp:1391 transfer-plugins/metalink/metalink.cpp:200 #: transfer-plugins/metalink/metalinkhttp.cpp:242 #: transfer-plugins/metalink/metalinkxml.cpp:199 #: ui/metalinkcreator/metalinkcreator.cpp:149 @@ -553,54 +553,54 @@ "找不到可用的金鑰伺服器,因此未下載金鑰。請先在設定中新增伺服器,或重新啟動 " "KGet 重新下載。" -#: core/kget.cpp:122 +#: core/kget.cpp:121 #, kde-format msgid "Are you sure that you want to remove the group named %1?" msgstr "你確定要刪除名為 %1 的群組嗎?" -#: core/kget.cpp:123 +#: core/kget.cpp:122 #, kde-format msgid "Remove Group" msgstr "移除群組" -#: core/kget.cpp:147 +#: core/kget.cpp:146 #, kde-format msgid "Are you sure that you want to remove the following groups?" msgstr "您確定您要移除以下的群組嗎?" -#: core/kget.cpp:149 +#: core/kget.cpp:148 #, kde-format msgid "Remove groups" msgstr "移除群組" -#: core/kget.cpp:255 +#: core/kget.cpp:254 #, kde-format msgid "" "

    The following transfer has been added to the download list:

    %1

    " msgstr "

    以下傳輸已加入下載清單:

    %1

    " -#: core/kget.cpp:256 core/kget.cpp:353 +#: core/kget.cpp:255 core/kget.cpp:352 #, kde-format msgid "Download added" msgstr "下載已新增" -#: core/kget.cpp:348 +#: core/kget.cpp:347 #, kde-format msgid "

    The following transfer has been added to the download list:

    " msgstr "

    以下傳輸已加入下載清單:

    " -#: core/kget.cpp:350 +#: core/kget.cpp:349 #, kde-format msgid "

    The following transfers have been added to the download list:

    " msgstr "

    以下傳輸已加入下載清單:

    " -#: core/kget.cpp:518 core/kget.cpp:567 +#: core/kget.cpp:517 core/kget.cpp:566 #, kde-format msgid "My Downloads" msgstr "我的下載" -#: core/kget.cpp:577 +#: core/kget.cpp:576 #, kde-format msgid "" "The file %1 already exists.\n" @@ -609,17 +609,17 @@ "檔案 %1 已存在。\n" "您要覆寫它嗎?" -#: core/kget.cpp:578 +#: core/kget.cpp:577 #, kde-format msgid "Overwrite existing file?" msgstr "要覆寫現有檔案嗎?" -#: core/kget.cpp:599 ui/metalinkcreator/metalinkcreator.cpp:166 +#: core/kget.cpp:598 ui/metalinkcreator/metalinkcreator.cpp:166 #, kde-format msgid "Unable to save to: %1" msgstr "無法儲存:%1" -#: core/kget.cpp:902 +#: core/kget.cpp:901 #, kde-format msgid "" "

    The following URL cannot be downloaded, its protocol is not supported by " @@ -629,34 +629,34 @@ "supported by KGet:

    " msgstr[0] "

    以下的網址無法下載,因為 KGet 不支援它們的協定:

    " -#: core/kget.cpp:912 +#: core/kget.cpp:911 #, kde-format msgid "Protocol unsupported" msgstr "不支援的協定" -#: core/kget.cpp:966 ui/newtransferdialog.cpp:53 +#: core/kget.cpp:965 ui/newtransferdialog.cpp:53 #, kde-format msgid "New Download" msgstr "新下載" -#: core/kget.cpp:966 +#: core/kget.cpp:965 #, kde-format msgid "Enter URL:" msgstr "輸入網址:" -#: core/kget.cpp:986 +#: core/kget.cpp:985 #, kde-format msgctxt "@title:window" msgid "Choose Directory" msgstr "選擇目錄" -#: core/kget.cpp:1005 +#: core/kget.cpp:1004 #, kde-format msgctxt "@title:window" msgid "Save As" msgstr "另存新檔" -#: core/kget.cpp:1018 core/urlchecker.cpp:366 +#: core/kget.cpp:1017 core/urlchecker.cpp:366 #, kde-format msgid "" "Malformed URL:\n" @@ -665,7 +665,7 @@ "不正確的網址:\n" "%1" -#: core/kget.cpp:1025 core/urlchecker.cpp:368 +#: core/kget.cpp:1024 core/urlchecker.cpp:368 #, kde-format msgid "" "Malformed URL, protocol missing:\n" @@ -674,7 +674,7 @@ "不正確的網址,遺失協定:\n" "%1" -#: core/kget.cpp:1036 core/urlchecker.cpp:424 +#: core/kget.cpp:1035 core/urlchecker.cpp:424 #, kde-format msgid "" "You have already completed a download from the location: \n" @@ -689,12 +689,12 @@ "\n" "要再下載一次嗎?" -#: core/kget.cpp:1037 core/urlchecker.cpp:641 +#: core/kget.cpp:1036 core/urlchecker.cpp:641 #, kde-format msgid "Download it again?" msgstr "要再次下載嗎?" -#: core/kget.cpp:1049 core/urlchecker.cpp:426 +#: core/kget.cpp:1048 core/urlchecker.cpp:426 #, kde-format msgid "" "You have a download in progress from the location: \n" @@ -709,17 +709,17 @@ "\n" "要刪除此下載,並重新來過嗎?" -#: core/kget.cpp:1050 core/urlchecker.cpp:638 +#: core/kget.cpp:1049 core/urlchecker.cpp:638 #, kde-format msgid "Delete it and download again?" msgstr "要刪除並重新下載嗎?" -#: core/kget.cpp:1073 core/kget.cpp:1080 +#: core/kget.cpp:1072 core/kget.cpp:1079 #, kde-format msgid "Directory is not writable" msgstr "目錄無法寫入" -#: core/kget.cpp:1108 +#: core/kget.cpp:1107 #, kde-format msgid "" "You have already downloaded that file from another location.\n" @@ -730,39 +730,39 @@ "\n" "要把前一個殺掉並重新下載嗎?" -#: core/kget.cpp:1109 core/urlchecker.cpp:650 +#: core/kget.cpp:1108 core/urlchecker.cpp:650 #, kde-format msgid "File already downloaded. Download anyway?" msgstr "檔案已下載。還要再下載一次嗎?" -#: core/kget.cpp:1118 +#: core/kget.cpp:1117 #, kde-format msgid "You are already downloading the same file" msgstr "您已經下載過相同的檔案" -#: core/kget.cpp:1122 core/kget.cpp:1125 core/urlchecker.cpp:653 +#: core/kget.cpp:1121 core/kget.cpp:1124 core/urlchecker.cpp:653 #: core/urlchecker.cpp:735 transfer-plugins/metalink/abstractmetalink.cpp:481 #: transfer-plugins/metalink/metalink.cpp:717 #, kde-format msgid "File already exists" msgstr "檔案已經存在" -#: core/kget.cpp:1230 +#: core/kget.cpp:1229 #, kde-format msgid "Internet connection established, resuming transfers." msgstr "網路連線已建立,回復傳輸中。" -#: core/kget.cpp:1235 +#: core/kget.cpp:1234 #, kde-format msgid "No internet connection, stopping transfers." msgstr "沒有網路連線,停止傳輸。" -#: core/kget.cpp:1248 +#: core/kget.cpp:1247 #, kde-format msgid "Plugin loader could not load the plugin: %1." msgstr "外掛程式載入器無法載入外掛程式:%1" -#: core/kget.cpp:1263 +#: core/kget.cpp:1262 #, kde-format msgid "" "Not deleting\n" @@ -772,7 +772,7 @@ "未刪除 %1\n" "因為它是個目錄。" -#: core/kget.cpp:1274 +#: core/kget.cpp:1273 #, kde-format msgid "" "Not deleting\n" @@ -782,31 +782,31 @@ "未刪除 %1\n" "因為它不是本地端檔案。" -#: core/kget.cpp:1385 +#: core/kget.cpp:1384 #, kde-format msgid "" "

    The following file has finished downloading:

    %1

    " msgstr "

    以下檔案已完成下載:

    %1

    " -#: core/kget.cpp:1386 +#: core/kget.cpp:1385 #, kde-format msgid "Download completed" msgstr "下載完成" -#: core/kget.cpp:1389 +#: core/kget.cpp:1388 #, kde-format msgid "" "

    The following transfer has been started:

    %1

    " msgstr "

    以下檔案已開始下載:

    %1

    " -#: core/kget.cpp:1390 +#: core/kget.cpp:1389 #, kde-format msgid "Download started" msgstr "下載已開始" -#: core/kget.cpp:1392 +#: core/kget.cpp:1391 #, kde-format msgid "" "

    There has been an error in the following transfer:

    以下傳輸發生了錯誤:

    %1

    錯誤訊息" "為:

    %2

    " -#: core/kget.cpp:1397 +#: core/kget.cpp:1396 #, kde-format msgid "Resolve" msgstr "解決" -#: core/kget.cpp:1449 +#: core/kget.cpp:1448 #, kde-format msgid "KGet is now closing, as all downloads have completed." msgstr "所有下載都已完成,KGet 即將關閉。" -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgid "The computer will now turn off, as all downloads have completed." msgstr "所有下載都已完成,電腦即將關閉。" -#: core/kget.cpp:1453 +#: core/kget.cpp:1452 #, kde-format msgctxt "Shutting down computer" msgid "Shutdown" msgstr "關機" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgid "The computer will now suspend to disk, as all downloads have completed." msgstr "所有下載都已完成,電腦即將暫停。" -#: core/kget.cpp:1456 +#: core/kget.cpp:1455 #, kde-format msgctxt "Hibernating computer" msgid "Hibernating" msgstr "休眠中" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgid "The computer will now suspend to RAM, as all downloads have completed." msgstr "所有下載都已完成,電腦即將暫停並儲存到記憶體。" -#: core/kget.cpp:1459 +#: core/kget.cpp:1458 #, kde-format msgctxt "Suspending computer" msgid "Suspending" msgstr "暫停中" -#: core/kget.cpp:1467 +#: core/kget.cpp:1466 #, kde-format msgctxt "abort the proposed action" msgid "Abort" msgstr "中止" -#: core/kget.cpp:1477 +#: core/kget.cpp:1476 #, kde-format msgid "

    All transfers have been finished.

    " msgstr "

    所有傳輸都已完成。

    " -#: core/kget.cpp:1478 +#: core/kget.cpp:1477 #, kde-format msgid "Downloads completed" msgstr "下載完成" @@ -1723,17 +1723,21 @@ msgid "Decrease Priority" msgstr "遞減優先權" -#: mainwindow.cpp:204 ui/contextmenu.cpp:116 -#, kde-format +#: mainwindow.cpp:204 +#, fuzzy, kde-format +#| msgid "Delete Group" +#| msgid_plural "Delete Groups" +msgctxt "@action" msgid "Delete Group" -msgid_plural "Delete Groups" -msgstr[0] "刪除群組" +msgstr "刪除群組" -#: mainwindow.cpp:210 ui/contextmenu.cpp:120 -#, kde-format +#: mainwindow.cpp:210 +#, fuzzy, kde-format +#| msgid "Rename Group..." +#| msgid_plural "Rename Groups..." +msgctxt "@action" msgid "Rename Group..." -msgid_plural "Rename Groups..." -msgstr[0] "重新命名群組..." +msgstr "重新命名群組..." #: mainwindow.cpp:215 #, kde-format @@ -2060,8 +2064,8 @@ msgid "Which files the chunk is located in" msgstr "此區塊是位於哪一個檔案" -#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154 #, kde-format @@ -2080,16 +2084,16 @@ msgid "Currently downloading:" msgstr "目前下載中:" -#. i18n: ectx: property (text), widget (QLabel, textLabel3) #. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: ectx: property (text), widget (QLabel, textLabel3) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163 #, kde-format msgid "Downloaded:" msgstr "已下載:" -#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #. i18n: ectx: property (text), widget (QLabel, label_6) +#. i18n: ectx: property (text), widget (QLabel, textLabel1_4) #: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131 #: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205 #, kde-format @@ -2944,8 +2948,8 @@ #. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch) #. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch) -#. i18n: ectx: label, entry (PathList), group (UserScripts) #. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines) +#. i18n: ectx: label, entry (PathList), group (UserScripts) #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13 #: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17 #: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13 @@ -3009,8 +3013,8 @@ msgid "New Script...." msgstr "新增文稿..." -#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #. i18n: ectx: property (text), widget (QPushButton, removeEngineBt) +#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton) #: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67 #: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62 #, kde-format @@ -3335,6 +3339,18 @@ msgid "Failed to write to the file." msgstr "寫入檔案失敗。" +#: ui/contextmenu.cpp:116 +#, kde-format +msgid "Delete Group" +msgid_plural "Delete Groups" +msgstr[0] "刪除群組" + +#: ui/contextmenu.cpp:120 +#, kde-format +msgid "Rename Group..." +msgid_plural "Rename Groups..." +msgstr[0] "重新命名群組..." + #: ui/droptarget.cpp:84 #, kde-format msgctxt "fix position for droptarget" @@ -3645,31 +3661,31 @@ msgstr "開啟檔案" #. i18n: ectx: Menu (file) -#: ui/kgetui.rc:4 +#: ui/kgetui.rc:5 #, kde-format msgid "&File" msgstr "檔案(&F)" #. i18n: ectx: Menu (Downloads) -#: ui/kgetui.rc:16 +#: ui/kgetui.rc:17 #, kde-format msgid "&Downloads" msgstr "下載(&D)" #. i18n: ectx: Menu (settings) -#: ui/kgetui.rc:33 +#: ui/kgetui.rc:34 #, kde-format msgid "&Settings" msgstr "設定(&S)" #. i18n: ectx: Menu (help) -#: ui/kgetui.rc:36 +#: ui/kgetui.rc:37 #, kde-format msgid "&Help" msgstr "說明(&H)" #. i18n: ectx: ToolBar (kget_toolbar) -#: ui/kgetui.rc:39 +#: ui/kgetui.rc:40 #, kde-format msgid "Main Toolbar" msgstr "主工具列" @@ -4047,8 +4063,8 @@ msgid "File size (in bytes):" msgstr "檔案大小(位元組)):" -#. i18n: ectx: property (text), widget (QLabel, label_2) #. i18n: ectx: property (text), widget (QLabel, label_8) +#. i18n: ectx: property (text), widget (QLabel, label_2) #: ui/metalinkcreator/filedlg.ui:149 ui/signaturedlg.ui:34 #, kde-format msgid "Verification:" @@ -4601,18 +4617,18 @@ msgid "Remaining Time:" msgstr "剩餘時間:" -#: ui/transfersettingsdialog.cpp:34 +#: ui/transfersettingsdialog.cpp:33 #, kde-format msgid "Transfer Settings for %1" msgstr "%1 的傳輸設定" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "" "Changing the destination did not work, the destination stays unmodified." msgstr "變更目的地沒有成功。目的地並未被改變。" -#: ui/transfersettingsdialog.cpp:168 +#: ui/transfersettingsdialog.cpp:167 #, kde-format msgid "Destination unmodified" msgstr "目的地未變更" diff -Nru kget-20.12.3/sounds/CMakeLists.txt kget-21.04.0/sounds/CMakeLists.txt --- kget-20.12.3/sounds/CMakeLists.txt 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/sounds/CMakeLists.txt 2021-04-14 15:24:35.000000000 +0000 @@ -1,6 +1,6 @@ install(FILES kget.notifyrc - DESTINATION ${KNOTIFYRC_INSTALL_DIR} + DESTINATION ${KDE_INSTALL_KNOTIFY5RCDIR} ) #install(FILES @@ -8,4 +8,4 @@ # KGet_Finished.ogg # KGet_Finished_All.ogg # KGet_Started.ogg -#DESTINATION ${SOUND_INSTALL_DIR}) +#DESTINATION ${KDE_INSTALL_SOUNDDIR}) diff -Nru kget-20.12.3/tests/filedeletertest.h kget-21.04.0/tests/filedeletertest.h --- kget-20.12.3/tests/filedeletertest.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/tests/filedeletertest.h 2021-04-14 15:24:35.000000000 +0000 @@ -27,7 +27,7 @@ { Q_OBJECT - signals: + Q_SIGNALS: void result(); }; @@ -35,7 +35,7 @@ { Q_OBJECT - private slots: + private Q_SLOTS: void fileDeleterTest(); }; diff -Nru kget-20.12.3/tests/metalinktest.h kget-21.04.0/tests/metalinktest.h --- kget-20.12.3/tests/metalinktest.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/tests/metalinktest.h 2021-04-14 15:24:35.000000000 +0000 @@ -26,7 +26,7 @@ { Q_OBJECT - private slots: + private Q_SLOTS: void testFilePath(); void testFilePath_data(); void testUrl(); diff -Nru kget-20.12.3/tests/schedulertest.cpp kget-21.04.0/tests/schedulertest.cpp --- kget-20.12.3/tests/schedulertest.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/tests/schedulertest.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -101,13 +101,13 @@ SettingsHelper helper(limit); Scheduler scheduler; - TestQueue *queue = new TestQueue(&scheduler); + auto *queue = new TestQueue(&scheduler); scheduler.addQueue(queue); //uses an own list instead of the iterators to make sure that the order stays the same QList jobs; for (int i = 0; i < status.size(); ++i) { - TestJob *job = new TestJob(&scheduler, queue); + auto *job = new TestJob(&scheduler, queue); job->setStatus(status[i]); queue->appendPub(job); jobs << job; @@ -142,12 +142,12 @@ SettingsHelper helper(limit); Scheduler scheduler; - TestQueue *queue = new TestQueue(&scheduler); + auto *queue = new TestQueue(&scheduler); scheduler.addQueue(queue); //uses an own list instead of the iterators to make sure that the order stays the same for (int i = 0; i < status.size(); ++i) { - TestJob *job = new TestJob(&scheduler, queue); + auto *job = new TestJob(&scheduler, queue); job->setStatus(status[i]); queue->appendPub(job); } @@ -181,12 +181,12 @@ SettingsHelper helper(limit); Scheduler scheduler; - TestQueue *queue = new TestQueue(&scheduler); + auto *queue = new TestQueue(&scheduler); scheduler.addQueue(queue); //uses an own list instead of the iterators to make sure that the order stays the same for (int i = 0; i < status.size(); ++i) { - TestJob *job = new TestJob(&scheduler, queue); + auto *job = new TestJob(&scheduler, queue); job->setStatus(status[i]); queue->appendPub(job); } @@ -220,13 +220,13 @@ SettingsHelper helper(limit); Scheduler scheduler; - TestQueue *queue = new TestQueue(&scheduler); + auto *queue = new TestQueue(&scheduler); scheduler.addQueue(queue); //uses an own list instead of the iterators to make sure that the order stays the same QList jobs; for (int i = 0; i < status.size(); ++i) { - TestJob *job = new TestJob(&scheduler, queue); + auto *job = new TestJob(&scheduler, queue); job->setStatus(status[i]); queue->appendPub(job); jobs << job; @@ -264,14 +264,14 @@ SettingsHelper helper(limit); Scheduler scheduler; - TestQueue *queue = new TestQueue(&scheduler); + auto *queue = new TestQueue(&scheduler); scheduler.addQueue(queue); scheduler.setIsSuspended(true); //uses an own list instead of the iterators to make sure that the order stays the same QList jobs; for (int i = 0; i < status.size(); ++i) { - TestJob *job = new TestJob(&scheduler, queue); + auto *job = new TestJob(&scheduler, queue); job->setStatus(status[i]); queue->appendPub(job); jobs << job; @@ -314,14 +314,14 @@ SettingsHelper helper(limit); Scheduler scheduler; - TestQueue *queue = new TestQueue(&scheduler); + auto *queue = new TestQueue(&scheduler); queue->setStatus(JobQueue::Stopped); scheduler.addQueue(queue); //uses an own list instead of the iterators to make sure that the order stays the same QList jobs; for (int i = 0; i < status.size(); ++i) { - TestJob *job = new TestJob(&scheduler, queue); + auto *job = new TestJob(&scheduler, queue); job->setStatus(status[i]); job->setPolicy(policy[i]); queue->appendPub(job); @@ -358,14 +358,14 @@ SettingsHelper helper(limit); Scheduler scheduler; - TestQueue *queue = new TestQueue(&scheduler); + auto *queue = new TestQueue(&scheduler); queue->setStatus(JobQueue::Stopped); scheduler.addQueue(queue); //uses an own list instead of the iterators to make sure that the order stays the same QList jobs; for (int i = 0; i < status.size(); ++i) { - TestJob *job = new TestJob(&scheduler, queue); + auto *job = new TestJob(&scheduler, queue); job->setStatus(status[i]); job->setPolicy(policy[i]); queue->appendPub(job); @@ -409,11 +409,11 @@ SettingsHelper helper(NO_LIMIT); Scheduler scheduler; - TestQueue *queue = new TestQueue(&scheduler); + auto *queue = new TestQueue(&scheduler); queue->setStatus(jobQueueRunning ? JobQueue::Running : JobQueue::Stopped); scheduler.addQueue(queue); - TestJob *job = new TestJob(&scheduler, queue); + auto *job = new TestJob(&scheduler, queue); job->setPolicy(policy); job->setError(QString(), QPixmap(), errorType); queue->appendPub(job); @@ -456,11 +456,11 @@ SettingsHelper helper(NO_LIMIT); Scheduler scheduler; - TestQueue *queue = new TestQueue(&scheduler); + auto *queue = new TestQueue(&scheduler); scheduler.addQueue(queue); scheduler.setHasNetworkConnection(false); - TestJob *job = new TestJob(&scheduler, queue); + auto *job = new TestJob(&scheduler, queue); job->setPolicy(policy); queue->appendPub(job); @@ -487,11 +487,11 @@ SettingsHelper helper(NO_LIMIT); Scheduler scheduler; - TestQueue *queue = new TestQueue(&scheduler); + auto *queue = new TestQueue(&scheduler); scheduler.addQueue(queue); scheduler.setHasNetworkConnection(true); - TestJob *job = new TestJob(&scheduler, queue); + auto *job = new TestJob(&scheduler, queue); job->setPolicy(policy); queue->appendPub(job); @@ -519,7 +519,7 @@ SettingsHelper helper(NO_LIMIT); Scheduler scheduler; - TestQueue *queue = new TestQueue(&scheduler); + auto *queue = new TestQueue(&scheduler); scheduler.addQueue(queue); QVERIFY(scheduler.shouldUpdate());//should be true by default diff -Nru kget-20.12.3/tests/schedulertest.h kget-21.04.0/tests/schedulertest.h --- kget-20.12.3/tests/schedulertest.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/tests/schedulertest.h 2021-04-14 15:24:35.000000000 +0000 @@ -52,14 +52,14 @@ public: TestJob(Scheduler *scheduler, JobQueue *parent); - virtual void start(); - virtual void stop(); - virtual int elapsedTime() const; - virtual int remainingTime() const; - virtual bool isStalled() const; - virtual bool isWorking() const; + void start() override; + void stop() override; + int elapsedTime() const override; + int remainingTime() const override; + bool isStalled() const override; + bool isWorking() const override; - signals: + Q_SIGNALS: void statusChanged(); }; @@ -79,7 +79,7 @@ { Q_OBJECT - private slots: + private Q_SLOTS: /** * Tests if the scheduler reacts correctly on appending jobs, i.e. * start/stop them diff -Nru kget-20.12.3/tests/testkget.h kget-21.04.0/tests/testkget.h --- kget-20.12.3/tests/testkget.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/tests/testkget.h 2021-04-14 15:24:35.000000000 +0000 @@ -21,7 +21,7 @@ public: TestKGet(); -private slots: +private Q_SLOTS: void simpleTest(); void transferGroupTest(); void transferGroupRepetitiveAddTest(); diff -Nru kget-20.12.3/tests/testtransfers.cpp kget-21.04.0/tests/testtransfers.cpp --- kget-20.12.3/tests/testtransfers.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/tests/testtransfers.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -611,7 +611,7 @@ QFAIL("One transfer does not have an source attribute."); return; } - Commands *transfer = new Commands(source, this); + auto *transfer = new Commands(source, this); transfer->setCommands(Commands::parseCommands(elem, this)); m_commands.append(transfer); } @@ -639,7 +639,7 @@ if (reply.value().size()) { qCDebug(KGET_DEBUG) << "TestTransfers::createTransfer -> transfer = " << reply.value(); - OrgKdeKgetTransferInterface *transfer = new OrgKdeKgetTransferInterface("org.kde.kget", reply.value().first(), QDBusConnection::sessionBus(), this); + auto *transfer = new OrgKdeKgetTransferInterface("org.kde.kget", reply.value().first(), QDBusConnection::sessionBus(), this); command->associateTransfer(transfer); command->executeCommands(); diff -Nru kget-20.12.3/tests/verifiertest.h kget-21.04.0/tests/verifiertest.h --- kget-20.12.3/tests/verifiertest.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/tests/verifiertest.h 2021-04-14 15:24:35.000000000 +0000 @@ -36,7 +36,7 @@ public: explicit VerfierTest(QObject *parent = nullptr); - private slots: + private Q_SLOTS: void testChecksum(); void testChecksum_data(); void testPartialChecksums(); diff -Nru kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/btadvanceddetailswidget.cpp kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/btadvanceddetailswidget.cpp --- kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/btadvanceddetailswidget.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/btadvanceddetailswidget.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -53,8 +53,8 @@ { setWindowTitle(i18n("Advanced Details for %1", m_transfer->source().fileName())); resize(500, 400); - QGridLayout *layout = new QGridLayout(); - KTitleWidget *titleWidget = new KTitleWidget(this); + auto *layout = new QGridLayout(); + auto *titleWidget = new KTitleWidget(this); titleWidget->setText(i18n("Advanced Details for %1", m_transfer->source().fileName())); titleWidget->setPixmap(QIcon::fromTheme("dialog-information")); layout->addWidget(titleWidget); @@ -83,8 +83,8 @@ Q_UNUSED(event) if (tc) - tc->setMonitor(0); - emit aboutToClose(); + tc->setMonitor(nullptr); + Q_EMIT aboutToClose(); deleteLater(); } diff -Nru kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/btadvanceddetailswidget.h kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/btadvanceddetailswidget.h --- kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/btadvanceddetailswidget.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/btadvanceddetailswidget.h 2021-04-14 15:24:35.000000000 +0000 @@ -41,10 +41,10 @@ void init(); kt::Monitor* torrentMonitor() const; - public slots: + public Q_SLOTS: void slotTransferChanged(TransferHandler * transfer, TransferHandler::ChangesFlags flags); - signals: + Q_SIGNALS: void aboutToClose(); diff -Nru kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/chunkdownloadmodel.cpp kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/chunkdownloadmodel.cpp --- kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/chunkdownloadmodel.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/chunkdownloadmodel.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -177,7 +177,7 @@ resort = true; if (modified && !resort) - emit dataChanged(index(idx,1),index(idx,3)); + Q_EMIT dataChanged(index(idx,1),index(idx,3)); idx++; } @@ -289,8 +289,8 @@ { sort_column = col; sort_order = order; - emit layoutAboutToBeChanged(); + Q_EMIT layoutAboutToBeChanged(); std::stable_sort(items.begin(),items.end(),ChunkDownloadModelItemCmp(col, order)); - emit layoutChanged(); + Q_EMIT layoutChanged(); } } diff -Nru kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/chunkdownloadmodel.h kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/chunkdownloadmodel.h --- kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/chunkdownloadmodel.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/chunkdownloadmodel.h 2021-04-14 15:24:35.000000000 +0000 @@ -41,7 +41,7 @@ Q_OBJECT public: ChunkDownloadModel(QObject* parent); - virtual ~ChunkDownloadModel(); + ~ChunkDownloadModel() override; /// A peer has been added void downloadAdded(bt::ChunkDownloadInterface* cd); @@ -59,15 +59,15 @@ void clear(); - virtual int rowCount(const QModelIndex & parent) const override; - virtual int columnCount(const QModelIndex & parent) const override; - virtual QVariant headerData(int section, Qt::Orientation orientation,int role) const override; - virtual QVariant data(const QModelIndex & index,int role) const override; - virtual bool removeRows(int row,int count,const QModelIndex & parent) override; - virtual bool insertRows(int row,int count,const QModelIndex & parent) override; - virtual QModelIndex index(int row,int column,const QModelIndex & parent = QModelIndex()) const override; + int rowCount(const QModelIndex & parent) const override; + int columnCount(const QModelIndex & parent) const override; + QVariant headerData(int section, Qt::Orientation orientation,int role) const override; + QVariant data(const QModelIndex & index,int role) const override; + bool removeRows(int row,int count,const QModelIndex & parent) override; + bool insertRows(int row,int count,const QModelIndex & parent) override; + QModelIndex index(int row,int column,const QModelIndex & parent = QModelIndex()) const override; - public slots: + public Q_SLOTS: void sort(int col, Qt::SortOrder order) override; public: diff -Nru kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.h kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.h --- kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.h 2021-04-14 15:24:35.000000000 +0000 @@ -45,7 +45,7 @@ Q_OBJECT public: ChunkDownloadView(QWidget* parent); - virtual ~ChunkDownloadView(); + ~ChunkDownloadView() override; /// A peer has been added void downloadAdded(bt::ChunkDownloadInterface* cd); diff -Nru kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/fileview.cpp kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/fileview.cpp --- kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/fileview.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/fileview.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -48,7 +48,7 @@ namespace kt { - FileView::FileView(QWidget *parent) : QTreeView(parent),curr_tc(0),model(0) + FileView::FileView(QWidget *parent) : QTreeView(parent),curr_tc(nullptr),model(nullptr) { setContextMenuPolicy(Qt::CustomContextMenu); setRootIsDecorated(false); @@ -102,7 +102,7 @@ if (curr_tc) expanded_state_map[curr_tc] = model->saveExpandedState(proxy_model,this); } - proxy_model->setSourceModel(0); + proxy_model->setSourceModel(nullptr); delete model; model = nullptr; curr_tc = tc; @@ -128,7 +128,7 @@ } else { - proxy_model->setSourceModel(0); + proxy_model->setSourceModel(nullptr); model = nullptr; } } @@ -415,7 +415,7 @@ saveState(cfg); expanded_state_map[curr_tc] = model->saveExpandedState(proxy_model,this); - proxy_model->setSourceModel(0); + proxy_model->setSourceModel(nullptr); delete model; model = nullptr; diff -Nru kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/fileview.h kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/fileview.h --- kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/fileview.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/fileview.h 2021-04-14 15:24:35.000000000 +0000 @@ -46,7 +46,7 @@ Q_OBJECT public: FileView(QWidget *parent); - virtual ~FileView(); + ~FileView() override; void changeTC(bt::TorrentInterface* tc,KSharedConfigPtr cfg); void setShowListOfFiles(bool on,KSharedConfigPtr cfg); @@ -56,10 +56,10 @@ void filePercentageChanged(bt::TorrentFileInterface* file,float percentage); void filePreviewChanged(bt::TorrentFileInterface* file,bool preview); - public slots: + public Q_SLOTS: void onTorrentRemoved(bt::TorrentInterface* tc); - private slots: + private Q_SLOTS: void showContextMenu(const QPoint & p); void onDoubleClicked(const QModelIndex & index); void onMissingFileMarkedDND(bt::TorrentInterface* tc); @@ -68,10 +68,10 @@ void changePriority(bt::Priority newpriority); void expandCollapseTree(const QModelIndex& idx, bool expand); void expandCollapseSelected(bool expand); - virtual bool viewportEvent(QEvent *event) override; + bool viewportEvent(QEvent *event) override; virtual void dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight); - private slots: + private Q_SLOTS: void open(); void downloadFirst(); void downloadLast(); diff -Nru kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/iwfilelistmodel.cpp kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/iwfilelistmodel.cpp --- kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/iwfilelistmodel.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/iwfilelistmodel.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -231,7 +231,7 @@ return false; bt::TorrentFileInterface & file = tc->getTorrentFile(r);; - Priority prio = (bt::Priority)value.toInt(); + auto prio = (bt::Priority)value.toInt(); Priority old = file.getPriority(); if (prio != old) @@ -247,14 +247,14 @@ { Q_UNUSED(percentage) QModelIndex idx = createIndex(file->getIndex(),4,file); - emit dataChanged(idx,idx); + Q_EMIT dataChanged(idx,idx); } void IWFileListModel::filePreviewChanged(bt::TorrentFileInterface* file,bool preview) { Q_UNUSED(preview) QModelIndex idx = createIndex(file->getIndex(),3,file); - emit dataChanged(idx,idx); + Q_EMIT dataChanged(idx,idx); } void IWFileListModel::update() diff -Nru kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/iwfilelistmodel.h kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/iwfilelistmodel.h --- kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/iwfilelistmodel.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/iwfilelistmodel.h 2021-04-14 15:24:35.000000000 +0000 @@ -37,12 +37,12 @@ Q_OBJECT public: IWFileListModel(bt::TorrentInterface* tc,QObject* parent); - virtual ~IWFileListModel(); + ~IWFileListModel() override; - virtual int columnCount(const QModelIndex & parent) const override; - virtual QVariant headerData(int section, Qt::Orientation orientation,int role) const override; - virtual QVariant data(const QModelIndex & index, int role) const override; - virtual bool setData(const QModelIndex & index, const QVariant & value, int role) override; + int columnCount(const QModelIndex & parent) const override; + QVariant headerData(int section, Qt::Orientation orientation,int role) const override; + QVariant data(const QModelIndex & index, int role) const override; + bool setData(const QModelIndex & index, const QVariant & value, int role) override; void update() override; void filePercentageChanged(bt::TorrentFileInterface* file,float percentage) override; diff -Nru kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/iwfiletreemodel.cpp kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/iwfiletreemodel.cpp --- kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/iwfiletreemodel.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/iwfiletreemodel.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -252,7 +252,7 @@ else { bt::TorrentFileInterface* file = n->file; - Priority prio = (bt::Priority)value.toInt(); + auto prio = (bt::Priority)value.toInt(); Priority old = file->getPriority(); if (prio != old) @@ -286,7 +286,7 @@ if (n->file && n->file == file) { QModelIndex i = createIndex(idx.row(),col,n); - emit dataChanged(i,i); + Q_EMIT dataChanged(i,i); if(col == 4) { // update percentages along the tree @@ -296,13 +296,13 @@ d -= tc->onlySeedChunksBitSet(); n->updatePercentage(d); - // emit necessary signals + // Q_EMIT necessary signals QModelIndex parent = idx.parent(); while (parent.isValid()) { Node* nd = (Node*)parent.internalPointer(); i = createIndex(parent.row(),4,nd); - emit dataChanged(i,i); + Q_EMIT dataChanged(i,i); parent = parent.parent(); } } diff -Nru kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/iwfiletreemodel.h kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/iwfiletreemodel.h --- kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/iwfiletreemodel.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/iwfiletreemodel.h 2021-04-14 15:24:35.000000000 +0000 @@ -37,13 +37,13 @@ Q_OBJECT public: IWFileTreeModel(bt::TorrentInterface* tc,QObject* parent); - virtual ~IWFileTreeModel(); + ~IWFileTreeModel() override; - virtual int columnCount(const QModelIndex & parent) const override; - virtual QVariant headerData(int section, Qt::Orientation orientation,int role) const override; - virtual QVariant data(const QModelIndex & index, int role) const override; - virtual bool setData(const QModelIndex & index, const QVariant & value, int role) override; - virtual void update() override; + int columnCount(const QModelIndex & parent) const override; + QVariant headerData(int section, Qt::Orientation orientation,int role) const override; + QVariant data(const QModelIndex & index, int role) const override; + bool setData(const QModelIndex & index, const QVariant & value, int role) override; + void update() override; void filePercentageChanged(bt::TorrentFileInterface* file,float percentage) override; void filePreviewChanged(bt::TorrentFileInterface* file,bool preview) override; diff -Nru kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/monitor.cpp kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/monitor.cpp --- kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/monitor.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/monitor.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -43,7 +43,7 @@ Monitor::~Monitor() { if (tc) - tc->setMonitor(0); + tc->setMonitor(nullptr); } diff -Nru kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/monitor.h kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/monitor.h --- kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/monitor.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/monitor.h 2021-04-14 15:24:35.000000000 +0000 @@ -44,16 +44,16 @@ FileView* fv; public: Monitor(bt::TorrentInterface* tc,PeerView* pv ,ChunkDownloadView* cdv,FileView* fv); - virtual ~Monitor(); + ~Monitor() override; - virtual void downloadRemoved(bt::ChunkDownloadInterface* cd) override; - virtual void downloadStarted(bt::ChunkDownloadInterface* cd) override; - virtual void peerAdded(bt::PeerInterface* peer) override; - virtual void peerRemoved(bt::PeerInterface* peer) override; - virtual void stopped() override; - virtual void destroyed() override; - virtual void filePercentageChanged(bt::TorrentFileInterface* file,float percentage) override; - virtual void filePreviewChanged(bt::TorrentFileInterface* file,bool preview) override; + void downloadRemoved(bt::ChunkDownloadInterface* cd) override; + void downloadStarted(bt::ChunkDownloadInterface* cd) override; + void peerAdded(bt::PeerInterface* peer) override; + void peerRemoved(bt::PeerInterface* peer) override; + void stopped() override; + void destroyed() override; + void filePercentageChanged(bt::TorrentFileInterface* file,float percentage) override; + void filePreviewChanged(bt::TorrentFileInterface* file,bool preview) override; }; } diff -Nru kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/peerview.h kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/peerview.h --- kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/peerview.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/peerview.h 2021-04-14 15:24:35.000000000 +0000 @@ -40,7 +40,7 @@ Q_OBJECT public: PeerView(QWidget* parent); - virtual ~PeerView(); + ~PeerView() override; /// A peer has been added void peerAdded(bt::PeerInterface* peer); @@ -57,7 +57,7 @@ void saveState(KSharedConfigPtr cfg); void loadState(KSharedConfigPtr cfg); - private slots: + private Q_SLOTS: void showContextMenu(const QPoint& pos); void banPeer(); void kickPeer(); diff -Nru kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/peerviewmodel.cpp kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/peerviewmodel.cpp --- kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/peerviewmodel.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/peerviewmodel.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -268,7 +268,7 @@ resort = true; if (modified && !resort) - emit dataChanged(index(idx,3),index(idx,15)); + Q_EMIT dataChanged(index(idx,3),index(idx,15)); idx++; } @@ -384,7 +384,7 @@ bt::PeerInterface* PeerViewModel::indexToPeer(const QModelIndex & index) { if (!index.isValid() || index.row() >= items.count() || index.row() < 0) - return 0; + return nullptr; else return ((Item*)index.internalPointer())->peer; } @@ -411,8 +411,8 @@ { sort_column = col; sort_order = order; - emit layoutAboutToBeChanged(); + Q_EMIT layoutAboutToBeChanged(); std::stable_sort(items.begin(),items.end(),PeerViewModelItemCmp(col, order)); - emit layoutChanged(); + Q_EMIT layoutChanged(); } } diff -Nru kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/peerviewmodel.h kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/peerviewmodel.h --- kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/peerviewmodel.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/peerviewmodel.h 2021-04-14 15:24:35.000000000 +0000 @@ -39,7 +39,7 @@ Q_OBJECT public: PeerViewModel(QObject* parent); - virtual ~PeerViewModel(); + ~PeerViewModel() override; /// A peer has been added void peerAdded(bt::PeerInterface* peer); @@ -54,17 +54,17 @@ void clear(); - virtual int rowCount(const QModelIndex & parent) const override; - virtual int columnCount(const QModelIndex & parent) const override; - virtual QVariant headerData(int section, Qt::Orientation orientation,int role) const override; - virtual QVariant data(const QModelIndex & index,int role) const override; - virtual bool removeRows(int row,int count,const QModelIndex & parent) override; - virtual bool insertRows(int row,int count,const QModelIndex & parent) override; - virtual QModelIndex index(int row,int column,const QModelIndex & parent = QModelIndex()) const override; + int rowCount(const QModelIndex & parent) const override; + int columnCount(const QModelIndex & parent) const override; + QVariant headerData(int section, Qt::Orientation orientation,int role) const override; + QVariant data(const QModelIndex & index,int role) const override; + bool removeRows(int row,int count,const QModelIndex & parent) override; + bool insertRows(int row,int count,const QModelIndex & parent) override; + QModelIndex index(int row,int column,const QModelIndex & parent = QModelIndex()) const override; bt::PeerInterface* indexToPeer(const QModelIndex & idx); - public slots: + public Q_SLOTS: void sort(int col, Qt::SortOrder order) override; diff -Nru kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/torrentfilelistmodel.cpp kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/torrentfilelistmodel.cpp --- kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/torrentfilelistmodel.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/torrentfilelistmodel.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -165,7 +165,7 @@ if (role == Qt::CheckStateRole) { - Qt::CheckState newState = static_cast(value.toInt()); + auto newState = static_cast(value.toInt()); bt::TorrentFileInterface & file = tc->getTorrentFile(index.row()); if (newState == Qt::Checked) { @@ -264,11 +264,11 @@ bt::TorrentFileInterface* TorrentFileListModel::indexToFile(const QModelIndex & idx) { if (!idx.isValid()) - return 0; + return nullptr; int r = idx.row(); if (r < 0 || r >= rowCount(QModelIndex())) - return 0; + return nullptr; else return &tc->getTorrentFile(r); } diff -Nru kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/torrentfilelistmodel.h kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/torrentfilelistmodel.h --- kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/torrentfilelistmodel.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/torrentfilelistmodel.h 2021-04-14 15:24:35.000000000 +0000 @@ -35,22 +35,22 @@ Q_OBJECT public: TorrentFileListModel(bt::TorrentInterface* tc,DeselectMode mode,QObject* parent); - virtual ~TorrentFileListModel(); + ~TorrentFileListModel() override; - virtual int rowCount(const QModelIndex & parent) const override; - virtual int columnCount(const QModelIndex & parent) const override; - virtual QVariant headerData(int section, Qt::Orientation orientation,int role) const override; - virtual QVariant data(const QModelIndex & index, int role) const override; - virtual QModelIndex parent(const QModelIndex & index) const override; - virtual QModelIndex index(int row,int column,const QModelIndex & parent) const override; - virtual bool setData(const QModelIndex & index, const QVariant & value, int role) override; - virtual void checkAll() override; - virtual void uncheckAll() override; - virtual void invertCheck() override; - virtual bt::Uint64 bytesToDownload() override; - virtual bt::TorrentFileInterface* indexToFile(const QModelIndex & idx) override; - virtual QString dirPath(const QModelIndex & idx) override; - virtual void changePriority(const QModelIndexList & indexes,bt::Priority newpriority) override; + int rowCount(const QModelIndex & parent) const override; + int columnCount(const QModelIndex & parent) const override; + QVariant headerData(int section, Qt::Orientation orientation,int role) const override; + QVariant data(const QModelIndex & index, int role) const override; + QModelIndex parent(const QModelIndex & index) const override; + QModelIndex index(int row,int column,const QModelIndex & parent) const override; + bool setData(const QModelIndex & index, const QVariant & value, int role) override; + void checkAll() override; + void uncheckAll() override; + void invertCheck() override; + bt::Uint64 bytesToDownload() override; + bt::TorrentFileInterface* indexToFile(const QModelIndex & idx) override; + QString dirPath(const QModelIndex & idx) override; + void changePriority(const QModelIndexList & indexes,bt::Priority newpriority) override; private: void invertCheck(const QModelIndex & idx); diff -Nru kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/torrentfilemodel.h kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/torrentfilemodel.h --- kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/torrentfilemodel.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/torrentfilemodel.h 2021-04-14 15:24:35.000000000 +0000 @@ -46,7 +46,7 @@ KEEP_FILES,DELETE_FILES }; TorrentFileModel(bt::TorrentInterface* tc,DeselectMode mode,QObject* parent); - virtual ~TorrentFileModel(); + ~TorrentFileModel() override; /** @@ -128,11 +128,11 @@ /// Are the file names editable bool fileNamesEditable() const {return file_names_editable;} - virtual Qt::ItemFlags flags(const QModelIndex & index) const override; + Qt::ItemFlags flags(const QModelIndex & index) const override; virtual void filePercentageChanged(bt::TorrentFileInterface* file,float percentage); virtual void filePreviewChanged(bt::TorrentFileInterface* file,bool preview); -signals: +Q_SIGNALS: /** * Emitted whenever one or more items changes check state */ diff -Nru kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/torrentfiletreemodel.cpp kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/torrentfiletreemodel.cpp --- kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/torrentfiletreemodel.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/torrentfiletreemodel.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -280,7 +280,7 @@ if (file) return; - BDictNode* dict = dynamic_cast(n); + auto* dict = dynamic_cast(n); if (!dict) return; @@ -673,11 +673,11 @@ bt::TorrentFileInterface* TorrentFileTreeModel::indexToFile(const QModelIndex & idx) { if (!idx.isValid()) - return 0; + return nullptr; Node* n = (Node*)idx.internalPointer(); if (!n) - return 0; + return nullptr; return n->file; } diff -Nru kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/torrentfiletreemodel.h kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/torrentfiletreemodel.h --- kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/torrentfiletreemodel.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/torrentfiletreemodel.h 2021-04-14 15:24:35.000000000 +0000 @@ -74,25 +74,25 @@ }; public: TorrentFileTreeModel(bt::TorrentInterface* tc,DeselectMode mode,QObject* parent); - virtual ~TorrentFileTreeModel(); + ~TorrentFileTreeModel() override; - virtual int rowCount(const QModelIndex & parent) const override; - virtual int columnCount(const QModelIndex & parent) const override; - virtual QVariant headerData(int section, Qt::Orientation orientation,int role) const override; - virtual QVariant data(const QModelIndex & index, int role) const override; - virtual QModelIndex parent(const QModelIndex & index) const override; - virtual QModelIndex index(int row,int column,const QModelIndex & parent) const override; - virtual bool setData(const QModelIndex & index, const QVariant & value, int role) override; - virtual void checkAll() override; - virtual void uncheckAll() override; - virtual void invertCheck() override; - virtual bt::Uint64 bytesToDownload() override; - virtual QByteArray saveExpandedState(QSortFilterProxyModel* pm,QTreeView* tv) override; - virtual void loadExpandedState(QSortFilterProxyModel* pm,QTreeView* tv,const QByteArray & state) override; - virtual bt::TorrentFileInterface* indexToFile(const QModelIndex & idx) override; - virtual QString dirPath(const QModelIndex & idx) override; - virtual void changePriority(const QModelIndexList & indexes,bt::Priority newpriority) override; - virtual void onCodecChange() override; + int rowCount(const QModelIndex & parent) const override; + int columnCount(const QModelIndex & parent) const override; + QVariant headerData(int section, Qt::Orientation orientation,int role) const override; + QVariant data(const QModelIndex & index, int role) const override; + QModelIndex parent(const QModelIndex & index) const override; + QModelIndex index(int row,int column,const QModelIndex & parent) const override; + bool setData(const QModelIndex & index, const QVariant & value, int role) override; + void checkAll() override; + void uncheckAll() override; + void invertCheck() override; + bt::Uint64 bytesToDownload() override; + QByteArray saveExpandedState(QSortFilterProxyModel* pm,QTreeView* tv) override; + void loadExpandedState(QSortFilterProxyModel* pm,QTreeView* tv,const QByteArray & state) override; + bt::TorrentFileInterface* indexToFile(const QModelIndex & idx) override; + QString dirPath(const QModelIndex & idx) override; + void changePriority(const QModelIndexList & indexes,bt::Priority newpriority) override; + void onCodecChange() override; private: void constructTree(); void invertCheck(const QModelIndex & idx); diff -Nru kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/trackermodel.cpp kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/trackermodel.cpp --- kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/trackermodel.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/trackermodel.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -69,7 +69,7 @@ foreach (Item* t,trackers) { if (t->update()) - emit dataChanged(index(idx,1),index(idx,5)); + Q_EMIT dataChanged(index(idx,1),index(idx,5)); idx++; } @@ -229,7 +229,7 @@ bt::TrackerInterface* TrackerModel::tracker(const QModelIndex & index) { if (!tc || !index.isValid() || index.row() < 0 || index.row() >= trackers.count()) - return 0; + return nullptr; return ((Item*)index.internalPointer())->trk; } diff -Nru kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/trackermodel.h kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/trackermodel.h --- kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/trackermodel.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/trackermodel.h 2021-04-14 15:24:35.000000000 +0000 @@ -43,20 +43,20 @@ Q_OBJECT public: TrackerModel(QObject* parent); - virtual ~TrackerModel(); + ~TrackerModel() override; void changeTC(bt::TorrentInterface* tc); void update(); - virtual int rowCount(const QModelIndex &parent) const override; - virtual int columnCount(const QModelIndex &parent) const override; - virtual QVariant data(const QModelIndex &index, int role) const override; - virtual bool setData(const QModelIndex & index,const QVariant & value,int role) override; - virtual QVariant headerData(int section, Qt::Orientation orientation,int role) const override; - virtual bool insertRows(int row,int count,const QModelIndex & parent) override; - virtual bool removeRows(int row,int count,const QModelIndex & parent) override; - virtual Qt::ItemFlags flags(const QModelIndex & index) const override; - virtual QModelIndex index(int row,int column,const QModelIndex & parent = QModelIndex()) const override; + int rowCount(const QModelIndex &parent) const override; + int columnCount(const QModelIndex &parent) const override; + QVariant data(const QModelIndex &index, int role) const override; + bool setData(const QModelIndex & index,const QVariant & value,int role) override; + QVariant headerData(int section, Qt::Orientation orientation,int role) const override; + bool insertRows(int row,int count,const QModelIndex & parent) override; + bool removeRows(int row,int count,const QModelIndex & parent) override; + Qt::ItemFlags flags(const QModelIndex & index) const override; + QModelIndex index(int row,int column,const QModelIndex & parent = QModelIndex()) const override; /// Get a tracker url given a model index QUrl trackerUrl(const QModelIndex & idx); diff -Nru kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/trackerview.h kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/trackerview.h --- kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/trackerview.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/trackerview.h 2021-04-14 15:24:35.000000000 +0000 @@ -42,14 +42,14 @@ Q_OBJECT public: TrackerView(QWidget *parent); - virtual ~TrackerView(); + ~TrackerView() override; void update(); void changeTC(bt::TorrentInterface* ti); void saveState(KSharedConfigPtr cfg); void loadState(KSharedConfigPtr cfg); - public slots: + public Q_SLOTS: virtual void updateClicked(); virtual void restoreClicked(); virtual void changeClicked(); diff -Nru kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/webseedsmodel.h kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/webseedsmodel.h --- kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/webseedsmodel.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/webseedsmodel.h 2021-04-14 15:24:35.000000000 +0000 @@ -41,7 +41,7 @@ public: WebSeedsModel(QObject* parent); - virtual ~WebSeedsModel(); + ~WebSeedsModel() override; /** @@ -55,10 +55,10 @@ */ bool update(); - virtual int rowCount(const QModelIndex & parent) const override; - virtual int columnCount(const QModelIndex & parent) const override; - virtual QVariant headerData(int section, Qt::Orientation orientation,int role) const override; - virtual QVariant data(const QModelIndex & index, int role) const override; + int rowCount(const QModelIndex & parent) const override; + int columnCount(const QModelIndex & parent) const override; + QVariant headerData(int section, Qt::Orientation orientation,int role) const override; + QVariant data(const QModelIndex & index, int role) const override; private: struct Item diff -Nru kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/webseedstab.cpp kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/webseedstab.cpp --- kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/webseedstab.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/webseedstab.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -85,7 +85,7 @@ return; QUrl url(m_webseed->text()); - if (curr_tc != 0 && url.isValid() && url.scheme() == "http") + if (curr_tc != nullptr && url.isValid() && url.scheme() == "http") { if (curr_tc->addWebSeed(url)) { diff -Nru kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/webseedstab.h kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/webseedstab.h --- kget-20.12.3/transfer-plugins/bittorrent/advanceddetails/webseedstab.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/bittorrent/advanceddetails/webseedstab.h 2021-04-14 15:24:35.000000000 +0000 @@ -45,7 +45,7 @@ Q_OBJECT public: WebSeedsTab(QWidget* parent); - virtual ~WebSeedsTab(); + ~WebSeedsTab() override; /** * Switch to a different torrent. @@ -59,7 +59,7 @@ void saveState(KSharedConfigPtr cfg); void loadState(KSharedConfigPtr cfg); - private slots: + private Q_SLOTS: void addWebSeed(); void removeWebSeed(); void onWebSeedTextChanged(const QString & ws); diff -Nru kget-20.12.3/transfer-plugins/bittorrent/btcache.h kget-21.04.0/transfer-plugins/bittorrent/btcache.h --- kget-20.12.3/transfer-plugins/bittorrent/btcache.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/bittorrent/btcache.h 2021-04-14 15:24:35.000000000 +0000 @@ -147,7 +147,7 @@ * */ virtual Uint64 diskUsage() {return 0;};//We always use 0 Bytes on HDD, cause we don't write to HDD - signals: + Q_SIGNALS: void dataArrived(const KIO::fileoffset_t &offset, const QByteArray &data); private: @@ -163,7 +163,7 @@ virtual Cache* create(Torrent & tor,const QString & tmpdir,const QString & datadir); - signals: + Q_SIGNALS: void cacheAdded(BTCache* cache); }; diff -Nru kget-20.12.3/transfer-plugins/bittorrent/btchunkselector.h kget-21.04.0/transfer-plugins/bittorrent/btchunkselector.h --- kget-20.12.3/transfer-plugins/bittorrent/btchunkselector.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/bittorrent/btchunkselector.h 2021-04-14 15:24:35.000000000 +0000 @@ -56,7 +56,7 @@ bt::ChunkSelectorInterface* createChunkSelector(bt::ChunkManager & cman, bt::Downloader & downer, bt::PeerManager & pman); - signals: + Q_SIGNALS: void selectorAdded(BTChunkSelector *selector); }; diff -Nru kget-20.12.3/transfer-plugins/bittorrent/btdatasource.h kget-21.04.0/transfer-plugins/bittorrent/btdatasource.h --- kget-20.12.3/transfer-plugins/bittorrent/btdatasource.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/bittorrent/btdatasource.h 2021-04-14 15:24:35.000000000 +0000 @@ -32,14 +32,14 @@ Q_OBJECT public: BTDataSource(const QUrl &srcUrl, QObject *parent); - ~BTDataSource(); + ~BTDataSource() override; void start() override; void stop() override; void addSegments(const QPair &segmentSize, const QPair &segmentRange) override; void getData(const KIO::fileoffset_t &off, const QByteArray &dataArray); - private slots: + private Q_SLOTS: void init(const QUrl &torrentSource, const QByteArray &data); void cacheAdded(BTCache *cache); void selectorAdded(BTChunkSelector *selector); diff -Nru kget-20.12.3/transfer-plugins/bittorrent/btdetailswidget.h kget-21.04.0/transfer-plugins/bittorrent/btdetailswidget.h --- kget-20.12.3/transfer-plugins/bittorrent/btdetailswidget.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/bittorrent/btdetailswidget.h 2021-04-14 15:24:35.000000000 +0000 @@ -26,13 +26,13 @@ Q_OBJECT public: BTDetailsWidget(BTTransferHandler * transfer); - ~BTDetailsWidget(); + ~BTDetailsWidget() override; - public slots: + public Q_SLOTS: void slotTransferChanged(TransferHandler * transfer, TransferHandler::ChangesFlags flags); protected: - virtual void showEvent(QShowEvent * event) override; + void showEvent(QShowEvent * event) override; private: BTTransferHandler * m_transfer; diff -Nru kget-20.12.3/transfer-plugins/bittorrent/btsettingswidget.h kget-21.04.0/transfer-plugins/bittorrent/btsettingswidget.h --- kget-20.12.3/transfer-plugins/bittorrent/btsettingswidget.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/bittorrent/btsettingswidget.h 2021-04-14 15:24:35.000000000 +0000 @@ -21,10 +21,10 @@ public: BTSettingsWidget(QWidget * parent = nullptr, const QVariantList &args = QVariantList()); - public slots: - virtual void load() override; - virtual void save() override; - virtual void defaults() override; + public Q_SLOTS: + void load() override; + void save() override; + void defaults() override; }; #endif diff -Nru kget-20.12.3/transfer-plugins/bittorrent/bttransfer.cpp kget-21.04.0/transfer-plugins/bittorrent/bttransfer.cpp --- kget-20.12.3/transfer-plugins/bittorrent/bttransfer.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/bittorrent/bttransfer.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -135,7 +135,7 @@ qCDebug(KGET_DEBUG) << m_dest.path(); QString tmpDirName = QStandardPaths::writableLocation(QStandardPaths::AppDataLocation) + QStringLiteral("/tmp/"); m_tmpTorrentFile = tmpDirName + m_dest.fileName(); - Download *download = new Download(m_source, QUrl::fromLocalFile(m_tmpTorrentFile)); + auto *download = new Download(m_source, QUrl::fromLocalFile(m_tmpTorrentFile)); setStatus(Job::Stopped, i18n("Downloading Torrent File...."), SmallIcon("document-save")); setTransferChange(Tc_Status, true); @@ -748,7 +748,7 @@ { if (!torrent) { - return 0; + return nullptr; } //multiple files diff -Nru kget-20.12.3/transfer-plugins/bittorrent/bttransferfactory.cpp kget-21.04.0/transfer-plugins/bittorrent/bttransferfactory.cpp --- kget-20.12.3/transfer-plugins/bittorrent/bttransferfactory.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/bittorrent/bttransferfactory.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -10,7 +10,7 @@ #include "bttransferfactory.h" -// header inclusion order is crucial because of signal emit clashes +// header inclusion order is crucial because of signal Q_EMIT clashes #include "bttransfer.h" #include "btdatasource.h" #include "bttransferhandler.h" @@ -49,17 +49,17 @@ { return new BTTransfer(parent, this, scheduler, srcUrl, destUrl, e); } - return 0; + return nullptr; } TransferHandler * BTTransferFactory::createTransferHandler(Transfer * transfer, Scheduler * scheduler) { - BTTransfer * bttransfer = qobject_cast(transfer); + auto * bttransfer = qobject_cast(transfer); if (!bttransfer) { qCCritical(KGET_DEBUG) << "WARNING! passing a non-BTTransfer pointer!!"; - return 0; + return nullptr; } return new BTTransferHandler(bttransfer, scheduler); @@ -67,25 +67,25 @@ QWidget * BTTransferFactory::createDetailsWidget( TransferHandler * transfer ) { - BTTransferHandler * bttransfer = static_cast(transfer); + auto * bttransfer = static_cast(transfer); return new BTDetailsWidget(bttransfer); } const QList BTTransferFactory::actions(TransferHandler *handler) { - BTTransferHandler * bttransfer = static_cast(handler); + auto * bttransfer = static_cast(handler); QList actions; if (bttransfer && bttransfer->torrentControl()) { - QAction *openAdvancedDetailsAction = new QAction(QIcon::fromTheme("document-open"), i18n("&Advanced Details"), this); + auto *openAdvancedDetailsAction = new QAction(QIcon::fromTheme("document-open"), i18n("&Advanced Details"), this); connect(openAdvancedDetailsAction, &QAction::triggered, bttransfer, &BTTransferHandler::createAdvancedDetails); actions.append(openAdvancedDetailsAction); - QAction *openScanDlg = new QAction(QIcon::fromTheme("document-open"), i18n("&Scan Files"), this); + auto *openScanDlg = new QAction(QIcon::fromTheme("document-open"), i18n("&Scan Files"), this); connect(openScanDlg, &QAction::triggered, bttransfer, &BTTransferHandler::createScanDlg); @@ -105,7 +105,7 @@ Q_UNUSED(parent) /*if (srcUrl.fileName().endsWith(".torrent")) return new BTDataSource();*/ - return 0; + return nullptr; } bool BTTransferFactory::isSupported(const QUrl &url) const diff -Nru kget-20.12.3/transfer-plugins/bittorrent/bttransferfactory.h kget-21.04.0/transfer-plugins/bittorrent/bttransferfactory.h --- kget-20.12.3/transfer-plugins/bittorrent/bttransferfactory.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/bittorrent/bttransferfactory.h 2021-04-14 15:24:35.000000000 +0000 @@ -17,7 +17,7 @@ Q_OBJECT public: BTTransferFactory(QObject *parent, const QVariantList &args); - ~BTTransferFactory(); + ~BTTransferFactory() override; Transfer * createTransfer(const QUrl &srcUrl, const QUrl &destUrl, TransferGroup * parent, Scheduler * scheduler, const QDomElement * e = nullptr) override; diff -Nru kget-20.12.3/transfer-plugins/bittorrent/bttransfer.h kget-21.04.0/transfer-plugins/bittorrent/bttransfer.h --- kget-20.12.3/transfer-plugins/bittorrent/bttransfer.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/bittorrent/bttransfer.h 2021-04-14 15:24:35.000000000 +0000 @@ -52,32 +52,32 @@ BTTransfer(TransferGroup* parent, TransferFactory* factory, Scheduler* scheduler, const QUrl &src, const QUrl& dest, - const QDomElement * e = 0); - ~BTTransfer(); + const QDomElement * e = nullptr); + ~BTTransfer() override; void deinit(Transfer::DeleteOptions options) override; //Job virtual functions void start() override; void stop() override; - virtual int elapsedTime() const override; - virtual int remainingTime() const override; - virtual bool isStalled() const override; - virtual bool isWorking() const override; + int elapsedTime() const override; + int remainingTime() const override; + bool isStalled() const override; + bool isWorking() const override; /** * @returns the directory the Transfer will be stored to */ - virtual QUrl directory() const override {return m_directory;} + QUrl directory() const override {return m_directory;} /** * Move the download to the new destination * @param newDirectory is a directory where the download should be stored * @returns true if newDestination can be used */ - virtual bool setDirectory(const QUrl &newDirectory) override; + bool setDirectory(const QUrl &newDirectory) override; - virtual QList files() const override; + QList files() const override; FileModel *fileModel() override; @@ -106,7 +106,7 @@ void load(const QDomElement *element) override; void setSpeedLimits(int ulLimit, int dlLimit) override; - private slots: + private Q_SLOTS: void btTransferInit(const QUrl &src = QUrl(), const QByteArray &data = QByteArray()); void update(); void slotStoppedByError(const bt::TorrentInterface* &error, const QString &errormsg); @@ -121,14 +121,14 @@ void updateFilesStatus(); // bt::MonitorInterface functions - virtual void downloadRemoved(bt::ChunkDownloadInterface* cd) override; - virtual void downloadStarted(bt::ChunkDownloadInterface* cd) override; - virtual void peerAdded(bt::PeerInterface* peer) override; - virtual void peerRemoved(bt::PeerInterface* peer) override; - virtual void stopped() override; - virtual void destroyed() override; - virtual void filePercentageChanged(bt::TorrentFileInterface*, float) override {} - virtual void filePreviewChanged(bt::TorrentFileInterface*, bool) override {} + void downloadRemoved(bt::ChunkDownloadInterface* cd) override; + void downloadStarted(bt::ChunkDownloadInterface* cd) override; + void peerAdded(bt::PeerInterface* peer) override; + void peerRemoved(bt::PeerInterface* peer) override; + void stopped() override; + void destroyed() override; + void filePercentageChanged(bt::TorrentFileInterface*, float) override {} + void filePreviewChanged(bt::TorrentFileInterface*, bool) override {} bt::TorrentControl *torrent; QUrl m_directory; diff -Nru kget-20.12.3/transfer-plugins/bittorrent/bttransferhandler.cpp kget-21.04.0/transfer-plugins/bittorrent/bttransferhandler.cpp --- kget-20.12.3/transfer-plugins/bittorrent/bttransferhandler.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/bittorrent/bttransferhandler.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -64,7 +64,7 @@ if (advancedDetails) return advancedDetails->torrentMonitor(); else - return 0; + return nullptr; } void BTTransferHandler::createScanDlg() diff -Nru kget-20.12.3/transfer-plugins/bittorrent/bttransferhandler.h kget-21.04.0/transfer-plugins/bittorrent/bttransferhandler.h --- kget-20.12.3/transfer-plugins/bittorrent/bttransferhandler.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/bittorrent/bttransferhandler.h 2021-04-14 15:24:35.000000000 +0000 @@ -31,7 +31,7 @@ Q_OBJECT public: BTTransferHandler(BTTransfer * transfer, Scheduler * scheduler); - virtual ~BTTransferHandler(); + ~BTTransferHandler() override; int chunksTotal() const {return m_transfer->chunksTotal();} int chunksDownloaded() const {return m_transfer->chunksDownloaded();} @@ -47,11 +47,11 @@ void addTracker(QString url) {m_transfer->addTracker(url);} kt::Monitor* torrentMonitor() const; - public slots: + public Q_SLOTS: void createAdvancedDetails(); void createScanDlg(); - private slots: + private Q_SLOTS: void removeAdvancedDetails(); private: diff -Nru kget-20.12.3/transfer-plugins/bittorrent/CMakeLists.txt kget-21.04.0/transfer-plugins/bittorrent/CMakeLists.txt --- kget-20.12.3/transfer-plugins/bittorrent/CMakeLists.txt 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/bittorrent/CMakeLists.txt 2021-04-14 15:24:35.000000000 +0000 @@ -62,6 +62,6 @@ kconfig_add_kcfg_files(kcm_kget_bittorrentfactory_PART_SRCS bittorrentsettings.kcfgc) add_library(kcm_kget_bittorrentfactory MODULE ${kcm_kget_bittorrentfactory_PART_SRCS}) target_link_libraries(kcm_kget_bittorrentfactory KF5::ConfigGui KF5::ConfigWidgets KF5::I18n KF5::KIOCore KF5::KIOWidgets) -install(TARGETS kcm_kget_bittorrentfactory DESTINATION ${PLUGIN_INSTALL_DIR}) +install(TARGETS kcm_kget_bittorrentfactory DESTINATION ${KDE_INSTALL_PLUGINDIR}) -install(FILES kget_bittorrentfactory_config.desktop DESTINATION ${SERVICES_INSTALL_DIR}) +install(FILES kget_bittorrentfactory_config.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR}) diff -Nru kget-20.12.3/transfer-plugins/bittorrent/scandlg.cpp kget-21.04.0/transfer-plugins/bittorrent/scandlg.cpp --- kget-20.12.3/transfer-plugins/bittorrent/scandlg.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/bittorrent/scandlg.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -41,8 +41,8 @@ : QDialog(parent), m_job(static_cast(job)) { Ui::ScanDlgBase ui; - QWidget *widget = new QWidget(this); - QVBoxLayout *mainLayout = new QVBoxLayout; + auto *widget = new QWidget(this); + auto *mainLayout = new QVBoxLayout; ui.setupUi(widget); mainLayout->addWidget(widget); m_torrent_label = ui.torrent_label; diff -Nru kget-20.12.3/transfer-plugins/bittorrent/scandlg.h kget-21.04.0/transfer-plugins/bittorrent/scandlg.h --- kget-20.12.3/transfer-plugins/bittorrent/scandlg.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/bittorrent/scandlg.h 2021-04-14 15:24:35.000000000 +0000 @@ -43,17 +43,17 @@ Q_OBJECT public: ScanDlg(KJob *job, QWidget* parent); - virtual ~ScanDlg(); + ~ScanDlg() override; protected: /// Handle the close event - virtual void closeEvent(QCloseEvent* e) override; + void closeEvent(QCloseEvent* e) override; - protected slots: - virtual void reject() override; - virtual void accept() override; + protected Q_SLOTS: + void reject() override; + void accept() override; - private slots: + private Q_SLOTS: void description(KJob *job, const QString &title, const QPair &field1, const QPair< QString, QString > &field2); void result(KJob *job); void percent(KJob *job, unsigned long percent); diff -Nru kget-20.12.3/transfer-plugins/checksumsearch/checksumsearch.cpp kget-21.04.0/transfer-plugins/checksumsearch/checksumsearch.cpp --- kget-20.12.3/transfer-plugins/checksumsearch/checksumsearch.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/checksumsearch/checksumsearch.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -126,7 +126,7 @@ hash = rxChecksum.cap(0).toLower(); if (!m_fileName.contains(hash, Qt::CaseInsensitive)) { qCDebug(KGET_DEBUG) << "Found hash: " << hash; - emit data(m_type, hash); + Q_EMIT data(m_type, hash); } } } @@ -137,7 +137,7 @@ QString hash = rxChecksum.cap(0); if (!m_fileName.contains(hash, Qt::CaseInsensitive)) { qCDebug(KGET_DEBUG) << "Found hash:" << hash; - emit data(m_type, hash); + Q_EMIT data(m_type, hash); } } diff -Nru kget-20.12.3/transfer-plugins/checksumsearch/checksumsearch.h kget-21.04.0/transfer-plugins/checksumsearch/checksumsearch.h --- kget-20.12.3/transfer-plugins/checksumsearch/checksumsearch.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/checksumsearch/checksumsearch.h 2021-04-14 15:24:35.000000000 +0000 @@ -60,7 +60,7 @@ Q_SIGNALS: void data(QString type, QString checksum); - private slots: + private Q_SLOTS: void slotResult(KJob *job); void slotData(KIO::Job *job, const QByteArray &data); diff -Nru kget-20.12.3/transfer-plugins/checksumsearch/checksumsearchtransferdatasource.cpp kget-21.04.0/transfer-plugins/checksumsearch/checksumsearchtransferdatasource.cpp --- kget-20.12.3/transfer-plugins/checksumsearch/checksumsearchtransferdatasource.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/checksumsearch/checksumsearchtransferdatasource.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -182,7 +182,7 @@ QList urls; for (int i = 0, k = 0; i < changes.size(); ++i) { - const ChecksumSearch::UrlChangeMode mode = static_cast(modes.at(i)); + const auto mode = static_cast(modes.at(i)); const QUrl source = ChecksumSearch::createUrl(m_sourceUrl, changes.at(i), mode); if (data.indexOf(source.fileName().toLatin1()) != -1) { urls.append(source); @@ -195,7 +195,7 @@ qCDebug(KGET_DEBUG) << "Creating Checksumsearch for" << urls.count() << "urls."; if (urls.count() && types.count()) { - ChecksumSearch *search = new ChecksumSearch(urls, m_sourceUrl.fileName(), types); + auto *search = new ChecksumSearch(urls, m_sourceUrl.fileName(), types); connect(search, SIGNAL(data(QString,QString)), this, SIGNAL(data(QString,QString))); } diff -Nru kget-20.12.3/transfer-plugins/checksumsearch/checksumsearchtransferdatasource.h kget-21.04.0/transfer-plugins/checksumsearch/checksumsearchtransferdatasource.h --- kget-20.12.3/transfer-plugins/checksumsearch/checksumsearchtransferdatasource.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/checksumsearch/checksumsearchtransferdatasource.h 2021-04-14 15:24:35.000000000 +0000 @@ -55,7 +55,7 @@ */ void unregisterSearch(ChecksumSearchTransferDataSource *search, const QUrl &baseUrl = QUrl()); - private slots: + private Q_SLOTS: void slotEntries(KIO::Job *job, const KIO::UDSEntryList &entries); void slotResult(KJob *job); diff -Nru kget-20.12.3/transfer-plugins/checksumsearch/CMakeLists.txt kget-21.04.0/transfer-plugins/checksumsearch/CMakeLists.txt --- kget-20.12.3/transfer-plugins/checksumsearch/CMakeLists.txt 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/checksumsearch/CMakeLists.txt 2021-04-14 15:24:35.000000000 +0000 @@ -15,7 +15,7 @@ target_link_libraries(kget_checksumsearchfactory kgetcore) install(TARGETS kget_checksumsearchfactory DESTINATION ${KGET_PLUGIN_INSTALL_DIR}) -install(FILES kget_checksumsearchfactory.kcfg DESTINATION ${KCFG_INSTALL_DIR}) +install(FILES kget_checksumsearchfactory.kcfg DESTINATION ${KDE_INSTALL_KCFGDIR}) ###Build KCM-Module set(kcm_kget_checksumsearchfactory_PART_SRCS @@ -32,6 +32,6 @@ kconfig_add_kcfg_files(kcm_kget_checksumsearchfactory_PART_SRCS checksumsearchsettings.kcfgc) add_library(kcm_kget_checksumsearchfactory MODULE ${kcm_kget_checksumsearchfactory_PART_SRCS}) target_link_libraries(kcm_kget_checksumsearchfactory kgetcore) -install(TARGETS kcm_kget_checksumsearchfactory DESTINATION ${PLUGIN_INSTALL_DIR}) +install(TARGETS kcm_kget_checksumsearchfactory DESTINATION ${KDE_INSTALL_PLUGINDIR}) -install(FILES kget_checksumsearchfactory_config.desktop DESTINATION ${SERVICES_INSTALL_DIR}) +install(FILES kget_checksumsearchfactory_config.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR}) diff -Nru kget-20.12.3/transfer-plugins/checksumsearch/dlgchecksumsearch.cpp kget-21.04.0/transfer-plugins/checksumsearch/dlgchecksumsearch.cpp --- kget-20.12.3/transfer-plugins/checksumsearch/dlgchecksumsearch.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/checksumsearch/dlgchecksumsearch.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -68,7 +68,7 @@ { ui.buttonBox->button(QDialogButtonBox::Ok)->setEnabled(!ui.change->text().isEmpty()); - const ChecksumSearch::UrlChangeMode mode = static_cast(ui.mode->currentIndex()); + const auto mode = static_cast(ui.mode->currentIndex()); const QUrl modifiedUrl = ChecksumSearch::createUrl(URL, ui.change->text(), mode); const QString text = i18n("%1 would become %2", URL.toDisplayString(), modifiedUrl.toDisplayString()); ui.label->setText(text); @@ -76,7 +76,7 @@ void ChecksumSearchAddDlg::slotAccpeted() { - emit addItem(ui.change->text(), ui.mode->currentIndex(), ui.type->currentText()); + Q_EMIT addItem(ui.change->text(), ui.mode->currentIndex(), ui.type->currentText()); } ChecksumDelegate::ChecksumDelegate(QObject *parent) @@ -101,7 +101,7 @@ { if (index.column() == 0l) { - KLineEdit *line = new KLineEdit(parent); + auto *line = new KLineEdit(parent); return line; } @@ -109,7 +109,7 @@ { if (m_modesModel) { - KComboBox *modesBox = new KComboBox(parent); + auto *modesBox = new KComboBox(parent); modesBox->setModel(m_modesModel); return modesBox; @@ -119,7 +119,7 @@ { if (m_typesModel) { - KComboBox *typesBox = new KComboBox(parent); + auto *typesBox = new KComboBox(parent); typesBox->setModel(m_typesModel); return typesBox; @@ -134,14 +134,14 @@ { if (index.isValid() && editor) { if (index.column() == 0) { - KLineEdit *line = static_cast(editor); + auto *line = static_cast(editor); line->setText(index.data(Qt::EditRole).toString()); } else if (index.column() == 1) { - KComboBox *modesBox = static_cast(editor); + auto *modesBox = static_cast(editor); const QString mode = index.data(Qt::EditRole).toString(); modesBox->setCurrentIndex(modesBox->findText(mode)); } else if (index.column() == 2) { - KComboBox *typesBox = static_cast(editor); + auto *typesBox = static_cast(editor); const QString type = index.data(Qt::EditRole).toString(); typesBox->setCurrentIndex(typesBox->findText(type)); } @@ -154,7 +154,7 @@ { if (index.column() == 0) { - KLineEdit *line = static_cast(editor); + auto *line = static_cast(editor); if (!line->text().isEmpty()) { model->setData(index, line->text()); @@ -162,13 +162,13 @@ } else if (index.column() == 1) { - KComboBox *modesBox = static_cast(editor); + auto *modesBox = static_cast(editor); model->setData(index, modesBox->currentText()); model->setData(index, modesBox->currentIndex(), Qt::UserRole); } else if (index.column() == 2) { - KComboBox *typesBox = static_cast(editor); + auto *typesBox = static_cast(editor); model->setData(index, typesBox->currentText()); } } @@ -201,7 +201,7 @@ m_proxy->setSortCaseSensitivity(Qt::CaseInsensitive); ui.treeView->setModel(m_proxy); - ChecksumDelegate *delegate = new ChecksumDelegate(m_modesModel, m_typesModel, this); + auto *delegate = new ChecksumDelegate(m_modesModel, m_typesModel, this); ui.treeView->setItemDelegate(delegate); ui.treeView->sortByColumn(2, Qt::AscendingOrder); KGuiItem::assign(ui.add, KStandardGuiItem::add()); @@ -222,7 +222,7 @@ void DlgChecksumSettingsWidget::slotAdd() { - ChecksumSearchAddDlg *dialog = new ChecksumSearchAddDlg(m_modesModel, m_typesModel, this); + auto *dialog = new ChecksumSearchAddDlg(m_modesModel, m_typesModel, this); connect(dialog, &ChecksumSearchAddDlg::addItem, this, &DlgChecksumSettingsWidget::slotAddItem); dialog->show(); @@ -238,7 +238,7 @@ void DlgChecksumSettingsWidget::slotAddItem(const QString &change, int mode, const QString &type) { - QStandardItem *item = new QStandardItem(m_modes.value(mode)); + auto *item = new QStandardItem(m_modes.value(mode)); item->setData(QVariant(mode), Qt::UserRole); QList items; diff -Nru kget-20.12.3/transfer-plugins/checksumsearch/dlgchecksumsearch.h kget-21.04.0/transfer-plugins/checksumsearch/dlgchecksumsearch.h --- kget-20.12.3/transfer-plugins/checksumsearch/dlgchecksumsearch.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/checksumsearch/dlgchecksumsearch.h 2021-04-14 15:24:35.000000000 +0000 @@ -41,7 +41,7 @@ public: ChecksumSearchAddDlg(QStringListModel *modesModel, QStringListModel *typesModel, QWidget *parent = nullptr, Qt::WindowFlags flags = {}); - signals: + Q_SIGNALS: /** * Emitted when the dialog gets accepted * @param change the string that should change the source url by mode @@ -50,7 +50,7 @@ */ void addItem(const QString &change, int mode, const QString &type); - private slots: + private Q_SLOTS: /** * Enables or disables buttons depending on if the user entered text or not, also changes * the label etc. @@ -94,11 +94,11 @@ explicit DlgChecksumSettingsWidget(QWidget *parent = nullptr, const QVariantList &args = QVariantList()); ~DlgChecksumSettingsWidget() override; - public slots: + public Q_SLOTS: void save() override; void load() override; - private slots: + private Q_SLOTS: /** * Oppens the AddDlg */ diff -Nru kget-20.12.3/transfer-plugins/contentfetch/CMakeLists.txt kget-21.04.0/transfer-plugins/contentfetch/CMakeLists.txt --- kget-20.12.3/transfer-plugins/contentfetch/CMakeLists.txt 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/contentfetch/CMakeLists.txt 2021-04-14 15:24:35.000000000 +0000 @@ -18,7 +18,7 @@ target_link_libraries(kget_contentfetchfactory KF5::KIOCore KF5::KrossCore kgetcore) install(TARGETS kget_contentfetchfactory DESTINATION ${KGET_PLUGIN_INSTALL_DIR}) -install(FILES kget_contentfetchfactory.kcfg DESTINATION ${KCFG_INSTALL_DIR}) +install(FILES kget_contentfetchfactory.kcfg DESTINATION ${KDE_INSTALL_KCFGDIR}) ###Build KCM-Module set(kcm_kget_contentfetchfactory_PART_SRCS @@ -36,6 +36,6 @@ add_library(kcm_kget_contentfetchfactory MODULE ${kcm_kget_contentfetchfactory_PART_SRCS}) target_link_libraries(kcm_kget_contentfetchfactory KF5::KIOCore KF5::KrossCore ${KDE4_KROSSUI_LIBS}) -install(TARGETS kcm_kget_contentfetchfactory DESTINATION ${PLUGIN_INSTALL_DIR}) +install(TARGETS kcm_kget_contentfetchfactory DESTINATION ${KDE_INSTALL_PLUGINDIR}) -install(FILES kget_contentfetchfactory_config.desktop DESTINATION ${SERVICES_INSTALL_DIR}) +install(FILES kget_contentfetchfactory_config.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR}) diff -Nru kget-20.12.3/transfer-plugins/contentfetch/contentfetch.h kget-21.04.0/transfer-plugins/contentfetch/contentfetch.h --- kget-20.12.3/transfer-plugins/contentfetch/contentfetch.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/contentfetch/contentfetch.h 2021-04-14 15:24:35.000000000 +0000 @@ -26,7 +26,7 @@ const KUrl & dest, const QString &scriptFile, const QDomElement * e = nullptr); - public slots: + public Q_SLOTS: void deinit(); // --- Job virtual functions --- @@ -42,7 +42,7 @@ TransferGroup *m_p_group; QString m_scriptFile; QString m_destDir; - private slots: + private Q_SLOTS: void slotFinish(); void slotAbort(const QString&); void slotAddTransfer(const QString &url, const QString &filename); diff -Nru kget-20.12.3/transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.h kget-21.04.0/transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.h --- kget-20.12.3/transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.h 2021-04-14 15:24:35.000000000 +0000 @@ -24,11 +24,11 @@ DlgContentFetchSettingWidget(QWidget * parent, const QVariantList &args); ~DlgContentFetchSettingWidget(); - public slots: + public Q_SLOTS: virtual void save(); virtual void load(); - private slots: + private Q_SLOTS: void slotNewScript(); void slotEditScript(); void slotConfigureScript(); @@ -38,7 +38,7 @@ void slotEnableChanged(QTreeWidgetItem* p_item, int column); - signals: + Q_SIGNALS: void configureScript(QWidget* widget, QObject* configadaptor); void configurationAccepted(QWidget* widget, QObject* configadaptor); private: @@ -57,7 +57,7 @@ public: explicit SettingWidgetAdaptor(QWidget* parent = nullptr) : QWidget(parent) {} virtual ~SettingWidgetAdaptor() {} - public slots: + public Q_SLOTS: void setWidget(QWidget* widget) { widget->setParent(this); diff -Nru kget-20.12.3/transfer-plugins/contentfetch/dlgscriptediting.cpp kget-21.04.0/transfer-plugins/contentfetch/dlgscriptediting.cpp --- kget-20.12.3/transfer-plugins/contentfetch/dlgscriptediting.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/contentfetch/dlgscriptediting.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -13,7 +13,7 @@ #include #include -#include +#include #include #include #include diff -Nru kget-20.12.3/transfer-plugins/contentfetch/dlgscriptediting.h kget-21.04.0/transfer-plugins/contentfetch/dlgscriptediting.h --- kget-20.12.3/transfer-plugins/contentfetch/dlgscriptediting.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/contentfetch/dlgscriptediting.h 2021-04-14 15:24:35.000000000 +0000 @@ -27,7 +27,7 @@ QString scriptPath() const; QString scriptUrlRegexp() const; QString scriptDescription() const; - private slots: + private Q_SLOTS: void slotChangeText(); private: Ui::DlgScriptEditing ui; diff -Nru kget-20.12.3/transfer-plugins/contentfetch/scriptconfigadaptor.h kget-21.04.0/transfer-plugins/contentfetch/scriptconfigadaptor.h --- kget-20.12.3/transfer-plugins/contentfetch/scriptconfigadaptor.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/contentfetch/scriptconfigadaptor.h 2021-04-14 15:24:35.000000000 +0000 @@ -14,8 +14,8 @@ #include #include -#include -#include +#include +#include class ScriptConfigAdaptor : public QObject { @@ -27,7 +27,7 @@ delete m_config; } - public slots: + public Q_SLOTS: bool setFile(const QString &filename, const QString &path = QString()); void unsetFile(); QVariant read(const QString &group, const QString &key, diff -Nru kget-20.12.3/transfer-plugins/contentfetch/scriptdownloadengine.h kget-21.04.0/transfer-plugins/contentfetch/scriptdownloadengine.h --- kget-20.12.3/transfer-plugins/contentfetch/scriptdownloadengine.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/contentfetch/scriptdownloadengine.h 2021-04-14 15:24:35.000000000 +0000 @@ -24,14 +24,14 @@ ScriptDownloadEngine(QObject *parent, const KUrl &source); ~ScriptDownloadEngine(){} void setSourceUrl(const QString &url); - signals: + Q_SIGNALS: void newTransfer(const QString &url, const QString &filename); void startDownload(QObject* configadaptor); void percentUpdated(int percent); void textStatusUpdated(const QString &text); void finished(); void aborted(const QString& error); - public slots: + public Q_SLOTS: QString getSourceUrl() const; bool addTransfer(const QString &url, const QString &filename = QString()); diff -Nru kget-20.12.3/transfer-plugins/contentfetch/script.h kget-21.04.0/transfer-plugins/contentfetch/script.h --- kget-20.12.3/transfer-plugins/contentfetch/script.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/contentfetch/script.h 2021-04-14 15:24:35.000000000 +0000 @@ -27,7 +27,7 @@ Script(QObject* parent, const KUrl &source); ~Script(); bool setFile(const QString &filename); - signals: + Q_SIGNALS: void newTransfer(const QString &url, const QString &filename); void startDownload(QObject* configadaptor); void percentUpdated(int percent); diff -Nru kget-20.12.3/transfer-plugins/contentfetch/scripts/CMakeLists.txt kget-21.04.0/transfer-plugins/contentfetch/scripts/CMakeLists.txt --- kget-20.12.3/transfer-plugins/contentfetch/scripts/CMakeLists.txt 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/contentfetch/scripts/CMakeLists.txt 2021-04-14 15:24:35.000000000 +0000 @@ -1,4 +1,4 @@ -install(FILES youtubedl/kget_youtubedl.py DESTINATION ${DATA_INSTALL_DIR}/kget/content_fetch_scripts/youtubedl) -install(FILES youtubedl/kget_youtubedl_option.py DESTINATION ${DATA_INSTALL_DIR}/kget/content_fetch_scripts/youtubedl) -install(FILES youtubedl/ui_youtube_option.py DESTINATION ${DATA_INSTALL_DIR}/kget/content_fetch_scripts/youtubedl) -install(FILES youtubedl/youtube_option.ui DESTINATION ${DATA_INSTALL_DIR}/kget/content_fetch_scripts/youtubedl) +install(FILES youtubedl/kget_youtubedl.py DESTINATION ${KDE_INSTALL_DATADIR}/kget/content_fetch_scripts/youtubedl) +install(FILES youtubedl/kget_youtubedl_option.py DESTINATION ${KDE_INSTALL_DATADIR}/kget/content_fetch_scripts/youtubedl) +install(FILES youtubedl/ui_youtube_option.py DESTINATION ${KDE_INSTALL_DATADIR}/kget/content_fetch_scripts/youtubedl) +install(FILES youtubedl/youtube_option.ui DESTINATION ${KDE_INSTALL_DATADIR}/kget/content_fetch_scripts/youtubedl) diff -Nru kget-20.12.3/transfer-plugins/kio/transferKio.cpp kget-21.04.0/transfer-plugins/kio/transferKio.cpp --- kget-20.12.3/transfer-plugins/kio/transferKio.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/kio/transferKio.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -289,7 +289,7 @@ void TransferKio::slotStatResult(KJob* kioJob) { - KIO::StatJob * statJob = qobject_cast(kioJob); + auto * statJob = qobject_cast(kioJob); if (!statJob->error()) { const KIO::UDSEntry entryResult = statJob->statResult(); diff -Nru kget-20.12.3/transfer-plugins/kio/transferKioFactory.cpp kget-21.04.0/transfer-plugins/kio/transferKioFactory.cpp --- kget-20.12.3/transfer-plugins/kio/transferKioFactory.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/kio/transferKioFactory.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -41,7 +41,7 @@ { return new TransferKio(parent, this, scheduler, srcUrl, destUrl, e); } - return 0; + return nullptr; } bool TransferKioFactory::isSupported(const QUrl &url) const diff -Nru kget-20.12.3/transfer-plugins/kio/transferKioFactory.h kget-21.04.0/transfer-plugins/kio/transferKioFactory.h --- kget-20.12.3/transfer-plugins/kio/transferKioFactory.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/kio/transferKioFactory.h 2021-04-14 15:24:35.000000000 +0000 @@ -24,7 +24,7 @@ TransferKioFactory(QObject *parent, const QVariantList &args); ~TransferKioFactory() override; - public slots: + public Q_SLOTS: Transfer * createTransfer( const QUrl &srcUrl, const QUrl &destUrl, TransferGroup * parent, Scheduler * scheduler, const QDomElement * e = nullptr ) override; diff -Nru kget-20.12.3/transfer-plugins/kio/transferKio.h kget-21.04.0/transfer-plugins/kio/transferKio.h --- kget-20.12.3/transfer-plugins/kio/transferKio.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/kio/transferKio.h 2021-04-14 15:24:35.000000000 +0000 @@ -45,7 +45,7 @@ Verifier *verifier(const QUrl &file = QUrl()) override; Signature *signature(const QUrl &file = QUrl()) override; - public slots: + public Q_SLOTS: bool setNewDestination(const QUrl &newDestination); // --- Job virtual functions --- @@ -61,7 +61,7 @@ bool m_stopped; bool m_movingFile; - private slots: + private Q_SLOTS: void slotResult( KJob * kioJob ); void slotInfoMessage( KJob * kioJob, const QString & msg ); void slotPercent( KJob * kioJob, unsigned long percent ); diff -Nru kget-20.12.3/transfer-plugins/metalink/abstractmetalink.cpp kget-21.04.0/transfer-plugins/metalink/abstractmetalink.cpp --- kget-20.12.3/transfer-plugins/metalink/abstractmetalink.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/metalink/abstractmetalink.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -53,7 +53,7 @@ void AbstractMetalink::slotDataSourceFactoryChange(Transfer::ChangesFlags change) { if ((change & Tc_Status) | (change & Tc_TotalSize)) { - DataSourceFactory *factory = qobject_cast(sender()); + auto *factory = qobject_cast(sender()); if (change & Tc_Status) { bool changeStatus; updateStatus(factory, &changeStatus); @@ -288,7 +288,7 @@ Verifier *AbstractMetalink::verifier(const QUrl &file) { if (!m_dataSourceFactory.contains(file)) { - return 0; + return nullptr; } return m_dataSourceFactory[file]->verifier(); @@ -297,7 +297,7 @@ Signature *AbstractMetalink::signature(const QUrl &file) { if (!m_dataSourceFactory.contains(file)) { - return 0; + return nullptr; } return m_dataSourceFactory[file]->signature(); @@ -478,7 +478,7 @@ doDownload = false; //ask the user, unless he has chosen overwriteAll before } else if (!overwriteAll) { - KIO::RenameDialog dlg(0, i18n("File already exists"), QUrl(index.data().toString()), dest, + KIO::RenameDialog dlg(nullptr, i18n("File already exists"), QUrl(index.data().toString()), dest, KIO::RenameDialog_Options(KIO::RenameDialog_MultipleItems | KIO::RenameDialog_Overwrite | KIO::RenameDialog_Skip)); const int result = dlg.exec(); diff -Nru kget-20.12.3/transfer-plugins/metalink/CMakeLists.txt kget-21.04.0/transfer-plugins/metalink/CMakeLists.txt --- kget-20.12.3/transfer-plugins/metalink/CMakeLists.txt 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/metalink/CMakeLists.txt 2021-04-14 15:24:35.000000000 +0000 @@ -40,6 +40,6 @@ kconfig_add_kcfg_files(kcm_kget_metalinkfactory_PART_SRCS metalinksettings.kcfgc) add_library(kcm_kget_metalinkfactory MODULE ${kcm_kget_metalinkfactory_PART_SRCS}) target_link_libraries(kcm_kget_metalinkfactory KF5::I18n KF5::ConfigGui KF5::ConfigWidgets) -install(TARGETS kcm_kget_metalinkfactory DESTINATION ${PLUGIN_INSTALL_DIR}) +install(TARGETS kcm_kget_metalinkfactory DESTINATION ${KDE_INSTALL_PLUGINDIR}) -install(FILES kget_metalinkfactory_config.desktop DESTINATION ${SERVICES_INSTALL_DIR}) +install(FILES kget_metalinkfactory_config.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR}) diff -Nru kget-20.12.3/transfer-plugins/metalink/dlgmetalink.h kget-21.04.0/transfer-plugins/metalink/dlgmetalink.h --- kget-20.12.3/transfer-plugins/metalink/dlgmetalink.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/metalink/dlgmetalink.h 2021-04-14 15:24:35.000000000 +0000 @@ -23,7 +23,7 @@ explicit DlgSettingsWidget(QWidget *parent = nullptr, const QVariantList &args = QVariantList()); ~DlgSettingsWidget() override; -public slots: +public Q_SLOTS: void save() override; void load() override; diff -Nru kget-20.12.3/transfer-plugins/metalink/fileselectiondlg.cpp kget-21.04.0/transfer-plugins/metalink/fileselectiondlg.cpp --- kget-20.12.3/transfer-plugins/metalink/fileselectiondlg.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/metalink/fileselectiondlg.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -33,12 +33,12 @@ : QDialog(parent) { setWindowTitle(i18n("File Selection")); - QWidget *widget = new QWidget(this); + auto *widget = new QWidget(this); ui.setupUi(widget); - QVBoxLayout *mainLayout = new QVBoxLayout; + auto *mainLayout = new QVBoxLayout; setLayout(mainLayout); mainLayout->addWidget(widget); - QSortFilterProxyModel *proxy = new QSortFilterProxyModel(this); + auto *proxy = new QSortFilterProxyModel(this); proxy->setSourceModel(model); ui.treeView->setModel(proxy); ui.treeView->sortByColumn(0, Qt::AscendingOrder); @@ -46,7 +46,7 @@ ui.treeView->hideColumn(FileItem::ChecksumVerified); ui.treeView->hideColumn(FileItem::SignatureVerified); - QDialogButtonBox *buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok|QDialogButtonBox::Cancel); + auto *buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok|QDialogButtonBox::Cancel); QPushButton *okButton = buttonBox->button(QDialogButtonBox::Ok); okButton->setDefault(true); okButton->setShortcut(Qt::CTRL | Qt::Key_Return); diff -Nru kget-20.12.3/transfer-plugins/metalink/metalinkfactory.cpp kget-21.04.0/transfer-plugins/metalink/metalinkfactory.cpp --- kget-20.12.3/transfer-plugins/metalink/metalinkfactory.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/metalink/metalinkfactory.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -37,7 +37,7 @@ const QDomElement * e ) { qCDebug(KGET_DEBUG) << "metalinkFactory::createTransfer"; - KGetMetalink::MetalinkHttpParser *metalinkHttpChecker = new KGetMetalink::MetalinkHttpParser(srcUrl); + auto *metalinkHttpChecker = new KGetMetalink::MetalinkHttpParser(srcUrl); if (metalinkHttpChecker->isMetalinkHttp()) { qCDebug(KGET_DEBUG) << "Create MetalinkHTTP"; diff -Nru kget-20.12.3/transfer-plugins/metalink/metalinkhttp.cpp kget-21.04.0/transfer-plugins/metalink/metalinkhttp.cpp --- kget-20.12.3/transfer-plugins/metalink/metalinkhttp.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/metalink/metalinkhttp.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -70,7 +70,7 @@ { qCDebug(KGET_DEBUG); Transfer::load(element); - DataSourceFactory * fac = new DataSourceFactory(this, m_dest); + auto * fac = new DataSourceFactory(this, m_dest); m_dataSourceFactory.insert(m_dest, fac); connect(fac, &DataSourceFactory::capabilitiesChanged, this, &MetalinkHttp::slotUpdateCapabilities); @@ -180,7 +180,7 @@ //sort the urls according to their priority (highest first) std::stable_sort(m_linkheaderList.begin(), m_linkheaderList.end()); - DataSourceFactory *dataFactory = new DataSourceFactory(this,dest); + auto *dataFactory = new DataSourceFactory(this,dest); dataFactory->setMaxMirrorsUsed(MetalinkSettings::mirrorsPerFile()); connect(dataFactory, &DataSourceFactory::capabilitiesChanged, this, &MetalinkHttp::slotUpdateCapabilities); @@ -196,7 +196,7 @@ if (url.isValid()) { if (m_linkheaderList[i].pref) { qDebug() << "found etag in a mirror" ; - KGetMetalink::MetalinkHttpParser* eTagCher = new KGetMetalink::MetalinkHttpParser(url) ; + auto* eTagCher = new KGetMetalink::MetalinkHttpParser(url) ; if (eTagCher->getEtag() != m_httpparser->getEtag()) { //There is an ETag mismatch continue ; } @@ -226,7 +226,7 @@ QDir().mkpath(QStandardPaths::writableLocation(QStandardPaths::AppDataLocation)); } const QString path = QStandardPaths::writableLocation(QStandardPaths::AppDataLocation) + QStringLiteral("/metalinks/") + m_source.fileName(); - Download *signat_download = new Download(m_signatureUrl, QUrl::fromLocalFile(path)); + auto *signat_download = new Download(m_signatureUrl, QUrl::fromLocalFile(path)); connect(signat_download, SIGNAL(finishedSuccessfully(QUrl,QByteArray)), SLOT(setSignature(QUrl,QByteArray))); } m_dataSourceFactory[dataFactory->dest()] = dataFactory; diff -Nru kget-20.12.3/transfer-plugins/metalink/metalinkxml.cpp kget-21.04.0/transfer-plugins/metalink/metalinkxml.cpp --- kget-20.12.3/transfer-plugins/metalink/metalinkxml.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/metalink/metalinkxml.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -82,7 +82,7 @@ QDir().mkpath(QStandardPaths::writableLocation(QStandardPaths::AppDataLocation)); } const QString path = QStandardPaths::writableLocation(QStandardPaths::AppDataLocation) + QStringLiteral("/metalinks/") + m_source.fileName(); - Download *download = new Download(m_source, QUrl::fromLocalFile(path)); + auto *download = new Download(m_source, QUrl::fromLocalFile(path)); connect(download, &Download::finishedSuccessfully, this, &MetalinkXml::metalinkInit); } @@ -142,7 +142,7 @@ m_totalSize += fileSize; //create a DataSourceFactory for each separate file - DataSourceFactory *dataFactory = new DataSourceFactory(this, dest, fileSize, segSize); + auto *dataFactory = new DataSourceFactory(this, dest, fileSize, segSize); dataFactory->setMaxMirrorsUsed(MetalinkSettings::mirrorsPerFile()); //TODO compare available file size () with the sizes of the server while downloading? @@ -293,7 +293,7 @@ factory.appendChild(factories.item(0).toElement()); doc.appendChild(factory); - DataSourceFactory *file = new DataSourceFactory(this); + auto *file = new DataSourceFactory(this); file->load(&factory); connect(file, &DataSourceFactory::capabilitiesChanged, this, &MetalinkXml::slotUpdateCapabilities); connect(file, &DataSourceFactory::dataSourceFactoryChange, this, &MetalinkXml::slotDataSourceFactoryChange); diff -Nru kget-20.12.3/transfer-plugins/mirrorsearch/CMakeLists.txt kget-21.04.0/transfer-plugins/mirrorsearch/CMakeLists.txt --- kget-20.12.3/transfer-plugins/mirrorsearch/CMakeLists.txt 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/mirrorsearch/CMakeLists.txt 2021-04-14 15:24:35.000000000 +0000 @@ -16,7 +16,7 @@ target_link_libraries(kget_mirrorsearchfactory kgetcore) install(TARGETS kget_mirrorsearchfactory DESTINATION ${KGET_PLUGIN_INSTALL_DIR}) -install(FILES kget_mirrorsearchfactory.kcfg DESTINATION ${KCFG_INSTALL_DIR}) +install(FILES kget_mirrorsearchfactory.kcfg DESTINATION ${KDE_INSTALL_KCFGDIR}) ###Build KCM-Module set(kcm_kget_mirrorsearchfactory_PART_SRCS @@ -32,6 +32,6 @@ kconfig_add_kcfg_files(kcm_kget_mirrorsearchfactory_PART_SRCS mirrorsearchsettings.kcfgc) add_library(kcm_kget_mirrorsearchfactory MODULE ${kcm_kget_mirrorsearchfactory_PART_SRCS}) target_link_libraries(kcm_kget_mirrorsearchfactory KF5::ConfigWidgets KF5::I18n KF5::WidgetsAddons) -install(TARGETS kcm_kget_mirrorsearchfactory DESTINATION ${PLUGIN_INSTALL_DIR}) +install(TARGETS kcm_kget_mirrorsearchfactory DESTINATION ${KDE_INSTALL_PLUGINDIR}) -install(FILES kget_mirrorsearchfactory_config.desktop DESTINATION ${SERVICES_INSTALL_DIR}) +install(FILES kget_mirrorsearchfactory_config.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR}) diff -Nru kget-20.12.3/transfer-plugins/mirrorsearch/dlgmirrorsearch.cpp kget-21.04.0/transfer-plugins/mirrorsearch/dlgmirrorsearch.cpp --- kget-20.12.3/transfer-plugins/mirrorsearch/dlgmirrorsearch.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/mirrorsearch/dlgmirrorsearch.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -26,15 +26,15 @@ DlgEngineEditing::DlgEngineEditing(QWidget *parent) : QDialog(parent) { - QWidget *mainWidget = new QWidget(this); + auto *mainWidget = new QWidget(this); ui.setupUi(mainWidget); - QVBoxLayout *mainLayout = new QVBoxLayout; + auto *mainLayout = new QVBoxLayout; setLayout(mainLayout); mainLayout->addWidget(mainWidget); setWindowTitle(i18n("Insert Engine")); setModal(true); - QDialogButtonBox *buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok|QDialogButtonBox::Cancel); + auto *buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok|QDialogButtonBox::Cancel); okButton = buttonBox->button(QDialogButtonBox::Ok); okButton->setDefault(true); okButton->setShortcut(Qt::CTRL | Qt::Key_Return); @@ -91,9 +91,9 @@ if(dialog.exec()) { addSearchEngineItem(dialog.engineName(), dialog.engineUrl()); #if KCONFIGWIDGETS_VERSION < QT_VERSION_CHECK(5, 64, 0) - emit changed(); + Q_EMIT changed(); #else - emit markAsChanged(); + Q_EMIT markAsChanged(); #endif } } @@ -105,9 +105,9 @@ foreach(QTreeWidgetItem * selectedItem, selectedItems) delete(selectedItem); #if KCONFIGWIDGETS_VERSION < QT_VERSION_CHECK(5, 64, 0) - emit changed(); + Q_EMIT changed(); #else - emit markAsChanged(); + Q_EMIT markAsChanged(); #endif } @@ -120,9 +120,9 @@ { ui.enginesTreeWidget->addTopLevelItem(new QTreeWidgetItem(QStringList() << name << url)); #if KCONFIGWIDGETS_VERSION < QT_VERSION_CHECK(5, 64, 0) - emit changed(); + Q_EMIT changed(); #else - emit markAsChanged(); + Q_EMIT markAsChanged(); #endif } diff -Nru kget-20.12.3/transfer-plugins/mirrorsearch/dlgmirrorsearch.h kget-21.04.0/transfer-plugins/mirrorsearch/dlgmirrorsearch.h --- kget-20.12.3/transfer-plugins/mirrorsearch/dlgmirrorsearch.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/mirrorsearch/dlgmirrorsearch.h 2021-04-14 15:24:35.000000000 +0000 @@ -27,7 +27,7 @@ QString engineName() const; QString engineUrl() const; -private slots: +private Q_SLOTS: void slotChangeText(); private: @@ -43,11 +43,11 @@ explicit DlgSettingsWidget(QWidget *parent = nullptr, const QVariantList &args = QVariantList()); ~DlgSettingsWidget() override; -public slots: +public Q_SLOTS: void save() override; void load() override; -private slots: +private Q_SLOTS: void slotNewEngine(); void slotRemoveEngine(); diff -Nru kget-20.12.3/transfer-plugins/mirrorsearch/mirrors.cpp kget-21.04.0/transfer-plugins/mirrorsearch/mirrors.cpp --- kget-20.12.3/transfer-plugins/mirrorsearch/mirrors.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/mirrorsearch/mirrors.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -84,19 +84,19 @@ } if (m_Urls.size() > minUrlsNeeded) - emit urls(m_Urls); + Q_EMIT urls(m_Urls); deleteLater(); } void MirrorSearch ( const QUrl &url, QObject *receiver, const char *member ) { - mirror *searcher = new mirror(); + auto *searcher = new mirror(); searcher->search(url, receiver, member); } void MirrorSearch ( const QString &fileName, QObject *receiver, const char *member ) { - mirror *searcher = new mirror(); + auto *searcher = new mirror(); searcher->search(fileName, receiver, member); } diff -Nru kget-20.12.3/transfer-plugins/mirrorsearch/mirrorsearchtransferdatasource.cpp kget-21.04.0/transfer-plugins/mirrorsearch/mirrorsearchtransferdatasource.cpp --- kget-20.12.3/transfer-plugins/mirrorsearch/mirrorsearchtransferdatasource.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/mirrorsearch/mirrorsearchtransferdatasource.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -42,7 +42,7 @@ void MirrorSearchTransferDataSource::slotSearchUrls(QList& Urls) { - emit data(Urls); + Q_EMIT data(Urls); } diff -Nru kget-20.12.3/transfer-plugins/mmsthreads/CMakeLists.txt kget-21.04.0/transfer-plugins/mmsthreads/CMakeLists.txt --- kget-20.12.3/transfer-plugins/mmsthreads/CMakeLists.txt 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/mmsthreads/CMakeLists.txt 2021-04-14 15:24:35.000000000 +0000 @@ -17,7 +17,7 @@ target_link_libraries(kget_mmsfactory kgetcore ${LIBMMS_LIBRARIES}) install(TARGETS kget_mmsfactory DESTINATION ${KGET_PLUGIN_INSTALL_DIR}) -install(FILES kget_mmsfactory.kcfg DESTINATION ${KCFG_INSTALL_DIR}) +install(FILES kget_mmsfactory.kcfg DESTINATION ${KDE_INSTALL_KCFGDIR}) ###Build KCM-Module set(kcm_kget_mmsfactory_PART_SRCS @@ -31,6 +31,6 @@ kconfig_add_kcfg_files(kcm_kget_mmsfactory_PART_SRCS mmssettings.kcfgc) add_library(kcm_kget_mmsfactory MODULE ${kcm_kget_mmsfactory_PART_SRCS}) target_link_libraries(kcm_kget_mmsfactory KF5::I18n KF5::ConfigWidgets) -install(TARGETS kcm_kget_mmsfactory DESTINATION ${PLUGIN_INSTALL_DIR}) +install(TARGETS kcm_kget_mmsfactory DESTINATION ${KDE_INSTALL_PLUGINDIR}) -install(FILES kget_mmsfactory_config.desktop DESTINATION ${SERVICES_INSTALL_DIR}) +install(FILES kget_mmsfactory_config.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR}) diff -Nru kget-20.12.3/transfer-plugins/mmsthreads/dlgmms.h kget-21.04.0/transfer-plugins/mmsthreads/dlgmms.h --- kget-20.12.3/transfer-plugins/mmsthreads/dlgmms.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/mmsthreads/dlgmms.h 2021-04-14 15:24:35.000000000 +0000 @@ -29,7 +29,7 @@ public: explicit DlgMmsSettings(QWidget * parent = nullptr, const QVariantList &args = QVariantList()); - public slots: + public Q_SLOTS: void save() override; void load() override; diff -Nru kget-20.12.3/transfer-plugins/mmsthreads/mmsdownload.cpp kget-21.04.0/transfer-plugins/mmsthreads/mmsdownload.cpp --- kget-20.12.3/transfer-plugins/mmsthreads/mmsdownload.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/mmsthreads/mmsdownload.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -53,7 +53,7 @@ splitTransfer(); startTransfer(); } else { - emit signBrokenUrl(); + Q_EMIT signBrokenUrl(); quit(); } exec(); @@ -76,12 +76,12 @@ m_amountThreads = mmsx_get_seekable(m_mms) ? m_amountThreads : 0; if (m_amountThreads == 0) { m_amountThreads = 1; - emit signNotAllowMultiDownload(); + Q_EMIT signNotAllowMultiDownload(); QFile::remove(m_fileTemp); } const qulonglong total = mmsx_get_length(m_mms); - emit signTotalSize(total); + Q_EMIT signTotalSize(total); if (QFile::exists(m_fileTemp)) { unSerialization(); @@ -105,7 +105,7 @@ m_speedTimer->start(); QMap::const_iterator iterator = m_mapEndIni.constBegin(); while (iterator != m_mapEndIni.constEnd()) { - MmsThread* thread = new MmsThread(m_sourceUrl, m_fileName, + auto* thread = new MmsThread(m_sourceUrl, m_fileName, iterator.value(), iterator.key()); m_threadList.append(thread); connect(thread, SIGNAL(finished()), this, SLOT(slotThreadFinish())); @@ -133,14 +133,14 @@ if(m_prevDownloadedSizes.size() > 10) m_prevDownloadedSizes.removeFirst(); - emit signSpeed(speed); + Q_EMIT signSpeed(speed); serialization(); } void MmsDownload::stopTransfer() { - /** Here only is called thread->stop() because when the thread finish it emit a signal + /** Here only is called thread->stop() because when the thread finish it Q_EMIT a signal * and slotThreadFinish(); is called where the thread is delete calling deleteLater(); and * m_threadList is cleaning using removeAll(). */ @@ -158,7 +158,7 @@ void MmsDownload::slotThreadFinish() { - MmsThread* thread = qobject_cast(QObject::sender()); + auto* thread = qobject_cast(QObject::sender()); m_threadList.removeAll(thread); thread->deleteLater(); @@ -170,7 +170,7 @@ void MmsDownload::slotRead(int reading, int thread_end, int thread_in) { - /** We update the status of the thread in the map and emit a signal for update the download + /** We update the status of the thread in the map and Q_EMIT a signal for update the download * speed. */ if (thread_in == thread_end) { @@ -179,15 +179,15 @@ m_mapEndIni[thread_end] = thread_in; } m_downloadedSize += reading; - emit signDownloaded(m_downloadedSize); + Q_EMIT signDownloaded(m_downloadedSize); } void MmsDownload::slotIsThreadConnected(bool connected) { - /** All threads emit a signal connected with this slot, if they get connected successfully + /** All threads Q_EMIT a signal connected with this slot, if they get connected successfully * the value of "connected" will be true, and will be false if they can't connected. When all * the threads emitted the signal the amount of m_connectionsSuccefusslly and m_connectionsFails - * will be equal to m_amountThreads and we emit a signal to restart the download in + * will be equal to m_amountThreads and we Q_EMIT a signal to restart the download in * mmstransfer using the amount of connections succefusslly connected. */ if (connected) { @@ -197,7 +197,7 @@ } if ((m_connectionsFails != 0) && (m_connectionsFails + m_connectionsSuccessfully == m_amountThreads)) { - emit signRestartDownload(m_connectionsSuccessfully); + Q_EMIT signRestartDownload(m_connectionsSuccessfully); } } diff -Nru kget-20.12.3/transfer-plugins/mmsthreads/mmsdownload.h kget-21.04.0/transfer-plugins/mmsthreads/mmsdownload.h --- kget-20.12.3/transfer-plugins/mmsthreads/mmsdownload.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/mmsthreads/mmsdownload.h 2021-04-14 15:24:35.000000000 +0000 @@ -42,13 +42,13 @@ void stopTransfer(); int threadsAlive(); - public slots: + public Q_SLOTS: void slotThreadFinish(); void slotRead(int reading, int thread_end, int thead_ini); void slotSpeedChanged(); void slotIsThreadConnected(bool connected); - signals: + Q_SIGNALS: void signBrokenUrl(); void signNotAllowMultiDownload(); void signThreadFinish(); diff -Nru kget-20.12.3/transfer-plugins/mmsthreads/mmsthread.cpp kget-21.04.0/transfer-plugins/mmsthreads/mmsthread.cpp --- kget-20.12.3/transfer-plugins/mmsthreads/mmsthread.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/mmsthreads/mmsthread.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -42,7 +42,7 @@ mms = mmsx_connect(NULL, NULL, qstrdup(m_sourceUrl.toLatin1()) , 1e6); if (mms) { m_locker.lock(); - emit signIsConnected(true); + Q_EMIT signIsConnected(true); m_locker.unlock(); /** If the connections result successful it start the download.*/ mmsx_seek(nullptr, mms, m_begin, 0); @@ -52,7 +52,7 @@ char data[var]; readed = mmsx_read(nullptr, mms, data, var); m_locker.lock(); - emit signReading(var, m_end, m_begin = m_end); + Q_EMIT signReading(var, m_end, m_begin = m_end); /** Writing the readed to the file */ if (readed) { file.write(data, readed); @@ -62,7 +62,7 @@ char data[1024]; readed = mmsx_read(nullptr, mms, data, 1024); m_locker.lock(); - emit signReading(1024, m_end, m_begin += 1024); + Q_EMIT signReading(1024, m_end, m_begin += 1024); /** Writing the readed to the file */ if (readed) { file.write(data, readed); @@ -72,13 +72,13 @@ } file.close(); mmsx_close(mms); - quit(); // NOTE: Keep "quit()" here, if not then the thread never emit the signal finish. + quit(); // NOTE: Keep "quit()" here, if not then the thread never Q_EMIT the signal finish. } else { /** If the connections not result successfully then stop all the download*/ m_locker.lock(); - emit signIsConnected(false); + Q_EMIT signIsConnected(false); m_locker.unlock(); - quit(); // NOTE: Keep "quit()" here, if not then the thread never emit the signal finish. + quit(); // NOTE: Keep "quit()" here, if not then the thread never Q_EMIT the signal finish. } exec(); } diff -Nru kget-20.12.3/transfer-plugins/mmsthreads/mmsthread.h kget-21.04.0/transfer-plugins/mmsthreads/mmsthread.h --- kget-20.12.3/transfer-plugins/mmsthreads/mmsthread.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/mmsthreads/mmsthread.h 2021-04-14 15:24:35.000000000 +0000 @@ -42,7 +42,7 @@ QMutex m_locker; bool m_download; - signals: + Q_SIGNALS: void signReading(int data, int m_end, int m_begin); void signIsConnected(bool connected); }; diff -Nru kget-20.12.3/transfer-plugins/mmsthreads/mmstransfer.cpp kget-21.04.0/transfer-plugins/mmsthreads/mmstransfer.cpp --- kget-20.12.3/transfer-plugins/mmsthreads/mmstransfer.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/mmsthreads/mmstransfer.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -189,7 +189,7 @@ { /** Here is called stop() for stop the download, set a new amount of thread * and set m_retryDownload = true for restart the download when mmsdownload is finish and - * emit a signal connected with MmsTransfer::slotResult(), see in MmsTransfer::slotResult() + * Q_EMIT a signal connected with MmsTransfer::slotResult(), see in MmsTransfer::slotResult() * for understand when its started again the download. */ stop(); diff -Nru kget-20.12.3/transfer-plugins/mmsthreads/mmstransfer.h kget-21.04.0/transfer-plugins/mmsthreads/mmstransfer.h --- kget-20.12.3/transfer-plugins/mmsthreads/mmstransfer.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/mmsthreads/mmstransfer.h 2021-04-14 15:24:35.000000000 +0000 @@ -38,12 +38,12 @@ const QDomElement * e = nullptr); ~MmsTransfer() override; - public slots: + public Q_SLOTS: void start() override; void stop() override; void deinit(Transfer::DeleteOptions options) override; - private slots: + private Q_SLOTS: void slotResult(); void slotTotalSize(qulonglong size); void slotProcessedSizeAndPercent(qulonglong size); diff -Nru kget-20.12.3/transfer-plugins/multisegmentkio/CMakeLists.txt kget-21.04.0/transfer-plugins/multisegmentkio/CMakeLists.txt --- kget-20.12.3/transfer-plugins/multisegmentkio/CMakeLists.txt 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/multisegmentkio/CMakeLists.txt 2021-04-14 15:24:35.000000000 +0000 @@ -17,7 +17,7 @@ target_link_libraries(kget_multisegkiofactory kgetcore) install(TARGETS kget_multisegkiofactory DESTINATION ${KGET_PLUGIN_INSTALL_DIR}) -install(FILES kget_multisegkiofactory.kcfg DESTINATION ${KCFG_INSTALL_DIR}) +install(FILES kget_multisegkiofactory.kcfg DESTINATION ${KDE_INSTALL_KCFGDIR}) ###Build KCM-Module set(kcm_kget_multisegkiofactory_PART_SRCS @@ -32,6 +32,6 @@ kconfig_add_kcfg_files(kcm_kget_multisegkiofactory_PART_SRCS multisegkiosettings.kcfgc) add_library(kcm_kget_multisegkiofactory MODULE ${kcm_kget_multisegkiofactory_PART_SRCS}) target_link_libraries(kcm_kget_multisegkiofactory KF5::I18n KF5::ConfigWidgets) -install(TARGETS kcm_kget_multisegkiofactory DESTINATION ${PLUGIN_INSTALL_DIR}) +install(TARGETS kcm_kget_multisegkiofactory DESTINATION ${KDE_INSTALL_PLUGINDIR}) -install(FILES kget_multisegkiofactory_config.desktop DESTINATION ${SERVICES_INSTALL_DIR}) +install(FILES kget_multisegkiofactory_config.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR}) diff -Nru kget-20.12.3/transfer-plugins/multisegmentkio/dlgmultisegkio.h kget-21.04.0/transfer-plugins/multisegmentkio/dlgmultisegkio.h --- kget-20.12.3/transfer-plugins/multisegmentkio/dlgmultisegkio.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/multisegmentkio/dlgmultisegkio.h 2021-04-14 15:24:35.000000000 +0000 @@ -22,7 +22,7 @@ explicit DlgSettingsWidget(QWidget * parent = nullptr, const QVariantList &args = QVariantList()); ~DlgSettingsWidget() override; -public slots: +public Q_SLOTS: void save() override; void load() override; diff -Nru kget-20.12.3/transfer-plugins/multisegmentkio/multisegkiodatasource.cpp kget-21.04.0/transfer-plugins/multisegmentkio/multisegkiodatasource.cpp --- kget-20.12.3/transfer-plugins/multisegmentkio/multisegkiodatasource.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/multisegmentkio/multisegkiodatasource.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -72,7 +72,7 @@ void MultiSegKioDataSource::addSegments(const QPair &segmentSize, const QPair &segmentRange) { - Segment *segment = new Segment(m_sourceUrl, segmentSize, segmentRange, this); + auto *segment = new Segment(m_sourceUrl, segmentSize, segmentRange, this); m_segments.append(segment); connect(segment, &Segment::canResume, this, &MultiSegKioDataSource::slotCanResume); @@ -91,7 +91,7 @@ void MultiSegKioDataSource::slotUrlChanged(const QUrl &url) { if (m_sourceUrl != url) { - emit urlChanged(m_sourceUrl, url); + Q_EMIT urlChanged(m_sourceUrl, url); m_sourceUrl = url; } } @@ -106,7 +106,7 @@ void MultiSegKioDataSource::slotSpeed(ulong downloadSpeed) { m_speed = downloadSpeed; - emit speed(m_speed); + Q_EMIT speed(m_speed); } void MultiSegKioDataSource::slotFinishedSegment(Segment *segment, int segmentNum, bool connectionFinished) @@ -115,7 +115,7 @@ m_segments.removeAll(segment); segment->deleteLater(); } - emit finishedSegment(this, segmentNum, connectionFinished); + Q_EMIT finishedSegment(this, segmentNum, connectionFinished); } void MultiSegKioDataSource::setSupposedSize(KIO::filesize_t supposedSize) @@ -134,14 +134,14 @@ //findFileSize was called if ((range.first != -1) && (range.second != -1)) { - emit foundFileSize(this, size, range); + Q_EMIT foundFileSize(this, size, range); } //the filesize is not what it should be, maybe using a wrong mirror if (m_size && m_supposedSize && (m_size != m_supposedSize)) { qCDebug(KGET_DEBUG) << "Size does not match for" << m_sourceUrl << this; - emit broken(this, WrongDownloadSize); + Q_EMIT broken(this, WrongDownloadSize); } } @@ -233,10 +233,10 @@ m_segments.removeAll(segment); segment->deleteLater(); - emit log(errorText, logLevel); + Q_EMIT log(errorText, logLevel); if (m_segments.isEmpty()) { qCDebug(KGET_DEBUG) << this << "has broken segments."; - emit brokenSegments(this, range); + Q_EMIT brokenSegments(this, range); } else { //decrease the number of maximum parallel downloads, maybe the server does not support so many connections if (m_parallelSegments > 1) { @@ -244,7 +244,7 @@ } qCDebug(KGET_DEBUG) << this << "reducing connections to" << m_parallelSegments << "and freeing range of segments" << range; if (!tryMerge(size, range)) { - emit freeSegments(this, range); + Q_EMIT freeSegments(this, range); } } } @@ -252,7 +252,7 @@ void MultiSegKioDataSource::slotFinishedDownload(KIO::filesize_t size) { stop(); - emit finishedDownload(this, size); + Q_EMIT finishedDownload(this, size); } void MultiSegKioDataSource::slotRestartBrokenSegment() diff -Nru kget-20.12.3/transfer-plugins/multisegmentkio/segment.cpp kget-21.04.0/transfer-plugins/multisegmentkio/segment.cpp --- kget-20.12.3/transfer-plugins/multisegmentkio/segment.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/multisegmentkio/segment.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -99,7 +99,7 @@ void Segment::slotRedirection(KIO::Job* , const QUrl &url) { m_url = url; - emit urlChanged(url); + Q_EMIT urlChanged(url); } void Segment::slotCanResume( KIO::Job* job, KIO::filesize_t offset ) @@ -108,7 +108,7 @@ Q_UNUSED(offset) qCDebug(KGET_DEBUG); m_canResume = true; - emit canResume(); + Q_EMIT canResume(); } void Segment::slotTotalSize(KJob *job, qulonglong size) @@ -130,10 +130,10 @@ m_currentSegSize = (numSegments == 1 ? m_segSize.second : m_segSize.first); m_totalBytesLeft = size; - emit totalSize(size, qMakePair(m_currentSegment, m_endSegment)); + Q_EMIT totalSize(size, qMakePair(m_currentSegment, m_endSegment)); m_findFilesize = false; } else { - emit totalSize(size, qMakePair(-1, -1)); + Q_EMIT totalSize(size, qMakePair(-1, -1)); } } @@ -194,7 +194,7 @@ return; } if (job->error() && (m_status == Running)) { - emit error(this, job->errorString(), Transfer::Log_Error); + Q_EMIT error(this, job->errorString(), Transfer::Log_Error); } } @@ -207,7 +207,7 @@ stopTransfer(); setStatus(Killed, false ); const QString errorText = KIO::buildErrorString(KIO::ERR_CANNOT_RESUME, m_url.toString()); - emit error(this, errorText, Transfer::Log_Warning); + Q_EMIT error(this, errorText, Transfer::Log_Warning); return; } @@ -242,7 +242,7 @@ } bool worked = false; - emit data(m_offset, m_buffer, worked); + Q_EMIT data(m_offset, m_buffer, worked); if (worked) { m_currentSegSize -= m_buffer.size(); @@ -265,7 +265,7 @@ //m_currentSegSize being smaller than 1 means that at least one segment has been finished while (m_currentSegSize <= 0 && !finished) { finished = (m_currentSegment == m_endSegment); - emit finishedSegment(this, m_currentSegment, finished); + Q_EMIT finishedSegment(this, m_currentSegment, finished); if (!finished) { ++m_currentSegment; @@ -286,14 +286,14 @@ if (writeBuffer()) { m_errorCount = 0; if (m_findFilesize) { - emit finishedDownload(m_bytesWritten); + Q_EMIT finishedDownload(m_bytesWritten); } return; } if (++m_errorCount >= 100) { qWarning() << "Failed to write to the file:" << m_url << this; - emit error(this, i18n("Failed to write to the file."), Transfer::Log_Error); + Q_EMIT error(this, i18n("Failed to write to the file."), Transfer::Log_Error); } else { qCDebug(KGET_DEBUG) << "Wait 50 msec:" << this; QTimer::singleShot(50, this, &Segment::slotWriteRest); @@ -304,7 +304,7 @@ { m_status = stat; if (doEmit) - emit statusChanged(this); + Q_EMIT statusChanged(this); } QPair Segment::assignedSegments() const diff -Nru kget-20.12.3/transfer-plugins/multisegmentkio/transfermultisegkio.cpp kget-21.04.0/transfer-plugins/multisegmentkio/transfermultisegkio.cpp --- kget-20.12.3/transfer-plugins/multisegmentkio/transfermultisegkio.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/multisegmentkio/transfermultisegkio.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -266,7 +266,7 @@ void TransferMultiSegKio::slotStatResult(KJob* kioJob) { - KIO::StatJob * statJob = qobject_cast(kioJob); + auto * statJob = qobject_cast(kioJob); if (!statJob->error()) { const KIO::UDSEntry entryResult = statJob->statResult(); diff -Nru kget-20.12.3/transfer-plugins/multisegmentkio/transfermultisegkio.h kget-21.04.0/transfer-plugins/multisegmentkio/transfermultisegkio.h --- kget-20.12.3/transfer-plugins/multisegmentkio/transfermultisegkio.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/transfer-plugins/multisegmentkio/transfermultisegkio.h 2021-04-14 15:24:35.000000000 +0000 @@ -63,7 +63,7 @@ FileModel *fileModel() override; - public slots: + public Q_SLOTS: bool setNewDestination(const QUrl &newDestination); // --- Job virtual functions --- void start() override; @@ -76,7 +76,7 @@ private: void createJob(); - private slots: + private Q_SLOTS: void slotDataSourceFactoryChange(Transfer::ChangesFlags change); void slotUpdateCapabilities(); void slotSearchUrls(const QList &urls); diff -Nru kget-20.12.3/ui/CMakeLists.txt kget-21.04.0/ui/CMakeLists.txt --- kget-20.12.3/ui/CMakeLists.txt 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/CMakeLists.txt 2021-04-14 15:24:35.000000000 +0000 @@ -2,4 +2,4 @@ add_subdirectory(pics) -install(FILES kgetui.rc DESTINATION ${KXMLGUI_INSTALL_DIR}/kget) +install(FILES kgetui.rc DESTINATION ${KDE_INSTALL_KXMLGUI5DIR}/kget) diff -Nru kget-20.12.3/ui/contextmenu.cpp kget-21.04.0/ui/contextmenu.cpp --- kget-20.12.3/ui/contextmenu.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/contextmenu.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -19,8 +19,8 @@ #include #include -#include -#include +#include +#include QMenu * ContextMenu::createTransferContextMenu(QList transfers, QWidget *parent) { @@ -40,7 +40,7 @@ // transfers.first()->m_transfer->factory() ); }*/ - QMenu *popup = new QMenu(parent); + auto *popup = new QMenu(parent); popup->addSection(transfers.first()->dest().fileName()); //Get the transfer factory actions QList actionList = transfers.first()->factoryActions(); @@ -101,7 +101,7 @@ if (!handler) return nullptr; - QMenu * popup = new QMenu(parent); + auto * popup = new QMenu(parent); popup->addSection(handler->name()); popup->addActions(handler->actions()); diff -Nru kget-20.12.3/ui/droptarget.cpp kget-21.04.0/ui/droptarget.cpp --- kget-20.12.3/ui/droptarget.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/droptarget.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -87,7 +87,7 @@ popupMenu->addSeparator(); popupMenu->addAction( mw->actionCollection()->action("preferences") ); - QAction *quitAction = new QAction(this); + auto *quitAction = new QAction(this); quitAction->setText(i18n("Quit KGet")); quitAction->setIcon(QIcon::fromTheme("system-shutdown")); connect(quitAction, SIGNAL(triggered()), mw, SLOT(slotQuit())); diff -Nru kget-20.12.3/ui/droptarget.h kget-21.04.0/ui/droptarget.h --- kget-20.12.3/ui/droptarget.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/droptarget.h 2021-04-14 15:24:35.000000000 +0000 @@ -57,7 +57,7 @@ // paint the drop target void paintEvent(QPaintEvent*) override; -private slots: +private Q_SLOTS: void toggleSticky(); void toggleMinimizeRestore(); void slotStartStopToggled( bool ); @@ -69,14 +69,14 @@ void slotClose(); private: - QMenu * popupMenu; - MainWindow * parentWidget; - QTimer * animTimer; - QTimer * popupTimer; + QMenu * popupMenu = nullptr; + MainWindow * parentWidget = nullptr; + QTimer * animTimer = nullptr; + QTimer * popupTimer = nullptr; QPixmap cachedPixmap; - QAction * pop_sticky; - QAction * pop_show; + QAction * pop_sticky = nullptr; + QAction * pop_show = nullptr; QPoint position; diff -Nru kget-20.12.3/ui/groupsettingsdialog.h kget-21.04.0/ui/groupsettingsdialog.h --- kget-20.12.3/ui/groupsettingsdialog.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/groupsettingsdialog.h 2021-04-14 15:24:35.000000000 +0000 @@ -25,11 +25,11 @@ QSize sizeHint() const override; - private slots: + private Q_SLOTS: void save(); private: - TransferGroupHandler* m_group; + TransferGroupHandler* m_group = nullptr; Ui::GroupSettingsDialog ui; }; diff -Nru kget-20.12.3/ui/history/rangetreewidget.cpp kget-21.04.0/ui/history/rangetreewidget.cpp --- kget-20.12.3/ui/history/rangetreewidget.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/history/rangetreewidget.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -32,7 +32,7 @@ public: Range() { - }; + } bool check(const QVariant &data) const { @@ -92,7 +92,7 @@ setModel(m_proxyModel); // delegate for the range title - RangeTreeWidgetItemDelegate *delegate = new RangeTreeWidgetItemDelegate(this); + auto *delegate = new RangeTreeWidgetItemDelegate(this); setItemDelegate(delegate); } @@ -292,8 +292,8 @@ QStyle *style = opt.widget ? opt.widget->style() : QApplication::style(); style->drawPrimitive(QStyle::PE_PanelItemViewItem, &opt, painter, opt.widget); - const QSortFilterProxyModel *model = static_cast (index.model()); - const QStandardItemModel *s_model = static_cast (model->sourceModel()); + const auto *model = static_cast (index.model()); + const auto *s_model = static_cast (model->sourceModel()); QStandardItem *item = s_model->itemFromIndex(model->mapToSource(index)); // draw the range title painter->save(); diff -Nru kget-20.12.3/ui/history/rangetreewidget.h kget-21.04.0/ui/history/rangetreewidget.h --- kget-20.12.3/ui/history/rangetreewidget.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/history/rangetreewidget.h 2021-04-14 15:24:35.000000000 +0000 @@ -66,7 +66,7 @@ QStandardItem *currentItem(int column = -1); QStandardItem *item(const QModelIndex &index = QModelIndex(), int column = 0); -public slots: +public Q_SLOTS: void removeRow(int row, const QModelIndex &parent = QModelIndex()); /** * Filters the data throws the qsortfilterproxymodel diff -Nru kget-20.12.3/ui/history/transferhistorycategorizeddelegate.cpp kget-21.04.0/ui/history/transferhistorycategorizeddelegate.cpp --- kget-20.12.3/ui/history/transferhistorycategorizeddelegate.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/history/transferhistorycategorizeddelegate.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -9,7 +9,7 @@ */ #include "transferhistorycategorizeddelegate.h" -#include +#include #include #include diff -Nru kget-20.12.3/ui/history/transferhistorycategorizedview.cpp kget-21.04.0/ui/history/transferhistorycategorizedview.cpp --- kget-20.12.3/ui/history/transferhistorycategorizedview.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/history/transferhistorycategorizedview.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -10,9 +10,9 @@ #include "transferhistorycategorizedview.h" #include "ui/history/transferhistoryitemdelegate.h" -#include -#include -#include +#include +#include +#include #include #include @@ -26,13 +26,13 @@ : QWidget(parent) { // the widget layout - QGridLayout *layout = new QGridLayout(); + auto *layout = new QGridLayout(this); // initialize the model m_model = new QStandardItemModel(); // the kcategoryizedview list - TransferHistoryItemDelegate *item_delegate = new TransferHistoryItemDelegate(this); + auto *item_delegate = new TransferHistoryItemDelegate(this); m_view = new KCategorizedView(this); m_drawer = new KCategoryDrawer(m_view); m_view->setCategoryDrawer(m_drawer); @@ -54,7 +54,6 @@ connect(item_delegate, &TransferHistoryItemDelegate::deletedTransfer, this, &TransferHistoryCategorizedView::deletedTransfer); connect(m_view, &KCategorizedView::doubleClicked, this, &TransferHistoryCategorizedView::doubleClicked); - setLayout(layout); } TransferHistoryCategorizedView::~TransferHistoryCategorizedView() @@ -63,7 +62,7 @@ void TransferHistoryCategorizedView::addData(const QDate &date, const QString &url, const QString &dest, int size) { - QStandardItem *item = new QStandardItem(url); + auto *item = new QStandardItem(url); item->setData(QVariant(size), TransferHistoryCategorizedDelegate::RoleSize); item->setData(QVariant(url), TransferHistoryCategorizedDelegate::RoleUrl); item->setData(QVariant(dest), TransferHistoryCategorizedDelegate::RoleDest); diff -Nru kget-20.12.3/ui/history/transferhistorycategorizedview.h kget-21.04.0/ui/history/transferhistorycategorizedview.h --- kget-20.12.3/ui/history/transferhistorycategorizedview.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/history/transferhistorycategorizedview.h 2021-04-14 15:24:35.000000000 +0000 @@ -33,17 +33,17 @@ void addData(const QDate &date, const QString &url, const QString &dest, int size); QVariant data(const QModelIndex &index, TransferHistoryCategorizedDelegate::AlternativeRoles role) const; -signals: +Q_SIGNALS: void deletedTransfer(const QString &url, const QModelIndex &index); void doubleClicked(const QModelIndex &); -public slots: +public Q_SLOTS: void clear(); void setFilterRegExp(const QString &text); void setCategorizedDelegate(TransferHistoryCategorizedDelegate *m_delegate); void removeRow(int row, const QModelIndex &parent = QModelIndex()); -private slots: +private Q_SLOTS: void update(); private: diff -Nru kget-20.12.3/ui/history/transferhistory.cpp kget-21.04.0/ui/history/transferhistory.cpp --- kget-20.12.3/ui/history/transferhistory.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/history/transferhistory.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -50,7 +50,7 @@ setAttribute(Qt::WA_DeleteOnClose); setWindowTitle(i18n("Transfer History")); //Setup Ui-Parts from Designer - QWidget *mainWidget = new QWidget(this); + auto *mainWidget = new QWidget(this); setupUi(mainWidget); @@ -74,7 +74,7 @@ vboxLayout->addWidget(m_view); vboxLayout->addWidget(m_progressBar); - QDialogButtonBox * buttonBox = new QDialogButtonBox(mainWidget); + auto * buttonBox = new QDialogButtonBox(mainWidget); buttonBox->clear(); buttonBox->addButton(QDialogButtonBox::Close); vboxLayout->addWidget(buttonBox); @@ -118,7 +118,7 @@ void TransferHistory::slotDeleteTransfer() { if (!m_iconModeEnabled) { - RangeTreeWidget *range_view = qobject_cast (m_view); + auto *range_view = qobject_cast (m_view); slotDeleteTransfer(range_view->currentItem(0)->text()); @@ -167,9 +167,9 @@ Q_UNUSED(event) if (!m_iconModeEnabled) { - RangeTreeWidget *range_view = qobject_cast (m_view); + auto *range_view = qobject_cast (m_view); if(range_view->currentIndex().parent().isValid()) { - QMenu *contextMenu = new QMenu(this); + auto *contextMenu = new QMenu(this); contextMenu->addAction(actionDownload); contextMenu->addAction(actionDelete_Selected); @@ -185,11 +185,11 @@ QString file; if (!m_iconModeEnabled) { - RangeTreeWidget *range_view = qobject_cast (m_view); + auto *range_view = qobject_cast (m_view); file = range_view->currentItem(1)->text(); } else { - TransferHistoryCategorizedView *categorized_view = qobject_cast (m_view); + auto *categorized_view = qobject_cast (m_view); file = categorized_view->data(index, TransferHistoryCategorizedDelegate::RoleDest).toString(); } @@ -227,7 +227,7 @@ { m_rangeType = type; if (m_iconModeEnabled) { - TransferHistoryCategorizedView *cat_view = qobject_cast (m_view); + auto *cat_view = qobject_cast (m_view); cat_view->clear(); switch(type) { @@ -241,12 +241,12 @@ cat_view->setCategorizedDelegate(new HostCategorizedDelegate()); } } else { - RangeTreeWidget *range_view = qobject_cast (m_view); - QFontMetrics *font = new QFontMetrics(QFontDatabase::systemFont(QFontDatabase::GeneralFont)); + auto *range_view = qobject_cast (m_view); + auto *font = new QFontMetrics(QFontDatabase::systemFont(QFontDatabase::GeneralFont)); range_view->clear(); range_view->setLabels(QStringList() << i18n("Source File") << i18n("Destination") << i18n("Time") << i18n("File Size") << i18n("Status")); - range_view->setRangeDelegate(0); + range_view->setRangeDelegate(nullptr); switch(m_rangeType) { diff -Nru kget-20.12.3/ui/history/transferhistory.h kget-21.04.0/ui/history/transferhistory.h --- kget-20.12.3/ui/history/transferhistory.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/history/transferhistory.h 2021-04-14 15:24:35.000000000 +0000 @@ -61,10 +61,10 @@ bool m_iconModeEnabled; TransferHistoryStore *m_store; - public slots: + public Q_SLOTS: void slotDeleteTransfer(const QString &url, const QModelIndex &index = QModelIndex()); - private slots: + private Q_SLOTS: void slotDeleteTransfer(); void slotAddTransfers(); void slotClear(); diff -Nru kget-20.12.3/ui/history/transferhistoryitemdelegate.cpp kget-21.04.0/ui/history/transferhistoryitemdelegate.cpp --- kget-20.12.3/ui/history/transferhistoryitemdelegate.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/history/transferhistoryitemdelegate.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -87,7 +87,7 @@ QStyle *style = opt.widget ? opt.widget->style() : QApplication::style(); style->drawPrimitive(QStyle::PE_PanelItemViewItem, &opt, painter, opt.widget); - const QAbstractItemModel *model = static_cast (index.model()); + const auto *model = static_cast (index.model()); QUrl url(model->data(index, TransferHistoryCategorizedDelegate::RoleUrl).toString()); QString name = url.path().mid(url.path().lastIndexOf("/") + 1); const QString iconName = KIO::iconNameForUrl(QUrl::fromLocalFile(model->data(index, TransferHistoryCategorizedDelegate::RoleDest).toString())); @@ -163,13 +163,13 @@ Q_UNUSED(option) Q_UNUSED(model) - QMouseEvent * mouseEvent = dynamic_cast(event); + auto * mouseEvent = dynamic_cast(event); if(mouseEvent && index.isValid()) { if(mouseEvent->button() == Qt::RightButton) { m_selectedIndex = index; - QMenu *contextMenu = new QMenu(); + auto *contextMenu = new QMenu(); contextMenu->addAction(m_actionDownload); contextMenu->addAction(m_actionDelete_Selected); contextMenu->addAction(m_openFile); @@ -184,14 +184,14 @@ void TransferHistoryItemDelegate::slotOpenFile() { - const QAbstractItemModel *model = static_cast (m_selectedIndex.model()); + const auto *model = static_cast (m_selectedIndex.model()); new KRun(QUrl::fromLocalFile(model->data(m_selectedIndex, TransferHistoryCategorizedDelegate::RoleDest).toString()), m_view, true); } void TransferHistoryItemDelegate::slotDownload() { - const QAbstractItemModel *model = static_cast (m_selectedIndex.model()); + const auto *model = static_cast (m_selectedIndex.model()); NewTransferDialogHandler::showNewTransferDialog(QUrl(model->data(m_selectedIndex, TransferHistoryCategorizedDelegate::RoleUrl).toString())); @@ -199,9 +199,9 @@ void TransferHistoryItemDelegate::slotDeleteTransfer() { - const QAbstractItemModel *model = static_cast (m_selectedIndex.model()); + const auto *model = static_cast (m_selectedIndex.model()); - emit deletedTransfer(model->data(m_selectedIndex, TransferHistoryCategorizedDelegate::RoleUrl).toString(), m_selectedIndex); + Q_EMIT deletedTransfer(model->data(m_selectedIndex, TransferHistoryCategorizedDelegate::RoleUrl).toString(), m_selectedIndex); } diff -Nru kget-20.12.3/ui/history/transferhistoryitemdelegate.h kget-21.04.0/ui/history/transferhistoryitemdelegate.h --- kget-20.12.3/ui/history/transferhistoryitemdelegate.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/history/transferhistoryitemdelegate.h 2021-04-14 15:24:35.000000000 +0000 @@ -32,10 +32,10 @@ bool editorEvent(QEvent * event, QAbstractItemModel * model, const QStyleOptionViewItem & option, const QModelIndex & index) override; -signals: +Q_SIGNALS: void deletedTransfer(const QString &url, const QModelIndex &index); -private slots: +private Q_SLOTS: void slotOpenFile(); void slotDownload(); void slotDeleteTransfer(); diff -Nru kget-20.12.3/ui/kgetui.rc kget-21.04.0/ui/kgetui.rc --- kget-20.12.3/ui/kgetui.rc 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/kgetui.rc 2021-04-14 15:24:35.000000000 +0000 @@ -1,5 +1,6 @@ - - + + + &File @@ -44,4 +45,4 @@ - + diff -Nru kget-20.12.3/ui/linkview/kget_linkview.cpp kget-21.04.0/ui/linkview/kget_linkview.cpp --- kget-20.12.3/ui/linkview/kget_linkview.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/linkview/kget_linkview.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -71,19 +71,19 @@ //creates pattern syntax menu for the text filter m_patternSyntaxMenu = new QMenu(i18nc("of a filter, e.g. RegExp or Wildcard", "Pattern Syntax"), this); - QAction *wildcardAction = new QAction(i18n("Escape Sequences"), this); + auto *wildcardAction = new QAction(i18n("Escape Sequences"), this); wildcardAction->setCheckable(true); wildcardAction->setChecked(Settings::linkViewFilterPatternSyntax() == Wildcard); - QAction *regExpAction = new QAction(i18n("Regular Expression"), this); + auto *regExpAction = new QAction(i18n("Regular Expression"), this); regExpAction->setCheckable(true); regExpAction->setChecked(Settings::linkViewFilterPatternSyntax() == RegExp); - QActionGroup *actionGroup = new QActionGroup(this); + auto *actionGroup = new QActionGroup(this); actionGroup->addAction(wildcardAction); actionGroup->addAction(regExpAction); m_patternSyntaxMenu->addActions(actionGroup->actions()); //Filter for name/url actions - QActionGroup *columnGroup = new QActionGroup(this); + auto *columnGroup = new QActionGroup(this); m_nameAction = new QAction(i18nc("name of a file", "Name"), this); m_nameAction->setCheckable(true); m_nameAction->setChecked(true); @@ -152,7 +152,7 @@ { ui.importWidget->setVisible(urlRequestVisible); - QStandardItemModel *model = new QStandardItemModel(0, 5, this); + auto *model = new QStandardItemModel(0, 5, this); model->setHeaderData(0, Qt::Horizontal, i18n("Auxiliary header")); model->setHeaderData(1, Qt::Horizontal, i18n("File Name")); @@ -194,7 +194,7 @@ mimeTypeComment = mt.comment(); } - QStandardItem *item = new QStandardItem(file); + auto *item = new QStandardItem(file); item->setIcon(QIcon::fromTheme(mimeTypeIcon)); item->setCheckable(true); item->setCheckState(Qt::Checked); @@ -202,7 +202,7 @@ item->setData(QVariant(mimeTypeName), Qt::UserRole); // used for filtering DownloadFilterType QList items; - QStandardItem *number = new QStandardItem(); + auto *number = new QStandardItem(); number->setData(model->rowCount(), Qt::DisplayRole);//used for initial sorting items << number; items << item; @@ -242,7 +242,7 @@ void KGetLinkView::slotStartLeech() { - QStandardItemModel *model = qobject_cast(m_proxyModel->sourceModel()); + auto *model = qobject_cast(m_proxyModel->sourceModel()); if (model) { QList urls; @@ -287,7 +287,7 @@ void KGetLinkView::selectionChanged() { - QStandardItemModel *model = qobject_cast(m_proxyModel->sourceModel()); + auto *model = qobject_cast(m_proxyModel->sourceModel()); if (model) { const int modelRowCount = model->rowCount(); @@ -342,7 +342,7 @@ void KGetLinkView::checkAll() { - QStandardItemModel *itemsModel = qobject_cast(m_proxyModel->sourceModel()); + auto *itemsModel = qobject_cast(m_proxyModel->sourceModel()); if (itemsModel) { for (int row = 0; row < m_proxyModel->rowCount(); row++) @@ -356,7 +356,7 @@ void KGetLinkView::uncheckAll() { - QStandardItemModel *itemsModel = qobject_cast(m_proxyModel->sourceModel()); + auto *itemsModel = qobject_cast(m_proxyModel->sourceModel()); if (itemsModel) { for (int row = 0; row < m_proxyModel->rowCount(); row++) @@ -370,7 +370,7 @@ void KGetLinkView::uncheckItem(const QModelIndex &index) { - QStandardItemModel *model = qobject_cast(m_proxyModel->sourceModel()); + auto *model = qobject_cast(m_proxyModel->sourceModel()); if (model) { if (index.column() != 0) @@ -383,7 +383,7 @@ void KGetLinkView::slotCheckSelected() { - QStandardItemModel *model = qobject_cast(m_proxyModel->sourceModel()); + auto *model = qobject_cast(m_proxyModel->sourceModel()); if (model) { foreach(const QModelIndex &index, ui.treeView->selectionModel()->selectedIndexes()) @@ -398,7 +398,7 @@ void KGetLinkView::slotInvertSelection() { - QStandardItemModel *itemsModel = qobject_cast(m_proxyModel->sourceModel()); + auto *itemsModel = qobject_cast(m_proxyModel->sourceModel()); if (itemsModel) { for (int row = 0; row < m_proxyModel->rowCount(); row++) diff -Nru kget-20.12.3/ui/linkview/kget_linkview.h kget-21.04.0/ui/linkview/kget_linkview.h --- kget-20.12.3/ui/linkview/kget_linkview.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/linkview/kget_linkview.h 2021-04-14 15:24:35.000000000 +0000 @@ -34,10 +34,10 @@ void setPageUrl( const QString& url ); void importUrl(const QString &url = QString()); -signals: +Q_SIGNALS: void leechUrls( const QList& urls ); -private slots: +private Q_SLOTS: void slotMimeTypeChanged(int index); void slotFilterModeChanged(int index); void slotFilterColumn(QAction*); diff -Nru kget-20.12.3/ui/linkview/kget_sortfilterproxymodel.h kget-21.04.0/ui/linkview/kget_sortfilterproxymodel.h --- kget-20.12.3/ui/linkview/kget_sortfilterproxymodel.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/linkview/kget_sortfilterproxymodel.h 2021-04-14 15:24:35.000000000 +0000 @@ -48,7 +48,7 @@ void setFilterColumn(int column); bool showWebContent() const; - public slots: + public Q_SLOTS: void setShowWebContent(bool show); void setShowWebContent(int show); diff -Nru kget-20.12.3/ui/metalinkcreator/dragdlg.cpp kget-21.04.0/ui/metalinkcreator/dragdlg.cpp --- kget-20.12.3/ui/metalinkcreator/dragdlg.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/metalinkcreator/dragdlg.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -39,18 +39,18 @@ m_urlWidget->init(m_resources, countrySort); ui.urlLayout->addWidget(m_urlWidget->widget()); - QWidget *data = new QWidget(this); + auto *data = new QWidget(this); uiData.setupUi(data); ui.dataLayout->addWidget(data); - QVBoxLayout *layout = new QVBoxLayout; + auto *layout = new QVBoxLayout; QStringList verifierTypes = Verifier::supportedVerficationTypes(); verifierTypes.sort(); //NOTE only supports the types that are supported by the Metalink 4.0 specification -- "Hash Function Textual Names" foreach (const QString &type, verifierTypes) { if (type.contains("sha", Qt::CaseInsensitive) || type.contains("md5", Qt::CaseInsensitive)) { - QCheckBox *checkBox = new QCheckBox(type, this); + auto *checkBox = new QCheckBox(type, this); layout->addWidget(checkBox); m_checkBoxes.append(checkBox); } @@ -96,7 +96,7 @@ m_commonData->publisher.url = QUrl(uiData.pub_url->text()); m_commonData->languages << uiData.language->itemData(uiData.language->currentIndex()).toString(); - emit usedTypes(used, ui.partialChecksums->isChecked()); + Q_EMIT usedTypes(used, ui.partialChecksums->isChecked()); } diff -Nru kget-20.12.3/ui/metalinkcreator/dragdlg.h kget-21.04.0/ui/metalinkcreator/dragdlg.h --- kget-20.12.3/ui/metalinkcreator/dragdlg.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/metalinkcreator/dragdlg.h 2021-04-14 15:24:35.000000000 +0000 @@ -41,16 +41,16 @@ public: DragDlg(KGetMetalink::Resources *resources, KGetMetalink::CommonData *commonData, QSortFilterProxyModel *countrySort, QSortFilterProxyModel *languageSort, QWidget *parent = nullptr); - signals: + Q_SIGNALS: /** * The types the user want to be checked and if partial checksums should be created * @note emitted whenever the dialog is closed, so might be empty */ void usedTypes(const QStringList &types, bool createPartial); - private slots: + private Q_SLOTS: /** - * Called when the dialog is finished, to emit usedTypes + * Called when the dialog is finished, to Q_EMIT usedTypes */ void slotFinished(); diff -Nru kget-20.12.3/ui/metalinkcreator/filedlg.cpp kget-21.04.0/ui/metalinkcreator/filedlg.cpp --- kget-20.12.3/ui/metalinkcreator/filedlg.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/metalinkcreator/filedlg.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -51,7 +51,7 @@ ui.urlLayout->addWidget(m_urlWidget->widget()); connect(m_urlWidget, &UrlWidget::urlsChanged, this, &FileDlg::slotUpdateOkButton); - QWidget *data = new QWidget(this); + auto *data = new QWidget(this); uiData.setupUi(data); ui.dataLayout->addWidget(data); @@ -158,7 +158,7 @@ void FileDlg::slotAddHash() { - VerificationAddDlg *dialog = new VerificationAddDlg(m_verificationModel, this); + auto *dialog = new VerificationAddDlg(m_verificationModel, this); dialog->show(); } @@ -196,10 +196,10 @@ if (m_edit) { //the file has been edited - emit fileEdited(m_initialFileName, m_file->name); + Q_EMIT fileEdited(m_initialFileName, m_file->name); } else { //a new file should be added, not edited - emit addFile(); + Q_EMIT addFile(); } } diff -Nru kget-20.12.3/ui/metalinkcreator/filedlg.h kget-21.04.0/ui/metalinkcreator/filedlg.h --- kget-20.12.3/ui/metalinkcreator/filedlg.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/metalinkcreator/filedlg.h 2021-04-14 15:24:35.000000000 +0000 @@ -45,7 +45,7 @@ void addFile(); void fileEdited(const QString &oldFileName, const QString &newFileName); - private slots: + private Q_SLOTS: void slotUpdateOkButton(); void slotOkClicked(); diff -Nru kget-20.12.3/ui/metalinkcreator/filehandler.cpp kget-21.04.0/ui/metalinkcreator/filehandler.cpp --- kget-20.12.3/ui/metalinkcreator/filehandler.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/metalinkcreator/filehandler.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -115,7 +115,7 @@ } } if (!abort) { - emit fileResult(file); + Q_EMIT fileResult(file); } } mutex.lock(); @@ -209,7 +209,7 @@ { //all jobs finished if (m_jobs.isEmpty() && m_allJobsStarted && !m_files.isEmpty()) { - emit finished(); + Q_EMIT finished(); } } diff -Nru kget-20.12.3/ui/metalinkcreator/filehandler.h kget-21.04.0/ui/metalinkcreator/filehandler.h --- kget-20.12.3/ui/metalinkcreator/filehandler.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/metalinkcreator/filehandler.h 2021-04-14 15:24:35.000000000 +0000 @@ -45,7 +45,7 @@ void setData(const QList &files, const QStringList &types, bool createPartial, const KGetMetalink::Resources &tempResources, const KGetMetalink::CommonData &tempCommonData); - signals: + Q_SIGNALS: void fileResult(const KGetMetalink::File file); protected: @@ -78,17 +78,17 @@ */ QList takeFiles(); - public slots: + public Q_SLOTS: /** * The files the FileHandler should handle, the urls can also be urls to directories * then the files of these directories will be got recursively */ void slotFiles(const QList &files); - signals: + Q_SIGNALS: void finished(); - private slots: + private Q_SLOTS: void slotDirEntries(KIO::Job *job, const KIO::UDSEntryList &entries); /** diff -Nru kget-20.12.3/ui/metalinkcreator/generalwidget.h kget-21.04.0/ui/metalinkcreator/generalwidget.h --- kget-20.12.3/ui/metalinkcreator/generalwidget.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/metalinkcreator/generalwidget.h 2021-04-14 15:24:35.000000000 +0000 @@ -39,7 +39,7 @@ void load(const KGetMetalink::Metalink &metalink) const; void save(KGetMetalink::Metalink *metalink); - private slots: + private Q_SLOTS: /** * To correctly enable checkboxes */ diff -Nru kget-20.12.3/ui/metalinkcreator/metalinkcreator.cpp kget-21.04.0/ui/metalinkcreator/metalinkcreator.cpp --- kget-20.12.3/ui/metalinkcreator/metalinkcreator.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/metalinkcreator/metalinkcreator.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -58,7 +58,7 @@ event->acceptProposedAction(); if (!urls.isEmpty()) { - emit urlsDropped(urls); + Q_EMIT urlsDropped(urls); } } @@ -121,7 +121,7 @@ void MetalinkCreator::slotDelayedCreation() { - CountryModel *countryModel = new CountryModel(this); + auto *countryModel = new CountryModel(this); countryModel->setupModelData(); m_countrySort = new QSortFilterProxyModel(this); m_countrySort->setSourceModel(countryModel); @@ -170,7 +170,7 @@ void MetalinkCreator::createIntroduction() { - QWidget *widget = new QWidget(this); + auto *widget = new QWidget(this); uiIntroduction.setupUi(widget); uiIntroduction.save->setFilter("*.meta4|" + i18n("Metalink Version 4.0 file (*.meta4)") + "\n*.metalink|" + i18n("Metalink Version 3.0 file (*.metalink)")); @@ -203,7 +203,7 @@ m_handler = new DirectoryHandler(this); connect(m_handler, &DirectoryHandler::finished, this, &MetalinkCreator::slotOpenDragDlg); - FileWidget *widget = new FileWidget(this); + auto *widget = new FileWidget(this); uiFiles.setupUi(widget); m_filesModel = new QStandardItemModel(0, 1, this); @@ -233,7 +233,7 @@ { foreach (const KGetMetalink::File &file, metalink.files.files) { - QStandardItem *item = new QStandardItem(file.name); + auto *item = new QStandardItem(file.name); if (!file.resources.isValid()) { ++m_needUrlCount; @@ -264,7 +264,7 @@ void MetalinkCreator::slotAddFile() { - QStandardItem *item = new QStandardItem(m_tempFile.name); + auto *item = new QStandardItem(m_tempFile.name); m_filesModel->insertRow(m_filesModel->rowCount(), item); metalink.files.files.append(m_tempFile); m_tempFile.clear(); @@ -274,7 +274,7 @@ void MetalinkCreator::slotAddFile(const KGetMetalink::File &file) { - QStandardItem *item = new QStandardItem(file.name); + auto *item = new QStandardItem(file.name); if (!file.resources.isValid()) { ++m_needUrlCount; @@ -345,7 +345,7 @@ currentNames.append(m_filesModel->index(i, 0).data().toString()); } - FileDlg *fileDlg = new FileDlg(file, currentNames, m_countrySort, m_languageSort, this, edit); + auto *fileDlg = new FileDlg(file, currentNames, m_countrySort, m_languageSort, this, edit); fileDlg->setAttribute(Qt::WA_DeleteOnClose); fileDlg->setWindowModality(Qt::ApplicationModal); fileDlg->show(); @@ -373,7 +373,7 @@ { m_tempResources.clear(); m_tempCommonData.clear(); - DragDlg *dragDlg = new DragDlg(&m_tempResources, &m_tempCommonData, m_countrySort, m_languageSort, this); + auto *dragDlg = new DragDlg(&m_tempResources, &m_tempCommonData, m_countrySort, m_languageSort, this); dragDlg->setAttribute(Qt::WA_DeleteOnClose); dragDlg->show(); diff -Nru kget-20.12.3/ui/metalinkcreator/metalinkcreator.h kget-21.04.0/ui/metalinkcreator/metalinkcreator.h --- kget-20.12.3/ui/metalinkcreator/metalinkcreator.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/metalinkcreator/metalinkcreator.h 2021-04-14 15:24:35.000000000 +0000 @@ -46,7 +46,7 @@ public: FileWidget(QWidget *parent = nullptr); - signals: + Q_SIGNALS: void urlsDropped(const QList &files); protected: @@ -62,7 +62,7 @@ MetalinkCreator(QWidget *parent = nullptr); ~MetalinkCreator() override; - public slots: + public Q_SLOTS: /** * Adds m_tempFile to metalink and clears it for future reuse, also adds the * filename to the filemodel @@ -83,7 +83,7 @@ */ void slotHandleDropped(const QStringList &types, bool createPartial); - private slots: + private Q_SLOTS: /** * Creates the parts that take longer */ diff -Nru kget-20.12.3/ui/metalinkcreator/metalinker.cpp kget-21.04.0/ui/metalinkcreator/metalinker.cpp --- kget-20.12.3/ui/metalinkcreator/metalinker.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/metalinkcreator/metalinker.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -1287,7 +1287,7 @@ void KGetMetalink::MetalinkHttpParser::slotHeaderResult(KJob* kjob) { - KIO::Job* job = qobject_cast(kjob); + auto* job = qobject_cast(kjob); const QString httpHeaders = job ? job->queryMetaData("HTTP-Headers") : QString(); parseHeaders(httpHeaders); setMetalinkHSatus(); diff -Nru kget-20.12.3/ui/metalinkcreator/metalinker.h kget-21.04.0/ui/metalinkcreator/metalinker.h --- kget-20.12.3/ui/metalinkcreator/metalinker.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/metalinkcreator/metalinker.h 2021-04-14 15:24:35.000000000 +0000 @@ -68,7 +68,7 @@ class UrlText { public: - UrlText() {}; + UrlText() {} bool isEmpty() const {return name.isEmpty() && url.isEmpty();} @@ -409,7 +409,7 @@ QString* getEtag(); - private slots: + private Q_SLOTS: void slotHeaderResult(KJob* kjob); void checkMetalinkHttp(); void detectMime(KIO::Job * job, const QString & type); diff -Nru kget-20.12.3/ui/metalinkcreator/urlwidget.cpp kget-21.04.0/ui/metalinkcreator/urlwidget.cpp --- kget-20.12.3/ui/metalinkcreator/urlwidget.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/metalinkcreator/urlwidget.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -79,7 +79,7 @@ m_mirrorModel->addMirror(url.url, 0, url.priority, url.location); } - MirrorDelegate *delegate = new MirrorDelegate(m_countrySort, this); + auto *delegate = new MirrorDelegate(m_countrySort, this); ui.used_mirrors->setItemDelegate(delegate); } @@ -96,7 +96,7 @@ void UrlWidget::slotAddMirror() { - MirrorAddDlg *dialog = new MirrorAddDlg(m_mirrorModel, m_countrySort, m_widget); + auto *dialog = new MirrorAddDlg(m_mirrorModel, m_countrySort, m_widget); dialog->showItem(MirrorItem::Connections, false); dialog->show(); } diff -Nru kget-20.12.3/ui/metalinkcreator/urlwidget.h kget-21.04.0/ui/metalinkcreator/urlwidget.h --- kget-20.12.3/ui/metalinkcreator/urlwidget.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/metalinkcreator/urlwidget.h 2021-04-14 15:24:35.000000000 +0000 @@ -49,19 +49,19 @@ bool hasUrls() const; - signals: + Q_SIGNALS: void urlsChanged(); - private slots: + private Q_SLOTS: void slotUrlClicked(); void slotAddMirror(); void slotRemoveMirror(); private: - KGetMetalink::Resources *m_resources; - MirrorModel *m_mirrorModel; - MirrorProxyModel *m_proxy; - QSortFilterProxyModel *m_countrySort; + KGetMetalink::Resources *m_resources = nullptr; + MirrorModel *m_mirrorModel = nullptr; + MirrorProxyModel *m_proxy = nullptr; + QSortFilterProxyModel *m_countrySort = nullptr; QPointer m_widget; Ui::UrlWidget ui; }; diff -Nru kget-20.12.3/ui/mirror/mirrormodel.cpp kget-21.04.0/ui/mirror/mirrormodel.cpp --- kget-20.12.3/ui/mirror/mirrormodel.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/mirror/mirrormodel.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -49,20 +49,20 @@ { if (index.column() == MirrorItem::Url) { - KLineEdit *line = new KLineEdit(parent); + auto *line = new KLineEdit(parent); return line; } else if (index.column() == MirrorItem::Connections) { - QSpinBox *numConnections = new QSpinBox(parent); + auto *numConnections = new QSpinBox(parent); numConnections->setRange(0, 20); return numConnections; } else if (index.column() == MirrorItem::Priority) { - QSpinBox *priority = new QSpinBox(parent); + auto *priority = new QSpinBox(parent); priority->setRange(0, 999999); return priority; @@ -71,7 +71,7 @@ { if (m_countrySort) { - QComboBox *countrySort = new QComboBox(parent); + auto *countrySort = new QComboBox(parent); countrySort->setModel(m_countrySort); return countrySort; @@ -86,19 +86,19 @@ { if (index.isValid() && editor) { if (index.column() == MirrorItem::Url) { - KLineEdit *line = static_cast(editor); + auto *line = static_cast(editor); const QUrl url = index.data(Qt::EditRole).toUrl(); line->setUrl(url); } else if (index.column() == MirrorItem::Connections) { - QSpinBox *numConnections = static_cast(editor); + auto *numConnections = static_cast(editor); const int num = index.data(Qt::EditRole).toInt(); numConnections->setValue(num); } else if (index.column() == MirrorItem::Priority) { - QSpinBox *priority = static_cast(editor); + auto *priority = static_cast(editor); const int num = index.data(Qt::EditRole).toInt(); priority->setValue(num); } else if (index.column() == MirrorItem::Country) { - QComboBox *countrySort = static_cast(editor); + auto *countrySort = static_cast(editor); const QString countryCode = index.data(Qt::EditRole).toString(); const int indexCountrySort = countrySort->findData(countryCode); countrySort->setCurrentIndex(indexCountrySort); @@ -112,7 +112,7 @@ { if (index.column() == MirrorItem::Url) { - KLineEdit *line = static_cast(editor); + auto *line = static_cast(editor); if (!line->text().isEmpty()) { model->setData(index, line->text()); @@ -120,17 +120,17 @@ } else if (index.column() == MirrorItem::Connections) { - QSpinBox *numConnections = static_cast(editor); + auto *numConnections = static_cast(editor); model->setData(index, numConnections->value()); } else if (index.column() == MirrorItem::Priority) { - QSpinBox *priority = static_cast(editor); + auto *priority = static_cast(editor); model->setData(index, priority->value()); } else if (index.column() == MirrorItem::Country) { - QComboBox *countrySort = static_cast(editor); + auto *countrySort = static_cast(editor); const QString countryCode = countrySort->itemData(countrySort->currentIndex()).toString(); model->setData(index, countryCode); } @@ -428,7 +428,7 @@ const bool changed = m_data.at(index.row())->setData(index.column(), value, role); if (changed) { - emit dataChanged(index, index); + Q_EMIT dataChanged(index, index); } return changed; } @@ -471,9 +471,9 @@ } int index = rowCount(); - emit beginInsertRows(QModelIndex(), index, index); + Q_EMIT beginInsertRows(QModelIndex(), index, index); - MirrorItem *item = new MirrorItem; + auto *item = new MirrorItem; m_data.append(item); item->setData(MirrorItem::Used, Qt::Checked, Qt::CheckStateRole);//every newly added mirror is set to checked automatically item->setData(MirrorItem::Url, QVariant(url)); @@ -481,7 +481,7 @@ item->setData(MirrorItem::Priority, priority); item->setData(MirrorItem::Country, countryCode); - emit endInsertRows(); + Q_EMIT endInsertRows(); } void MirrorModel::setMirrors(const QHash > &mirrors) @@ -493,7 +493,7 @@ QHash >::const_iterator itEnd = mirrors.constEnd(); for (it = mirrors.constBegin(); it != itEnd; ++it) { - MirrorItem *item = new MirrorItem; + auto *item = new MirrorItem; item->setData(MirrorItem::Url, QVariant(it.key())); Qt::CheckState state = (*it).first ? Qt::Checked : Qt::Unchecked; item->setData(MirrorItem::Used, state, Qt::CheckStateRole); diff -Nru kget-20.12.3/ui/mirror/mirrormodel.h kget-21.04.0/ui/mirror/mirrormodel.h --- kget-20.12.3/ui/mirror/mirrormodel.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/mirror/mirrormodel.h 2021-04-14 15:24:35.000000000 +0000 @@ -43,7 +43,7 @@ QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const override; private: - QSortFilterProxyModel *m_countrySort; + QSortFilterProxyModel *m_countrySort = nullptr; }; class MirrorProxyModel : public QSortFilterProxyModel @@ -51,7 +51,7 @@ Q_OBJECT public: - MirrorProxyModel(QObject *parent = 0); + MirrorProxyModel(QObject *parent = nullptr); protected: bool lessThan(const QModelIndex &left, const QModelIndex &right) const override; diff -Nru kget-20.12.3/ui/mirror/mirrorsettings.cpp kget-21.04.0/ui/mirror/mirrorsettings.cpp --- kget-20.12.3/ui/mirror/mirrorsettings.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/mirror/mirrorsettings.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -163,7 +163,7 @@ void MirrorSettings::addClicked() { - MirrorAddDlg *dialog = new MirrorAddDlg(m_model, this); + auto *dialog = new MirrorAddDlg(m_model, this); dialog->showItem(MirrorItem::Priority, false); dialog->showItem(MirrorItem::Country, false); dialog->show(); diff -Nru kget-20.12.3/ui/mirror/mirrorsettings.h kget-21.04.0/ui/mirror/mirrorsettings.h --- kget-20.12.3/ui/mirror/mirrorsettings.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/mirror/mirrorsettings.h 2021-04-14 15:24:35.000000000 +0000 @@ -48,7 +48,7 @@ */ void showItem(MirrorItem::DataType type, bool show); - private slots: + private Q_SLOTS: void addMirror(); void updateButton(const QString &text = QString()); @@ -57,8 +57,8 @@ private: Ui::MirrorAddDlg ui; - MirrorModel *m_model; - QSortFilterProxyModel *m_countryModel; + MirrorModel *m_model = nullptr; + QSortFilterProxyModel *m_countryModel = nullptr; }; class MirrorSettings : public KGetSaveSizeDialog @@ -70,17 +70,17 @@ QSize sizeHint() const override; - private slots: + private Q_SLOTS: void updateButton(); void addClicked(); void removeMirror(); void save(); private: - TransferHandler *m_transfer; + TransferHandler *m_transfer = nullptr; QUrl m_file; - MirrorModel *m_model; - MirrorProxyModel *m_proxy; + MirrorModel *m_model = nullptr; + MirrorProxyModel *m_proxy = nullptr; Ui::MirrorSettings ui; }; diff -Nru kget-20.12.3/ui/newtransferdialog.cpp kget-21.04.0/ui/newtransferdialog.cpp --- kget-20.12.3/ui/newtransferdialog.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/newtransferdialog.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -68,7 +68,7 @@ // properties of the m_destRequester combobox - LineEditUrlDropEventFilter *dropUrlEventFilter = new LineEditUrlDropEventFilter(this); + auto *dropUrlEventFilter = new LineEditUrlDropEventFilter(this); dropUrlEventFilter->installEventFilter(ui.destRequester->comboBox()); ui.destRequester->comboBox()->setDuplicatesEnabled(false); ui.destRequester->comboBox()->setEditable(true); @@ -168,7 +168,7 @@ foreach (const QUrl &sourceUrl, sources) { if (sourceUrl.url() != QUrl(sourceUrl.url()).fileName()) {//TODO simplify, whatfor is this check anyway, shouldn't the sources be checked already and if not add this to UrlChecker qCDebug(KGET_DEBUG) << "Insert" << sourceUrl; - QListWidgetItem *newItem = new QListWidgetItem(sourceUrl.toString(), ui.listWidget); + auto *newItem = new QListWidgetItem(sourceUrl.toString(), ui.listWidget); newItem->setCheckState(Qt::Checked); } } @@ -428,7 +428,7 @@ //sourceUrl is valid, has been checked before const QUrl sourceUrl = QUrl(ui.urlRequester->text().trimmed()); qCDebug(KGET_DEBUG) << "Downloading" << sourceUrl << "to" << m_destination; - data << KGet::TransferData(sourceUrl, m_destination, group); + data << KGet::TransferData(sourceUrl, m_destination, group, true); } else { QList list; for (int i = 0; i != ui.listWidget->count(); ++i) { @@ -449,7 +449,7 @@ FileDeleter::deleteFile(destUrl); } - data << KGet::TransferData(sourceUrl, destUrl, group); + data << KGet::TransferData(sourceUrl, destUrl, group, true); } } } @@ -578,7 +578,7 @@ void NewTransferDialogHandler::slotMostLocalUrlResult(KJob *j) { - MostLocalUrlJob *job = static_cast(j); + auto *job = static_cast(j); const int jobId = job->property("jobId").toInt(); if (job->error()) { diff -Nru kget-20.12.3/ui/newtransferdialog.h kget-21.04.0/ui/newtransferdialog.h --- kget-20.12.3/ui/newtransferdialog.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/newtransferdialog.h 2021-04-14 15:24:35.000000000 +0000 @@ -41,14 +41,14 @@ public: ~NewTransferDialog() override; - public slots: + public Q_SLOTS: /** * Called when the transfer group or the urlREquester changed, the dialog sets the default destination * for transfers in the new group */ void setDefaultDestination(); - private slots: + private Q_SLOTS: void inputTimer(); void checkInput(); void slotFinished(int resultCode); @@ -125,7 +125,7 @@ */ static void showNewTransferDialog(QList list); - private slots: + private Q_SLOTS: void slotMostLocalUrlResult(KJob *job); private: diff -Nru kget-20.12.3/ui/pics/CMakeLists.txt kget-21.04.0/ui/pics/CMakeLists.txt --- kget-20.12.3/ui/pics/CMakeLists.txt 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/pics/CMakeLists.txt 2021-04-14 15:24:35.000000000 +0000 @@ -1 +1 @@ -install(FILES kget_splash.png DESTINATION ${DATA_INSTALL_DIR}/kget/pics) +install(FILES kget_splash.png DESTINATION ${KDE_INSTALL_DATADIR}/kget/pics) diff -Nru kget-20.12.3/ui/renamefile.h kget-21.04.0/ui/renamefile.h --- kget-20.12.3/ui/renamefile.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/renamefile.h 2021-04-14 15:24:35.000000000 +0000 @@ -37,7 +37,7 @@ void setOriginalName(const QString &originalName); - private slots: + private Q_SLOTS: void updateButton(); void rename(); diff -Nru kget-20.12.3/ui/signaturedlg.h kget-21.04.0/ui/signaturedlg.h --- kget-20.12.3/ui/signaturedlg.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/signaturedlg.h 2021-04-14 15:24:35.000000000 +0000 @@ -35,7 +35,7 @@ public: SignatureDlg(TransferHandler *transfer, const QUrl &dest, QWidget *parent = nullptr, Qt::WindowFlags flags = {}); - private slots: + private Q_SLOTS: void fileFinished(const QUrl &file); void verifyClicked(); void updateData(); @@ -49,8 +49,8 @@ private: Ui::SignatureDlg ui; - Signature *m_signature; - FileModel *m_fileModel; + Signature *m_signature = nullptr; + FileModel *m_fileModel = nullptr; QModelIndex m_file; static const QStringList OWNERTRUST; }; diff -Nru kget-20.12.3/ui/transferdetails.h kget-21.04.0/ui/transferdetails.h --- kget-20.12.3/ui/transferdetails.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/transferdetails.h 2021-04-14 15:24:35.000000000 +0000 @@ -29,13 +29,13 @@ // gets the generic details widget if the transfer factory doesn't override it static QWidget *detailsWidget(TransferHandler *transfer); - public slots: + public Q_SLOTS: void slotTransferChanged(TransferHandler * transfer, TransferHandler::ChangesFlags flags); private: - TransferHandler * m_transfer; - QVBoxLayout * m_layout; - QWidget * m_genericWidget; + TransferHandler * m_transfer = nullptr; + QVBoxLayout * m_layout = nullptr; + QWidget * m_genericWidget = nullptr; Ui::TransferDetailsFrm frm; }; diff -Nru kget-20.12.3/ui/transfersettingsdialog.cpp kget-21.04.0/ui/transfersettingsdialog.cpp --- kget-20.12.3/ui/transfersettingsdialog.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/transfersettingsdialog.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -28,8 +28,7 @@ TransferSettingsDialog::TransferSettingsDialog(QWidget *parent, TransferHandler *transfer) : KGetSaveSizeDialog("TransferSettingsDialog", parent), m_transfer(transfer), - m_model(m_transfer->fileModel()), - m_proxy(nullptr) + m_model(m_transfer->fileModel()) { setWindowTitle(i18n("Transfer Settings for %1", m_transfer->source().fileName())); @@ -119,7 +118,7 @@ void TransferSettingsDialog::slotRename() { const QModelIndex index = m_proxy->mapToSource(ui.treeView->selectionModel()->selectedIndexes().first()); - RenameFile *renameDlg = new RenameFile(m_model, index, this); + auto *renameDlg = new RenameFile(m_model, index, this); renameDlg->setAttribute(Qt::WA_DeleteOnClose); renameDlg->show(); } @@ -136,7 +135,7 @@ { const QModelIndex index = m_proxy->mapToSource(ui.treeView->selectionModel()->selectedIndexes().first()); - SignatureDlg *signature = new SignatureDlg(m_transfer, m_model->getUrl(index), this); + auto *signature = new SignatureDlg(m_transfer, m_model->getUrl(index), this); signature->setAttribute(Qt::WA_DeleteOnClose); signature->show(); } diff -Nru kget-20.12.3/ui/transfersettingsdialog.h kget-21.04.0/ui/transfersettingsdialog.h --- kget-20.12.3/ui/transfersettingsdialog.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/transfersettingsdialog.h 2021-04-14 15:24:35.000000000 +0000 @@ -28,7 +28,7 @@ QSize sizeHint() const override; - private slots: + private Q_SLOTS: void updateCapabilities(); void slotMirrors(); void slotRename(); @@ -39,9 +39,9 @@ void save(); private: - TransferHandler *m_transfer; - FileModel *m_model; - QSortFilterProxyModel *m_proxy; + TransferHandler *m_transfer = nullptr; + FileModel *m_model = nullptr; + QSortFilterProxyModel *m_proxy = nullptr; Ui::TransferSettingsDialog ui; }; diff -Nru kget-20.12.3/ui/transfersview.cpp kget-21.04.0/ui/transfersview.cpp --- kget-20.12.3/ui/transfersview.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/transfersview.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -125,13 +125,13 @@ m_headerMenu->clear(); m_headerMenu->addSection(i18n("Select columns")); - QSignalMapper *columnMapper = new QSignalMapper(this); + auto *columnMapper = new QSignalMapper(this); connect(columnMapper, static_cast(&QSignalMapper::mapped), this, &TransfersView::slotHideSection); //Create for each column an action with the column-header as name QVector orderedMenuItems(header()->count()); for (int i = 0; i < header()->count(); ++i) { - QAction *action = new QAction(this); + auto *action = new QAction(this); action->setText(model()->headerData(i, Qt::Horizontal).toString()); action->setCheckable(true); action->setChecked(!header()->isSectionHidden(i)); @@ -199,7 +199,7 @@ TransferTreeModel * transferTreeModel = KGet::model(); ModelItem * item = transferTreeModel->itemFromIndex(index); - TransfersViewDelegate *view_delegate = static_cast (itemDelegate()); + auto *view_delegate = static_cast (itemDelegate()); if(!item) return; @@ -229,7 +229,7 @@ TransferTreeModel * transferTreeModel = KGet::model(); ModelItem * item = transferTreeModel->itemFromIndex(index); - TransfersViewDelegate *view_delegate = static_cast (itemDelegate()); + auto *view_delegate = static_cast (itemDelegate()); if(!item) return; @@ -275,7 +275,7 @@ void TransfersView::closeExpandableDetails(const QModelIndex &transferIndex) { - TransfersViewDelegate *view_delegate = static_cast (itemDelegate()); + auto *view_delegate = static_cast (itemDelegate()); if(transferIndex.isValid()) { view_delegate->contractItem(transferIndex); @@ -290,7 +290,7 @@ { Q_UNUSED(deselected) if (!selected.indexes().isEmpty()) { - TransfersViewDelegate *view_delegate = static_cast(itemDelegate()); + auto *view_delegate = static_cast(itemDelegate()); KGet::actionCollection()->action("transfer_show_details")->setChecked(view_delegate->isExtended(selected.indexes().first())); } @@ -303,7 +303,7 @@ Q_UNUSED(rowStart) Q_UNUSED(rowEnd) - TransfersViewDelegate *view_delegate = static_cast (itemDelegate()); + auto *view_delegate = static_cast (itemDelegate()); view_delegate->contractAll(); m_editingIndexes.clear(); @@ -311,9 +311,9 @@ QWidget *TransfersView::getDetailsWidgetForTransfer(TransferHandler *handler) { - QGroupBox *groupBox = new QGroupBox(i18n("Transfer Details")); + auto *groupBox = new QGroupBox(i18n("Transfer Details")); - QVBoxLayout *layout = new QVBoxLayout(groupBox); + auto *layout = new QVBoxLayout(groupBox); QWidget *detailsWidget = TransferDetails::detailsWidget(handler); layout->addWidget(detailsWidget); diff -Nru kget-20.12.3/ui/transfersviewdelegate.cpp kget-21.04.0/ui/transfersviewdelegate.cpp --- kget-20.12.3/ui/transfersviewdelegate.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/transfersviewdelegate.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -261,7 +261,7 @@ void GroupStatusEditor::slotStatusChanged() { - emit changedStatus(this); + Q_EMIT changedStatus(this); } @@ -273,7 +273,7 @@ QWidget *BasicTransfersViewDelegate::createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const { if (index.column() == TransferTreeModel::Status) { - GroupStatusEditor *qroupStatusEditor = new GroupStatusEditor(index, parent); + auto *qroupStatusEditor = new GroupStatusEditor(index, parent); connect(qroupStatusEditor, &GroupStatusEditor::changedStatus, this, &BasicTransfersViewDelegate::slotGroupStatusChanged); return qroupStatusEditor; } else { @@ -289,7 +289,7 @@ void BasicTransfersViewDelegate::setEditorData(QWidget *editor, const QModelIndex &index) const { if (index.column() == TransferTreeModel::Status) { - GroupStatusEditor *groupEditor = static_cast(editor); + auto *groupEditor = static_cast(editor); groupEditor->setRunning(KGet::model()->itemFromIndex(index)->asGroup()->groupHandler()->status() == JobQueue::Running); } else { KExtendableItemDelegate::setEditorData(editor, index); @@ -299,7 +299,7 @@ void BasicTransfersViewDelegate::setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const { if (index.column() == TransferTreeModel::Status) { - GroupStatusEditor *groupEditor = static_cast(editor); + auto *groupEditor = static_cast(editor); TransferGroupHandler *groupHandler = KGet::model()->itemFromIndex(index)->asGroup()->groupHandler(); if (groupEditor->isRunning()) { @@ -450,7 +450,7 @@ if (event->type() == QEvent::MouseButtonRelease) { - QMouseEvent * mouseEvent = static_cast(event); + auto * mouseEvent = static_cast(event); if (mouseEvent->button() == Qt::RightButton) { // qCDebug(KGET_DEBUG) << "TransfersViewDelegate::editorEvent() -> rightClick"; diff -Nru kget-20.12.3/ui/transfersviewdelegate.h kget-21.04.0/ui/transfersviewdelegate.h --- kget-20.12.3/ui/transfersviewdelegate.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/transfersviewdelegate.h 2021-04-14 15:24:35.000000000 +0000 @@ -57,10 +57,10 @@ void setRunning(bool running); bool isRunning(); - private slots: + private Q_SLOTS: void slotStatusChanged(); - signals: + Q_SIGNALS: void changedStatus(GroupStatusEditor *editor); private: @@ -87,7 +87,7 @@ void setEditorData(QWidget *editor, const QModelIndex &index) const override; void setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const override; - private slots: + private Q_SLOTS: virtual void slotGroupStatusChanged(GroupStatusEditor *editor); }; diff -Nru kget-20.12.3/ui/transfersview.h kget-21.04.0/ui/transfersview.h --- kget-20.12.3/ui/transfersview.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/transfersview.h 2021-04-14 15:24:35.000000000 +0000 @@ -34,13 +34,13 @@ void dragMoveEvent ( QDragMoveEvent * event ) override; void rowsAboutToBeRemoved(const QModelIndex & parent, int start, int end) override; - public slots: + public Q_SLOTS: void closeExpandableDetails(const QModelIndex &index = QModelIndex()); void closeExpandableDetails(const QModelIndex &parent, int rowStart, int rowEnd); void slotItemActivated(const QModelIndex & index); void slotItemCollapsed(const QModelIndex & index); - private slots: + private Q_SLOTS: void toggleMainGroup();// show or hide the first group header if there's only one download group void slotShowHeaderMenu(const QPoint &point); void selectionChanged(const QItemSelection & selected, const QItemSelection & deselected) override; @@ -53,7 +53,7 @@ QWidget *getDetailsWidgetForTransfer(TransferHandler *handler); QList m_editingIndexes; - QMenu *m_headerMenu; + QMenu *m_headerMenu = nullptr; }; #endif diff -Nru kget-20.12.3/ui/tray.h kget-21.04.0/ui/tray.h --- kget-20.12.3/ui/tray.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/tray.h 2021-04-14 15:24:35.000000000 +0000 @@ -11,7 +11,7 @@ #ifndef TRAY_H #define TRAY_H -#include +#include class MainWindow; class KGet; @@ -33,7 +33,7 @@ void setDownloading(bool downloading); bool isDownloading(); -private slots: +private Q_SLOTS: void slotActivated(); }; diff -Nru kget-20.12.3/ui/verificationdialog.cpp kget-21.04.0/ui/verificationdialog.cpp --- kget-20.12.3/ui/verificationdialog.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/verificationdialog.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -177,7 +177,7 @@ void VerificationDialog::addClicked() { - VerificationAddDlg *dialog = new VerificationAddDlg(m_model, this); + auto *dialog = new VerificationAddDlg(m_model, this); dialog->show(); } diff -Nru kget-20.12.3/ui/verificationdialog.h kget-21.04.0/ui/verificationdialog.h --- kget-20.12.3/ui/verificationdialog.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/verificationdialog.h 2021-04-14 15:24:35.000000000 +0000 @@ -41,13 +41,13 @@ QSize sizeHint() const override; - private slots: + private Q_SLOTS: void addChecksum(); void updateButton(); private: Ui::VerificationAddDlg ui; - VerificationModel *m_model; + VerificationModel *m_model = nullptr; QHash m_diggestLength; }; @@ -60,7 +60,7 @@ QSize sizeHint() const override; - private slots: + private Q_SLOTS: void fileFinished(const QUrl &file); void updateButtons(); void addClicked(); @@ -70,11 +70,11 @@ void slotFinished(); private: - TransferHandler *m_transfer; - Verifier *m_verifier; - VerificationModel *m_model; - QSortFilterProxyModel *m_proxy; - FileModel *m_fileModel; + TransferHandler *m_transfer = nullptr; + Verifier *m_verifier = nullptr; + VerificationModel *m_model = nullptr; + QSortFilterProxyModel *m_proxy = nullptr; + FileModel *m_fileModel = nullptr; QModelIndex m_file; Ui::VerificationDialog ui; }; diff -Nru kget-20.12.3/ui/viewscontainer.cpp kget-21.04.0/ui/viewscontainer.cpp --- kget-20.12.3/ui/viewscontainer.cpp 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/viewscontainer.cpp 2021-04-14 15:24:35.000000000 +0000 @@ -24,12 +24,12 @@ ViewsContainer::ViewsContainer(QWidget * parent) : QWidget(parent) { - QVBoxLayout *layout = new QVBoxLayout(); + auto *layout = new QVBoxLayout(); layout->setSpacing(1); layout->setContentsMargins(0, 0, 0, 0); m_transfersView = new TransfersView(this); - TransfersViewDelegate *transfersViewDelegate = new TransfersViewDelegate(m_transfersView); + auto *transfersViewDelegate = new TransfersViewDelegate(m_transfersView); m_transfersView->setItemDelegate(transfersViewDelegate); m_transfersView->setModel(KGet::model()); m_transfersView->setSelectionModel(KGet::selectionModel()); diff -Nru kget-20.12.3/ui/viewscontainer.h kget-21.04.0/ui/viewscontainer.h --- kget-20.12.3/ui/viewscontainer.h 2021-02-24 23:29:17.000000000 +0000 +++ kget-21.04.0/ui/viewscontainer.h 2021-04-14 15:24:35.000000000 +0000 @@ -25,13 +25,13 @@ public: ViewsContainer(QWidget * parent = nullptr); - public slots: + public Q_SLOTS: void showTransferDetails(TransferHandler * transfer); void closeTransferDetails(TransferHandler * transfer); void selectAll(); private: - TransfersView * m_transfersView; + TransfersView * m_transfersView = nullptr; }; #endif