From 0b9c05d41bb8b15e0a31aef170d9a032f0676e2f Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Fri, 21 Aug 2009 07:40:57 +0000 Subject: [PATCH] - FEATURE: Make use of torrent enclosure in RSS feeds for direct download - FEATURE: Implemented a RSS feed downloader with filter support - FEATURE: Save old RSS item to hard disk to remember them on start up - FEATURE: RSS Feeds can now be copied to the clipboard --- Changelog | 5 + qcm/libtorrent-rasterbar.qcm | 2 +- src/FeedDownloader.h | 331 +++++++ src/FeedDownloader.ui | 377 ++++++++ src/GUI.cpp | 6 +- src/Icons/oxygen/list-add.png | Bin 0 -> 907 bytes src/Icons/oxygen/list-remove.png | Bin 0 -> 498 bytes src/Icons/oxygen/subscribe.png | Bin 1575 -> 1611 bytes src/Icons/oxygen/subscribe16.png | Bin 739 -> 752 bytes src/Icons/skin/add.png | Bin 842 -> 0 bytes src/Icons/skin/remove.png | Bin 1270 -> 0 bytes src/Icons/url.png | Bin 629 -> 722 bytes src/bittorrent.cpp | 50 +- src/bittorrent.h | 4 +- src/createtorrent.ui | 332 +++---- src/engineSelectDlg.cpp | 2 +- src/icons.qrc | 4 +- src/lang/qbittorrent_bg.qm | Bin 56347 -> 55741 bytes src/lang/qbittorrent_bg.ts | 566 ++++++----- src/lang/qbittorrent_ca.qm | Bin 18200 -> 18102 bytes src/lang/qbittorrent_ca.ts | 571 ++++++----- src/lang/qbittorrent_cs.qm | Bin 56053 -> 55572 bytes src/lang/qbittorrent_cs.ts | 566 ++++++----- src/lang/qbittorrent_da.qm | Bin 20667 -> 20567 bytes src/lang/qbittorrent_da.ts | 571 ++++++----- src/lang/qbittorrent_de.qm | Bin 61599 -> 61130 bytes src/lang/qbittorrent_de.ts | 566 ++++++----- src/lang/qbittorrent_el.qm | Bin 59379 -> 58775 bytes src/lang/qbittorrent_el.ts | 566 ++++++----- src/lang/qbittorrent_en.ts | 567 ++++++----- src/lang/qbittorrent_es.qm | Bin 53432 -> 53101 bytes src/lang/qbittorrent_es.ts | 569 ++++++----- src/lang/qbittorrent_fi.qm | Bin 55758 -> 55140 bytes src/lang/qbittorrent_fi.ts | 566 ++++++----- src/lang/qbittorrent_fr.qm | Bin 63081 -> 62431 bytes src/lang/qbittorrent_fr.ts | 566 ++++++----- src/lang/qbittorrent_hu.qm | Bin 54984 -> 54561 bytes src/lang/qbittorrent_hu.ts | 566 ++++++----- src/lang/qbittorrent_it.qm | Bin 58772 -> 58152 bytes src/lang/qbittorrent_it.ts | 566 ++++++----- src/lang/qbittorrent_ja.qm | Bin 40530 -> 40267 bytes src/lang/qbittorrent_ja.ts | 569 ++++++----- src/lang/qbittorrent_ko.qm | Bin 46674 -> 46234 bytes src/lang/qbittorrent_ko.ts | 566 ++++++----- src/lang/qbittorrent_nb.qm | Bin 20946 -> 20701 bytes src/lang/qbittorrent_nb.ts | 571 ++++++----- src/lang/qbittorrent_nl.qm | Bin 53891 -> 53542 bytes src/lang/qbittorrent_nl.ts | 569 ++++++----- src/lang/qbittorrent_pl.qm | Bin 52885 -> 52502 bytes src/lang/qbittorrent_pl.ts | 569 ++++++----- src/lang/qbittorrent_pt.qm | Bin 57579 -> 56994 bytes src/lang/qbittorrent_pt.ts | 69 +- src/lang/qbittorrent_pt_BR.qm | Bin 57579 -> 56994 bytes src/lang/qbittorrent_pt_BR.ts | 69 +- src/lang/qbittorrent_ro.qm | Bin 56833 -> 56216 bytes src/lang/qbittorrent_ro.ts | 69 +- src/lang/qbittorrent_ru.qm | Bin 57612 -> 57147 bytes src/lang/qbittorrent_ru.ts | 69 +- src/lang/qbittorrent_sk.qm | Bin 57339 -> 56719 bytes src/lang/qbittorrent_sk.ts | 69 +- src/lang/qbittorrent_sv.qm | Bin 59674 -> 59064 bytes src/lang/qbittorrent_sv.ts | 69 +- src/lang/qbittorrent_tr.qm | Bin 55658 -> 55203 bytes src/lang/qbittorrent_tr.ts | 69 +- src/lang/qbittorrent_uk.qm | Bin 47994 -> 47635 bytes src/lang/qbittorrent_uk.ts | 72 +- src/lang/qbittorrent_zh.qm | Bin 41698 -> 41306 bytes src/lang/qbittorrent_zh.ts | 69 +- src/lang/qbittorrent_zh_TW.qm | Bin 42719 -> 42460 bytes src/lang/qbittorrent_zh_TW.ts | 69 +- src/misc.h | 4 +- src/options.ui | 2 +- src/properties_imp.cpp | 8 +- src/rss.h | 1552 ++++++++++++++++-------------- src/rss.ui | 174 ++-- src/rss_imp.cpp | 668 +++++++------ src/rss_imp.h | 10 +- src/src.pro | 8 +- src/torrentPersistentData.h | 8 +- 79 files changed, 8344 insertions(+), 5546 deletions(-) create mode 100644 src/FeedDownloader.h create mode 100644 src/FeedDownloader.ui create mode 100644 src/Icons/oxygen/list-add.png create mode 100644 src/Icons/oxygen/list-remove.png delete mode 100644 src/Icons/skin/add.png delete mode 100644 src/Icons/skin/remove.png diff --git a/Changelog b/Changelog index 49d508506a..5c1892c4a6 100644 --- a/Changelog +++ b/Changelog @@ -1,7 +1,12 @@ * Unknown - Christophe Dumez - v1.5.0 - FEATURE: Added Magnet URI support + - FEATURE: Make use of torrent enclosure in RSS feeds for direct download + - FEATURE: Implemented a RSS feed downloader with filter support + - FEATURE: Save old RSS item to hard disk to remember them on start up - FEATURE: Display free disk space in torrent addition dialog - FEATURE: In torrent addition from URL, paste clipboard content if it contains an URL + - FEATURE: RSS Feeds URLs can now be copied to clipboard + - FEATURE: If a torrent contains a torrent file, process downloaded torrent file too [TODO] - BUGFIX: torrent resume code rewrited * Thu Aug 13 2009 - Christophe Dumez - v1.4.0 diff --git a/qcm/libtorrent-rasterbar.qcm b/qcm/libtorrent-rasterbar.qcm index 0d44c0e913..8f9cb7511f 100644 --- a/qcm/libtorrent-rasterbar.qcm +++ b/qcm/libtorrent-rasterbar.qcm @@ -23,7 +23,7 @@ public: if(!libs.isEmpty()) conf->addLib(libs); if(!conf->findPkgConfig("libtorrent-rasterbar", mode, adv_ver, &version, &incs, &libs, &other)) - printf("\nWarning: libtorrent-rasterbar v%s was detected. Although it will compile and run, you will probably experience some bugs. Please consider updating to v%s!\n", version.toUtf8().data(), adv_ver.toUtf8().data()); + printf("\nWarning: libtorrent-rasterbar v%s was detected. Although it will compile and run, you will probably experience some bugs. Please consider updating to v%s!\n", version.toLocal8Bit().data(), adv_ver.toUtf8().data()); return true; } }; diff --git a/src/FeedDownloader.h b/src/FeedDownloader.h new file mode 100644 index 0000000000..2b7ec72034 --- /dev/null +++ b/src/FeedDownloader.h @@ -0,0 +1,331 @@ +/* + * Bittorrent Client using Qt4 and libtorrent. + * Copyright (C) 2006 Christophe Dumez + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + * In addition, as a special exception, the copyright holders give permission to + * link this program with the OpenSSL project's "OpenSSL" library (or with + * modified versions of it that use the same license as the "OpenSSL" library), + * and distribute the linked executables. You must obey the GNU General Public + * License in all respects for all of the code used other than "OpenSSL". If you + * modify file(s), you may extend this exception to your version of the file(s), + * but you are not obligated to do so. If you do not wish to do so, delete this + * exception statement from your version. + * + * Contact : chris@qbittorrent.org + */ + +#ifndef FEEDDOWNLOADER_H +#define FEEDDOWNLOADER_H + +#include +#include +#include +#include +#include +#include +#include +#include + +#include "bittorrent.h" +#include "ui_FeedDownloader.h" + +class FeedFilter: public QHash { +private: + bool valid; +public: + FeedFilter():valid(true) {} + FeedFilter(bool valid): valid(valid) {} + FeedFilter(QHash filter): QHash(filter), valid(true) {} + + bool matches(QString s) { + QStringList tokens = getMatchingTokens(); + foreach(const QString& token, tokens) { + QRegExp reg(token, Qt::CaseInsensitive); + if(reg.indexIn(s) < 0) return false; + } + return true; + } + + bool isValid() const { + return valid; + } + + QStringList getMatchingTokens() const { + QString matches = this->value("matches", "*").toString(); + return matches.split(" "); + } + + QString getMatchingTokens_str() const { + return this->value("matches", "*").toString(); + } + + void setMatchingTokens(QString tokens) { + tokens = tokens.trimmed(); + if(tokens.isEmpty()) + (*this)["matches"] = "*"; + else + (*this)["matches"] = tokens; + } + + QStringList getNotMatchingTokens() const { + QString notmatching = this->value("not", "").toString(); + return notmatching.split(" "); + } + + QString getNotMatchingTokens_str() const { + return this->value("not", "").toString(); + } + + void setNotMatchingTokens(QString tokens) { + (*this)["not"] = tokens.trimmed(); + } + + QString getSavePath() const { + return this->value("save_path", "").toString(); + } + + void setSavePath(QString save_path) { + (*this)["save_path"] = save_path; + } + +}; + +class FeedFilters : public QHash { + +private: + QString feed_url; + +public: + FeedFilters() {} + FeedFilters(QString feed_url, QHash filters): QHash(filters), feed_url(feed_url) {} + + bool hasFilter(QString name) const { + return this->contains(name); + } + + FeedFilter* matches(QString s) { + if(!isDownloadingEnabled()) return 0; + if(this->size() == 0) return new FeedFilter(false); + foreach(QVariant var_hash_filter, this->values()) { + QHash hash_filter = var_hash_filter.toHash(); + FeedFilter *filter = new FeedFilter(hash_filter); + if(filter->matches(s)) + return filter; + else + delete filter; + } + return 0; + } + + QStringList names() const { + return this->keys(); + } + + FeedFilter getFilter(QString name) const { + if(this->contains(name)) + return FeedFilter(this->value(name).toHash()); + return FeedFilter(); + } + + void setFilter(QString name, FeedFilter f) { + (*this)[name] = f; + } + + bool isDownloadingEnabled() const { + QSettings qBTRSS("qBittorrent", "qBittorrent-rss"); + QHash feeds_w_downloader = qBTRSS.value("downloader_on", QHash()).toHash(); + return feeds_w_downloader.value(feed_url, false).toBool(); + } + + void setDownloadingEnabled(bool enabled) { + QSettings qBTRSS("qBittorrent", "qBittorrent-rss"); + QHash feeds_w_downloader = qBTRSS.value("downloader_on", QHash()).toHash(); + feeds_w_downloader[feed_url] = enabled; + qBTRSS.setValue("downloader_on", feeds_w_downloader); + } + + static FeedFilters getFeedFilters(QString url) { + QSettings qBTRSS("qBittorrent", "qBittorrent-rss"); + QHash all_feeds_filters = qBTRSS.value("feed_filters", QHash()).toHash(); + return FeedFilters(url, all_feeds_filters.value(url, QHash()).toHash()); + } + + void save() { + QSettings qBTRSS("qBittorrent", "qBittorrent-rss"); + QHash all_feeds_filters = qBTRSS.value("feed_filters", QHash()).toHash(); + qDebug("Saving filters for feed: %s (%d filters)", feed_url.toLocal8Bit().data(), (*this).size()); + all_feeds_filters[feed_url] = *this; + qBTRSS.setValue("feed_filters", all_feeds_filters); + } +}; + +class FeedDownloaderDlg : public QDialog, private Ui_FeedDownloader{ + Q_OBJECT + +private: + QString feed_url; + QString feed_name; + FeedFilters filters; + bittorrent *BTSession; + QString selected_filter; // name + +public: + FeedDownloaderDlg(QWidget *parent, QString feed_url, QString feed_name, bittorrent* BTSession): QDialog(parent), feed_url(feed_url), feed_name(feed_name), BTSession(BTSession), selected_filter(QString::null){ + setupUi(this); + setAttribute(Qt::WA_DeleteOnClose); + Q_ASSERT(!feed_name.isEmpty()); + rssfeed_lbl->setText(feed_name); + filters = FeedFilters::getFeedFilters(feed_url); + // Connect Signals/Slots + connect(filtersList, SIGNAL(currentItemChanged(QListWidgetItem* , QListWidgetItem *)), this, SLOT(showFilterSettings(QListWidgetItem *))); + connect(del_button, SIGNAL(clicked(bool)), this, SLOT(deleteFilter())); + connect(add_button, SIGNAL(clicked(bool)), this, SLOT(addFilter())); + connect(enableDl_cb, SIGNAL(stateChanged(int)), this, SLOT(enableFilterBox(int))); + // Restore saved info + enableDl_cb->setChecked(filters.isDownloadingEnabled()); + // Fill filter list + foreach(QString filter_name, filters.names()) { + new QListWidgetItem(filter_name, filtersList); + } + if(filters.size() > 0) { + // Select first filter + filtersList->setCurrentItem(filtersList->item(0)); + //showFilterSettings(filtersList->item(0)); + } + // Show + show(); + } + + ~FeedDownloaderDlg() { + // Make sure we save everything + saveCurrentFilterSettings(); + filters.save(); + } + +protected slots: + void saveCurrentFilterSettings() { + if(!selected_filter.isEmpty()) { + FeedFilter filter = filters.getFilter(selected_filter); + filter.setMatchingTokens(match_line->text()); + filter.setNotMatchingTokens(notmatch_line->text()); + QString save_path = savepath_line->text().trimmed(); + if(save_path.isEmpty()) + save_path = BTSession->getDefaultSavePath(); + filter.setSavePath(save_path); + // Save updated filter + filters.setFilter(selected_filter, filter); + } + } + + void showFilterSettings(QListWidgetItem *item) { + // First, save current filter settings + saveCurrentFilterSettings(); + if(!item) { + qDebug("No new selected item"); + return; + } + // Actually show filter settings + QString filter_name = item->text(); + FeedFilter filter = filters.getFilter(filter_name); + filterSettingsBox->setEnabled(true); + match_line->setText(filter.getMatchingTokens_str()); + notmatch_line->setText(filter.getNotMatchingTokens_str()); + QString save_path = filter.getSavePath(); + if(save_path.isEmpty()) + save_path = BTSession->getDefaultSavePath(); + savepath_line->setText(save_path); + // Update selected filter + selected_filter = filter_name; + } + + void deleteFilter() { + QList items = filtersList->selectedItems(); + if(items.size() == 1) { + filters.remove(selected_filter); + selected_filter = QString::null; + QListWidgetItem * item = items.first(); + delete item; + // Reset Filter settings view + if(filters.size() == 0) { + clearFields(); + filterSettingsBox->setEnabled(false); + } + } + } + + void enableFilterBox(int state) { + if(state == Qt::Checked) { + filtersBox->setEnabled(true); + filters.setDownloadingEnabled(true); + } else { + filtersBox->setEnabled(false); + filters.setDownloadingEnabled(false); + } + } + + QString askFilterName(QString name=QString::null) { + QString name_prop; + if(name.isEmpty()) + name_prop = tr("New filter"); + else + name_prop = name; + QString new_name; + bool validated = false; + do { + bool ok; + new_name = QInputDialog::getText(this, tr("Please choose a name for this filter"), tr("Filter name:"), QLineEdit::Normal, name_prop, &ok); + if(!ok) { + return QString::null; + } + // Validate filter name + new_name = new_name.trimmed(); + if(new_name.isEmpty()) { + // Cannot be left empty + QMessageBox::critical(0, tr("Invalid filter name"), tr("The filter name cannot be left empty.")); + } else { + validated = true; + } + } while(!validated); + return new_name; + } + + void addFilter() { + QString filter_name = QString::null; + bool validated = false; + do { + filter_name = askFilterName(); + if(filters.hasFilter(filter_name)) { + // Filter alread exists + QMessageBox::critical(0, tr("Invalid filter name"), tr("This filter name is already in use.")); + } else { + validated = true; + } + }while(!validated); + QListWidgetItem *it = new QListWidgetItem(filter_name, filtersList); + filtersList->setCurrentItem(it); + //showFilterSettings(it); + } + + void clearFields() { + match_line->clear(); + notmatch_line->clear(); + savepath_line->clear(); + } + +}; + +#endif // FEEDDOWNLOADER_H diff --git a/src/FeedDownloader.ui b/src/FeedDownloader.ui new file mode 100644 index 0000000000..96db4cbf71 --- /dev/null +++ b/src/FeedDownloader.ui @@ -0,0 +1,377 @@ + + + FeedDownloader + + + + 0 + 0 + 737 + 392 + + + + RSS Feed downloader + + + + + + + + + 16 + 75 + true + + + + RSS feed: + + + + + + + + 16 + 75 + true + + + + Feed name + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + Automatically download torrents from this feed + + + + + + + false + + + + 75 + true + + + + Download filters + + + + + + + + + + + + + 75 + true + + + + Filters: + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + + + :/Icons/oxygen/list-remove.png:/Icons/oxygen/list-remove.png + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + + + + :/Icons/oxygen/list-add.png:/Icons/oxygen/list-add.png + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + + + false + + + + 75 + true + + + + false + + + + + + Filter settings + + + false + + + + + + + + + + + + + 50 + false + + + + Matches: + + + + + + + + 50 + false + + + + Does not match: + + + + + + + + 50 + false + + + + Destination folder: + + + + + + + + + + + + + + + + + + + + + + + + 300 + 0 + + + + + + + + + 50 + false + + + + ... + + + + + + + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + + + + + + + + + + Qt::Horizontal + + + QDialogButtonBox::Close + + + + + + + + + + + buttonBox + accepted() + FeedDownloader + accept() + + + 248 + 254 + + + 157 + 274 + + + + + buttonBox + rejected() + FeedDownloader + reject() + + + 316 + 260 + + + 286 + 274 + + + + + diff --git a/src/GUI.cpp b/src/GUI.cpp index 2d1d12660e..917a2c62a3 100644 --- a/src/GUI.cpp +++ b/src/GUI.cpp @@ -315,7 +315,7 @@ GUI::GUI(QWidget *parent, QStringList torrentCmdLine) : QMainWindow(parent), dis if(enable) { // RSS tab if(rssWidget == 0) { - rssWidget = new RSSImp(); + rssWidget = new RSSImp(BTSession); tabs->addTab(rssWidget, tr("RSS")); tabs->setTabIcon(3, QIcon(QString::fromUtf8(":/Icons/rss32.png"))); } @@ -450,8 +450,8 @@ GUI::GUI(QWidget *parent, QStringList torrentCmdLine) : QMainWindow(parent), dis } void GUI::setPaused(QTorrentHandle &h) const { - Q_ASSERT(h.is_paused()); - qDebug("Marking torrent %s as paused", h.hash().toUtf8().data()); + if(!h.is_paused()) return; + qDebug("Marking torrent %s as paused", h.hash().toLocal8Bit().data()); if(h.is_seed()) { // In finished list qDebug("Automatically paused torrent was in finished list"); diff --git a/src/Icons/oxygen/list-add.png b/src/Icons/oxygen/list-add.png new file mode 100644 index 0000000000000000000000000000000000000000..e029787c716868c498d99a78a967575568a28f96 GIT binary patch literal 907 zcmV;619bd}P)<)YyS&C)sOPuUU7GWft~Bx(#euuEiJk0F$V%W=dn22X$(LfTCDSj0d_?ky^aNW z(5(;d7)eh@fYJRj_TG`?8EKy4oWmghVS@ z+{eNZQkxQIF;WO(7h_b&xtk|^pcGmw0@d^J@mUs*Ufg+_ZC})DPuIS=eD?B~^Evfs z3l9kCDI`2X2y#+7wgW)s5^56`e)dBe@%CFf%~Jl^ zd4Q8Koh$|iQVF!{#o@aKk5Ps|1q8Bd5t7)HN6p9lUH_Tgs7)uym@!AYj83tRf<J$I7pBXX6(Tc`=cZT`N^sDS?uHHPHHk z_KSWEm}MW0e>?1>JSre1tw?-C+^rvcS{MEIxW9_L+F84pKr2Dw;^GZp5O9&-Ub;tS za}bc&=y3iD>nzQrg(5;pfyi53usxhl=t-xEi`%r~giz#%5ykgtUc2nGhr97=;!=c^ks(+f hwc{TxEiLs0{|}&sZo)`g(B=RD002ovPDHLkV1oSvsSW@D literal 0 HcmV?d00001 diff --git a/src/Icons/oxygen/list-remove.png b/src/Icons/oxygen/list-remove.png new file mode 100644 index 0000000000000000000000000000000000000000..2bb1a59831d42e01df138bbe76861b3c573cd71a GIT binary patch literal 498 zcmVRHg64C~ZChUS5vpoL5VA5tAr}#SR$T{WGVm-b<<#qEEI#tZ50{s_ zoB2GJ{XUkK6-*-`DOY$(N^&m*v}_h{o(H?v!{cy>!(tJ_w)cZ57K;U5Ivqr2GuZ@_ zl0vXVk4B*}a!Qvcbf!~0H5wR?MtB84xg6Zd1lnrG9&lqfo5vfRQ#76C(+C7#7A*2u zQ7DK8~KoZ=ls6?v;mtBy1Il+Yx+d6O^HH;mDg~3Pp&X;F85rUpy ot~*YL`;#rAZuoZ##s5M40Ta=R=mj`S^8f$<07*qoM6N<$f>l$>!vFvP literal 0 HcmV?d00001 diff --git a/src/Icons/oxygen/subscribe.png b/src/Icons/oxygen/subscribe.png index 1303c8fd76ab94657052bca06f40d783d80d969c..e1d6a2f4d66b7dc3cdb44980a1ea10b5e36b8a86 100644 GIT binary patch delta 1573 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 diff --git a/src/Icons/oxygen/subscribe16.png b/src/Icons/oxygen/subscribe16.png index acc1d28e52e32a879438999cd652179894210576..a41c5d5c7908e326c41de193c8ed7ca25393d37d 100644 GIT binary patch delta 728 zcmV;}0w?|B1@HxsB!2;OQb$4nuFf3k00006VoOIv0RI600RN!9r;`8x010qNS#tmY z1AYJi1AYNnUy7*!000McNliru*$5I13kcS7@i+hg0&q!0K~yNujgmc&990lSPrX;K zyQh10*1HlQ3ka}uwxplSJV=hH(TSr9{_thzKDBRF$S_ za?aUfjO8#4UxXM#=yRkUgDyH$1TBiBBBE{Es(aQLqxOBT^Z8thy~>ml?yj00ulH!n z`0Reey6W$+bua8<2d5(#28sDmWT*NKcK2?w_5;yyZ!~~op;jvdk(nk zYPFK8D*qF(Uat@lQYui5FTwrZ{K~W}xxILc!AIuT^Ptz)*HRSwE4(1PTrL5qs)`_i zZM$#qmw!Fxq@MD8eu)5`_oi1@SMq|cyVG?Y%jJq7!ie#J2b{nDh{brxo%AM=$d9jl zM;)fTy}SF~;oF>?_W>aUZf-V+2${@gSo1LcNi|J8TR){K3odS+GuXfpjmg>B*}chR z@{xNUM1-oU==*^X1YAhRx~;YDHsdDV|M`Q@Z&4pl`S#tPz6v6$ntl-ekDSOib1>*&fB!2{RLP=Bz2nYy#2xN!=000SaNLh0L00F-M00F-N#Svui0000P zbVXQnQ*UN;cVTj60C#tHE@^ISb7Ns}WiD@WXPfRk8UO$SU`a$lR49>clFw^YNf5_B z)!lD?WbzUdiHOLmthoptJPzndl-0jr51vE}UKRGNVD92YmVf;VJb4lE=-(jZphSr5 ziexl#=FOz%&Ffd)9wt5mYe7R%U+TlRs#>o=NusfX0sUp)>^#xhzNO}BO(}MP*q$?DfVPa zryT*%m>5qE0Do}S(Cv1aRTaistTBAu+rwImh|p=b)zx)ft12nY0q_1B@#Z5`LFvRX zcdwqK4ix}-zC>A;q^Kky#tf&baSliT%tBxm1Sf_sMTu%njB^b@H6F>e{vY7f+A+?L z_6RDRUd)Lxl2XK4ON@~p3kHZWM(4fvB2A68V=G+wy?;lHN~@JOO(KG7q^`pe2U+dB z_mWaF60qY(gE=5Wq2ot8f=QxszW_QO7BR?h_Iy*D9L%?JSFaWTJwn*++SJcL70 z6ztZ!-2e1|3yT-}t|$sCBFz;-s2jl8j#;wHr0S>kvDo2Z`G|oT(6{}m8xDu2u0u0| z_fsa534ettc#=QiL^{Ep;tmeS?sS*OvdO>=xH-MaEpBbO;c#dslW_y+^?Do}9H62s zcbC~(+~Qey#*Ke(@Osf*h;Uu5 z>&CZ@%kNw7PwuSkXq75^t$Xdm=Go1+hu`^y97J8-uR>nS0`MBR0{jDPq(6Q(H2@K5 x1Kq>d0op(d5H8Z;FaG2nPnqC>67VUd@Eyl0T$5q~B*_2(002ovPDHLkV1gKlO^g5l diff --git a/src/Icons/skin/add.png b/src/Icons/skin/add.png deleted file mode 100644 index 97514fbd4c1b8b08eb5cdee12ea4726c86c4a9d6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 842 zcmV-Q1GW5#P)D zl)rBrMHI(Bvp2i9xA!Bq?~c0wl0l%*1tA4`s9Ync_y>rT1|$j!M3FubRiq#x{s3wU zMADFu1PPD}1hH%`GEqzjCnx7{-kq79m*UpW*~AkmGtKVoyw7~!`_4WkA{;f6ujB5@ zD=Xi&lU8GXUtZ+)`(M6$Z}QP}bX2T9k_xUMYZHa_qCQiTnuIS z^0$lsZj9G=W)uZVAObwpwxTceoBdNCy#3-ki`H9gX|UenysOf;6gEF_8w`dUJ2zNQ z*L$)oJ&8fIhZrOlL<{vR@w-|{q>3`fdW$J7&f5xZvEmLG_P5#M^7s;~yQ?Uzs+roC+?Wr^VD4W$_r~ zExT^Yt;vXu2OIqQ&(GYm_Yf_pSTPf|2b}>A!||Yhx_$lO#b&}neSz(Kn_H6+TmRje zZJ2i%wV(Dp=znmfP+p}})xer@i(xiokPYcIdUTQw_v7taP*f0H zjc(ed-{>>QhCJVVf#vo~q;Vq%4l4#)ahp!kVWGZAztLmZJkB5+km@ujDy>rq0g zQ?fXtope}Aml$M2tTVw*A6C4}=R2D_C+#p7W@k}W65$q(S UAUxca!~g&Q07*qoM6N<$f>N`SasU7T diff --git a/src/Icons/skin/remove.png b/src/Icons/skin/remove.png deleted file mode 100644 index e3a4422e7d905ad9e63b9849f626bacab2aa786b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1270 zcmVrqyLa#2nN%uuK~WU{&fRSowul;walZ%+(QVXM z2dS=-P@HwFQjwcCu2U!!jJbb8~Y8jg5^{p-|{Y5nya=>})g|<<_lRoH})i zQqkb0efw!`X~i^6L>$Uxi_(r3e0CeQc!qFDBp3`535n}tgNiCu&{t_+nNUxMNtQ^ zEDOUhP*oL4l8D7(D2hUJb2Fh(h;TTJBuT8VuTv_Ouq><6NZo@01^#EbuFK=X5}Czi z!jWo{G|(8?`IJr&gn|ciU02^KFl>VlZ=OTdMe3`PT)p!vQas2&&sW5K@vU;*Yk(+< zOIvR*O_8Tu%QcC z^wAXEP0$ylr{PUjtW{5I+ct`#OnYgnsybaM=3nMC`AnXZttYu54b#2j2(skkbm#lz zgd89Leu4Rg%Y63CCu}2tWm$-#IPFE&+uN&~=0@z>W z{c%d=61HP=Df=A&rfFt-dwc(_8GvP3X@Dz*-!NSZNsxGupQLPi?MIbWj<*~KpyU`& z*m-GgdbkffSMRF>peOkTZ*6~@Y<8pAC9BBD%ysrRyvj#aACNP3uspjbVXo`m0s0OE z_HixR!E5ouoV)fO`qB!rZgcR39)9@yd%m3fnsP|yLi2gBz;T>A6^554kgANMcN^bf zB0tHrHpNP5nN@umZ9Tu~6%NE+VVBZ~>$_eF$WLRp2o&2doPJ{ZIr!kN_130wEy0x&462#)B?w go<+a_*4<6WKbYACWl@6bOaK4?07*qoM6N<$f{#i=GXMYp diff --git a/src/Icons/url.png b/src/Icons/url.png index 17b552b0eb821f47ad52fe02c49b934fe5ce8684..542ac36bb852514213a2824b7903aa900d18afd2 100644 GIT binary patch delta 682 zcmV;b0#*I>1kweN87Bq+00469~MTFL<~B00L4;L_t(2&n?o)P7`qez~SG2wsxF06qzp2uogvu2r(v@ z04gWq5;ZZY7vt3j(8wF$*~EiaFB-#1F`DQ>5AJ9%Xi7}j0+gkc($aR?X*)As{GQ)6s#H9QqvPfrgj_)nZAdaISl z$sP3LWh_%gkvow^6vu6$fPrH=_pa2NIs?nm1m2?qa>^na>Junq2L^ljR!HFf9f=zD>NR2C>DaM*GD!2=?R4cdks7PP{tamplErD^l8dZ#jg@T3#!Xo z)K;HRUVKAtqbUAY3ZR<3D77)P$QbpW4xHc-T*pQ_+(G2NA~Nr(Y^8w1f3^PhuX(>T QzyJUM07*qoM6N<$g4<9+b^rhX delta 589 zcmV-T0&p$cIG#F9KU8sp-Jwcz;vkg*KZlpD5@{6*u8Z zEPTnw&tl70A2Ds4s1_NI2&74iCc|G}ZC$1rTagn=F!6efdtYs^w-u?yxd z&KzvqT89zY`?#=>;&YNNvl{Vh?}PXS>ek)8Hf`3!r15BTWo9~xSeD6V!VmJ9oxPOO zu+EMXqh89=|3Zr6F>*hD`DQlBxi~~AWg%Hg3tE4j;3~w4&Un1oEgZ$Bxz+64wdDZE bF_hB(l4c4FD5y_;00000NkvXXu0mjfXKNXT diff --git a/src/bittorrent.cpp b/src/bittorrent.cpp index decf86166e..5e7149f4d4 100644 --- a/src/bittorrent.cpp +++ b/src/bittorrent.cpp @@ -179,6 +179,12 @@ void bittorrent::setUploadLimit(QString hash, long val) { void bittorrent::handleDownloadFailure(QString url, QString reason) { emit downloadFromUrlFailure(url, reason); + // Clean up + int index = url_skippingDlg.indexOf(url); + if(index >= 0) + url_skippingDlg.removeAt(index); + if(savepath_fromurl.contains(url)) + savepath_fromurl.remove(url); } void bittorrent::startTorrentsInPause(bool b) { @@ -368,7 +374,7 @@ QTorrentHandle bittorrent::addMagnetUri(QString magnet_uri, bool resumed) { return h; } if(resumed) { - qDebug("Resuming magnet URI: %s", hash.toUtf8().data()); + qDebug("Resuming magnet URI: %s", hash.toLocal8Bit().data()); } else { qDebug("Adding new magnet URI"); } @@ -386,7 +392,7 @@ QTorrentHandle bittorrent::addMagnetUri(QString magnet_uri, bool resumed) { } // Check if torrent is already in download list - if(s->find_torrent(sha1_hash(hash.toUtf8().data())).is_valid()) { + if(s->find_torrent(sha1_hash(hash.toLocal8Bit().data())).is_valid()) { qDebug("/!\\ Torrent is already in download list"); // Update info Bar addConsoleMessage(tr("'%1' is already in download list.", "e.g: 'xxx.avi' is already in download list.").arg(magnet_uri)); @@ -405,7 +411,7 @@ QTorrentHandle bittorrent::addMagnetUri(QString magnet_uri, bool resumed) { } } QString savePath = getSavePath(hash); - qDebug("addMagnetURI: using save_path: %s", savePath.toUtf8().data()); + qDebug("addMagnetURI: using save_path: %s", savePath.toLocal8Bit().data()); if(defaultTempPath.isEmpty() || (resumed && TorrentPersistentData::isSeed(hash))) { p.save_path = savePath.toLocal8Bit().data(); } else { @@ -455,12 +461,12 @@ QTorrentHandle bittorrent::addMagnetUri(QString magnet_uri, bool resumed) { } // Save persistent data for new torrent Q_ASSERT(h.is_valid()); - qDebug("addMagnetUri: hash: %s", h.hash().toUtf8().data()); + qDebug("addMagnetUri: hash: %s", h.hash().toLocal8Bit().data()); TorrentPersistentData::saveTorrentPersistentData(h, true); qDebug("Persistent data saved"); // Save save_path if(!defaultTempPath.isEmpty()) { - qDebug("addMagnetUri: Saving save_path in persistent data: %s", savePath.toUtf8().data()); + qDebug("addMagnetUri: Saving save_path in persistent data: %s", savePath.toLocal8Bit().data()); TorrentPersistentData::saveSavePath(hash, savePath); } } @@ -555,8 +561,14 @@ QTorrentHandle bittorrent::addTorrent(QString path, bool fromScanDir, QString fr qDebug("Successfuly loaded"); } } - QString savePath = getSavePath(hash); - qDebug("addTorrent: using save_path: %s", savePath.toUtf8().data()); + QString savePath; + if(!from_url.isEmpty() && savepath_fromurl.contains(from_url)) { + // Enforcing the save path defined before URL download (from RSS for example) + savePath = savepath_fromurl.take(from_url); + } else { + savePath = getSavePath(hash); + } + qDebug("addTorrent: using save_path: %s", savePath.toLocal8Bit().data()); if(defaultTempPath.isEmpty() || (resumed && TorrentPersistentData::isSeed(hash))) { p.save_path = savePath.toLocal8Bit().data(); } else { @@ -609,7 +621,7 @@ QTorrentHandle bittorrent::addTorrent(QString path, bool fromScanDir, QString fr TorrentPersistentData::saveTorrentPersistentData(h); // Save save_path if(!defaultTempPath.isEmpty()) { - qDebug("addTorrent: Saving save_path in persistent data: %s", savePath.toUtf8().data()); + qDebug("addTorrent: Saving save_path in persistent data: %s", savePath.toLocal8Bit().data()); TorrentPersistentData::saveSavePath(hash, savePath); } } @@ -1002,6 +1014,10 @@ void bittorrent::setDefaultSavePath(QString savepath) { defaultSavePath = savepath; } +QString bittorrent::getDefaultSavePath() const { + return defaultSavePath; +} + bool bittorrent::useTemporaryFolder() const { return !defaultTempPath.isEmpty(); } @@ -1256,7 +1272,7 @@ void bittorrent::readAlerts() { else if (metadata_received_alert* p = dynamic_cast(a.get())) { QTorrentHandle h(p->handle); if(h.is_valid()) { - qDebug("Received metadata for %s", h.hash().toUtf8().data()); + qDebug("Received metadata for %s", h.hash().toLocal8Bit().data()); emit metadataReceived(h); if(h.is_paused()) { // XXX: Unfortunately libtorrent-rasterbar does not send a torrent_paused_alert @@ -1279,7 +1295,7 @@ void bittorrent::readAlerts() { } else if (torrent_paused_alert* p = dynamic_cast(a.get())) { QTorrentHandle h(p->handle); - qDebug("Received a torrent_paused_alert for %s", h.hash().toUtf8().data()); + qDebug("Received a torrent_paused_alert for %s", h.hash().toLocal8Bit().data()); if(h.is_valid()) { emit torrentPaused(h); } @@ -1379,14 +1395,14 @@ QString bittorrent::getSavePath(QString hash) { QString savePath; if(TorrentTempData::hasTempData(hash)) { savePath = TorrentTempData::getSavePath(hash); - qDebug("getSavePath, got save_path from temp data: %s", savePath.toUtf8().data()); + qDebug("getSavePath, got save_path from temp data: %s", savePath.toLocal8Bit().data()); } else { savePath = TorrentPersistentData::getSavePath(hash); - qDebug("getSavePath, got save_path from persistent data: %s", savePath.toUtf8().data()); + qDebug("getSavePath, got save_path from persistent data: %s", savePath.toLocal8Bit().data()); } if(savePath.isEmpty()) { // use default save path if no other can be found - qDebug("Using default save path because none was set: %s", defaultSavePath.toUtf8().data()); + qDebug("Using default save path because none was set: %s", defaultSavePath.toLocal8Bit().data()); savePath = defaultSavePath; } // Checking if savePath Dir exists @@ -1412,8 +1428,10 @@ void bittorrent::downloadFromUrl(QString url) { downloader->downloadUrl(url); } -void bittorrent::downloadUrlAndSkipDialog(QString url) { +void bittorrent::downloadUrlAndSkipDialog(QString url, QString save_path) { //emit aboutToDownloadFromUrl(url); + if(!save_path.isEmpty()) + savepath_fromurl[url] = save_path; url_skippingDlg << url; // Launch downloader thread downloader->downloadUrl(url); @@ -1491,7 +1509,7 @@ void bittorrent::startUpTorrents() { QPair couple; foreach(couple, hashes) { QString hash = couple.second; - qDebug("Starting up torrent %s", hash.toUtf8().data()); + qDebug("Starting up torrent %s", hash.toLocal8Bit().data()); if(TorrentPersistentData::isMagnet(hash)) { addMagnetUri(TorrentPersistentData::getMagnetUri(hash), true); } else { @@ -1501,7 +1519,7 @@ void bittorrent::startUpTorrents() { } else { // Resume downloads foreach(const QString &hash, known_torrents) { - qDebug("Starting up torrent %s", hash.toUtf8().data()); + qDebug("Starting up torrent %s", hash.toLocal8Bit().data()); if(TorrentPersistentData::isMagnet(hash)) addMagnetUri(TorrentPersistentData::getMagnetUri(hash), true); else diff --git a/src/bittorrent.h b/src/bittorrent.h index fde08afd47..daedc3dd47 100644 --- a/src/bittorrent.h +++ b/src/bittorrent.h @@ -76,6 +76,7 @@ class bittorrent : public QObject { QString filterPath; bool queueingEnabled; QStringList url_skippingDlg; + QHash savepath_fromurl; protected: QString getSavePath(QString hash); @@ -108,6 +109,7 @@ class bittorrent : public QObject { QStringList getPeerBanMessages() const; qlonglong getETA(QString hash) const; bool useTemporaryFolder() const; + QString getDefaultSavePath() const; public slots: QTorrentHandle addTorrent(QString path, bool fromScanDir = false, QString from_url = QString(), bool resumed = false); @@ -137,7 +139,7 @@ class bittorrent : public QObject { void loadWebSeeds(QString fileHash); void increaseDlTorrentPriority(QString hash); void decreaseDlTorrentPriority(QString hash); - void downloadUrlAndSkipDialog(QString); + void downloadUrlAndSkipDialog(QString url, QString save_path=QString::null); // Session configuration - Setters void setListeningPortsRange(std::pair ports); void setMaxConnections(int maxConnec); diff --git a/src/createtorrent.ui b/src/createtorrent.ui index 349a33aada..15fd310c2a 100644 --- a/src/createtorrent.ui +++ b/src/createtorrent.ui @@ -1,33 +1,34 @@ - + + createTorrentDialog - - + + 0 0 592 - 655 + 658 - + Torrent Creation Tool - + - - + + 0 27 - + 16777215 27 - + Sans Serif 14 @@ -38,105 +39,107 @@ false - + Torrent file creation - + Qt::AlignCenter - - + + File or folder to add to the torrent: - + - + - - + + Add a file - - :/Icons/add_file.png + + + :/Icons/add_file.png:/Icons/add_file.png - - + + Add a folder - - :/Icons/add_folder.png + + + :/Icons/add_folder.png:/Icons/add_folder.png - + - + - - + + 0 102 - + 16777215 70 - + Announce urls (trackers): - + - - + + 0 101 - + Web seeds urls (optional): - - + + 0 102 - + 16777215 102 - + Comment (optional): - + txt_comment @@ -144,54 +147,36 @@ - + - - + + 6 - - 0 - - - 0 - - - 0 - - + 0 - - + + QAbstractItemView::MultiSelection - - + + 6 - - 0 - - - 0 - - - 0 - - + 0 - + Qt::Vertical - + 20 16 @@ -200,55 +185,69 @@ - - + + 22 22 - + 22 22 - + - - :/Icons/skin/add.png + + + :/Icons/oxygen/list-add.png:/Icons/oxygen/list-add.png + + + + 18 + 18 + - - + + 22 22 - + 22 22 - + - - :/Icons/skin/remove.png + + + :/Icons/oxygen/list-remove.png:/Icons/oxygen/list-remove.png + + + + 18 + 18 + - + Qt::Vertical - + 20 16 @@ -261,52 +260,34 @@ - - + + 6 - - 0 - - - 0 - - - 0 - - + 0 - - + + QAbstractItemView::MultiSelection - - + + 6 - - 0 - - - 0 - - - 0 - - + 0 - + Qt::Vertical - + 20 16 @@ -315,55 +296,69 @@ - - + + 22 22 - + 22 22 - + - - :/Icons/skin/add.png + + + :/Icons/oxygen/list-add.png:/Icons/oxygen/list-add.png + + + + 18 + 18 + - - + + 22 22 - + 22 22 - + - - :/Icons/skin/remove.png + + + :/Icons/oxygen/list-remove.png:/Icons/oxygen/list-remove.png + + + + 18 + 18 + - + Qt::Vertical - + 20 16 @@ -376,14 +371,14 @@ - - + + 421 102 - + false @@ -393,56 +388,56 @@ - + - - + + Piece size: - - + + 3 - + 32 KiB - + 64 KiB - + 128 KiB - + 256 KiB - + 512 KiB - + 1 MiB - + 2 MiB - + 4 MiB @@ -450,10 +445,10 @@ - + Qt::Horizontal - + 40 20 @@ -464,56 +459,47 @@ - - + + Private (won't be distributed on DHT network if enabled) - - + + Start seeding after creation - - + + Progress: - - + + 0 - - + + 6 - - 0 - - - 0 - - - 0 - - + 0 - + Qt::Horizontal - + 131 31 @@ -522,25 +508,25 @@ - - + + Create and save... - - + + Cancel - + Qt::Horizontal - + 40 20 @@ -553,7 +539,7 @@ - + @@ -562,11 +548,11 @@ createTorrentDialog reject() - + 355 275 - + 179 282 diff --git a/src/engineSelectDlg.cpp b/src/engineSelectDlg.cpp index a351e579e4..0239342734 100644 --- a/src/engineSelectDlg.cpp +++ b/src/engineSelectDlg.cpp @@ -59,7 +59,7 @@ engineSelectDlg::engineSelectDlg(QWidget *parent) : QDialog(parent) { pluginsTree->hideColumn(ENGINE_ID); actionEnable->setIcon(QIcon(QString::fromUtf8(":/Icons/oxygen/button_ok.png"))); actionDisable->setIcon(QIcon(QString::fromUtf8(":/Icons/oxygen/button_cancel.png"))); - actionUninstall->setIcon(QIcon(QString::fromUtf8(":/Icons/skin/remove.png"))); + actionUninstall->setIcon(QIcon(QString::fromUtf8(":/Icons/oxygen/list-remove.png"))); connect(actionEnable, SIGNAL(triggered()), this, SLOT(enableSelection())); connect(actionDisable, SIGNAL(triggered()), this, SLOT(disableSelection())); connect(pluginsTree, SIGNAL(customContextMenuRequested(const QPoint&)), this, SLOT(displayContextMenu(const QPoint&))); diff --git a/src/icons.qrc b/src/icons.qrc index 730decd9bb..9808eb6e36 100644 --- a/src/icons.qrc +++ b/src/icons.qrc @@ -19,7 +19,6 @@ Icons/skin/qbittorrent22.png Icons/skin/new.png Icons/skin/preview.png - Icons/skin/add.png Icons/skin/stalled.png Icons/skin/delete.png Icons/skin/url.png @@ -31,7 +30,6 @@ Icons/skin/paused.png Icons/skin/qb_question.png Icons/skin/open.png - Icons/skin/remove.png Icons/skin/qbittorrent16.png Icons/skin/downloading.png Icons/skin/search.png @@ -96,8 +94,10 @@ Icons/oxygen/edit-copy.png Icons/oxygen/bt_settings.png Icons/oxygen/webui.png + Icons/oxygen/list-remove.png Icons/oxygen/connection.png Icons/oxygen/bug.png + Icons/oxygen/list-add.png Icons/oxygen/folder.png Icons/oxygen/configure.png Icons/oxygen/edit-cut.png diff --git a/src/lang/qbittorrent_bg.qm b/src/lang/qbittorrent_bg.qm index dc364a7f5f42c98719edd1296fece01a6ffe1bed..e8d1889108a72135fb2661a796d0c8a4025d3f1a 100644 GIT binary patch delta 4385 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 PlizlZL+Pv3+KK-K(aT($ diff --git a/src/lang/qbittorrent_bg.ts b/src/lang/qbittorrent_bg.ts index bbef4fadf6..e59ff69d5e 100644 --- a/src/lang/qbittorrent_bg.ts +++ b/src/lang/qbittorrent_bg.ts @@ -824,10 +824,9 @@ Copyright © 2006 от Christophe Dumez<br> Следене за промени в папката - Transfer lists double-click qBittorrent will watch a directory and automatically download torrents present in it - Списъци за трансфер-двойно щракване + Списъци за трансфер-двойно щракване @@ -935,6 +934,12 @@ Copyright © 2006 от Christophe Dumez<br> Bittorrent Bittorrent + + + Transfer lists double-click action + Action executed when doucle-clicking on an item in transfer (download/upload) list + + Connections limit @@ -1156,54 +1161,54 @@ Copyright © 2006 от Christophe Dumez<br> DownloadingTorrents - + Name i.e: file name Име - + Size i.e: file size Размер - + Progress i.e: % downloaded Изпълнение - + DL Speed i.e: Download speed DL Скорост - + UP Speed i.e: Upload speed UP Скорост - + Seeds/Leechs i.e: full/partial sources Даващи/Вземащи - + Ratio Съотношение - + ETA i.e: Estimated Time of Arrival / Time left ЕТА - + qBittorrent %1 started. e.g: qBittorrent v0.x started. qBittorrent %1 стартиран. @@ -1259,7 +1264,7 @@ Copyright © 2006 от Christophe Dumez<br> Сваляне на '%1', моля изчакайте... - + Hide or Show Column Скрий или Покажи Колоната @@ -1272,7 +1277,7 @@ Copyright © 2006 от Christophe Dumez<br> UPnP/NAT-PMP: Следене на порт успешно, съобщение: %1 - + Priority Предимство @@ -1406,7 +1411,7 @@ Copyright © 2006 от Christophe Dumez<br> Общо качени - + Hide or Show Column Скрий или Покажи Колоната @@ -1426,7 +1431,7 @@ Copyright © 2006 от Christophe Dumez<br> GUI - + Open Torrent Files Отвори Торент Файлове @@ -1447,25 +1452,25 @@ Copyright © 2006 от Christophe Dumez<br> Сигурни ли сте че искате да изтриете всички файлове от списъка за сваляне? - - - - - + + + + + &Yes &Да - - - - - + + + + + &No &Не - + Are you sure you want to delete the selected item(s) in download list? Сигурни ли сте че искате да изтриете избраните файлове от списъка за сваляне? @@ -1482,7 +1487,7 @@ Copyright © 2006 от Christophe Dumez<br> kb/с - + Finished Завършен @@ -1527,7 +1532,7 @@ Copyright © 2006 от Christophe Dumez<br> Не мога да създам директория: - + Torrent Files Торент Файлове @@ -1587,16 +1592,16 @@ Copyright © 2006 от Christophe Dumez<br> qBittorrent - - + + qBittorrent qBittorrent - - - - + + + + Are you sure? -- qBittorrent Сигурни ли сте? -- qBittorrent @@ -1850,7 +1855,7 @@ Please close the other one first. Сигурни ли сте че искате да изтриете избраните файлове от списъка за сваляне и от твърдия диск? - + Download finished Свалянето завърши @@ -1864,15 +1869,15 @@ Please close the other one first. Търсачка - - + + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - - + + Connection status: Състояние на връзката: @@ -1935,15 +1940,15 @@ Please close the other one first. qBittorrent %1 стартиран. - - + + DL speed: %1 KiB/s e.g: Download speed: 10 KiB/s DL Скорост %1 KB/с - - + + UP speed: %1 KiB/s e.g: Upload speed: 10 KiB/s UL Скорост %1 KB/с @@ -1964,7 +1969,7 @@ Please close the other one first. Отложен - + Are you sure you want to quit? Сигурни ли сте че искате да напуснете? @@ -2027,14 +2032,14 @@ Please close the other one first. '%1' бе възстановен. - - + + %1 has finished downloading. e.g: xxx.avi has finished downloading. '%1' завърши свалянето. - + I/O Error i.e: Input/Output Error В/И Грешка @@ -2050,12 +2055,12 @@ Please close the other one first. Намерена грешка (пълен диск?), '%1' е в пауза. - + Connection Status: Състояние на връзката: - + Online Свързан @@ -2091,18 +2096,18 @@ Please close the other one first. Сваляне на '%1', моля изчакайте... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Намерена грешка (пълен диск?), '%1' е в пауза. - + Search Търси - + RSS RSS @@ -2116,13 +2121,13 @@ Please close the other one first. DHT поддръжка [ВКЛ], порт: %1 - - + + DHT support [OFF] DHT поддръжка [ИЗКЛ] - + PeX support [ON] PeX поддръжка [ВКЛ] @@ -2131,51 +2136,51 @@ Please close the other one first. PeX поддръжка [ИЗКЛ] - + The download list is not empty. Are you sure you want to quit qBittorrent? Листата за сваляне не е празна. Сигурни ли сте че искате да напуснете qBittorrent? - - + + Downloads Сваляне - + Are you sure you want to delete the selected item(s) in finished list? Сигурни ли сте че искате да изтриете избраните файлове от списъка на завършените сваляния? - + UPnP support [ON] UPnP поддръжка [ВКЛ] - + Encryption support [ON] Поддръжка кодиране [ВКЛ] - + Encryption support [FORCED] Поддръжка кодиране [ФОРСИРАНА] - + Encryption support [OFF] Поддръжка кодиране [ИЗКЛ] - + Alt+1 shortcut to switch to first tab Alt+1 - + An I/O error occured for torrent %1. Reason: %2 e.g: An error occured for torrent xxx.avi. @@ -2184,34 +2189,34 @@ Are you sure you want to quit qBittorrent? Причина:%2 - + Alt+2 shortcut to switch to second tab Alt+2 - + Alt+4 shortcut to switch to fourth tab Alt+4 - + Url download error Грешка при сваляне от Url - + Couldn't download file at url: %1, reason: %2. Невъзможно сваляне на файл от url: %1, причина: %2. - + Are you sure you want to delete the selected item(s) from download list and from hard drive? Сигурни ли сте че искате да изтриете избраните от списъка за сваляне или от твърдия диск? - + Are you sure you want to delete the selected item(s) from finished list and from hard drive? Сигурни ли сте че искате да изтриете избраните от списъка на свалените или от твърдия диск? @@ -2221,50 +2226,50 @@ Are you sure you want to quit qBittorrent? '%1' бе премахнат завинаги. - + Alt+3 shortcut to switch to third tab Alt+3 - + Ctrl+F shortcut to switch to search tab Ctrl+F - + qBittorrent is bound to port: TCP/%1 e.g: qBittorrent is bound to port: 6881 qBittorrent се прехвърля на порт: TCP/%1 - + UPnP support [OFF] UPnP поддръжка [ИЗКЛ] - + NAT-PMP support [ON] NAT-PMP поддръжка [ВКЛ] - + NAT-PMP support [OFF] NAT-PMP поддръжка [ИЗКЛ] - + DHT support [ON], port: UDP/%1 DHT поддръжка [ВКЛ], порт: UDP/%1 - + Local Peer Discovery [ON] Търсене на локални връзки [ВКЛ] - + Local Peer Discovery support [OFF] Търсене на локални връзки [ИЗКЛ] @@ -2274,48 +2279,48 @@ Are you sure you want to quit qBittorrent? '%1' бе премахнат защото съотношението му надвишава определеното. - + qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s) %1 is qBittorrent version qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s) - - + + DL: %1 KiB/s DL: %1 KB/с - - + + UP: %1 KiB/s UP: %1 KB/с - - + + Ratio: %1 Съотношение: %1 - - + + DHT: %1 nodes DHT: %1 възли - - + + No direct connections. This may indicate network configuration problems. Няма директни връзки. Това може да е от проблеми в мрежовата настройка. - + Uploads Качени - + Options were saved successfully. Опциите бяха съхранени успешно. @@ -2653,71 +2658,89 @@ Are you sure you want to quit qBittorrent? RSS - + Search Търси - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Torrents:</span> <span style=" font-style:italic;">(double-click to download)</span></p></body></html> + + + + Delete Изтрий - + Rename Преименувай - + Refresh Обнови + + + Download torrent + + + + + Open news URL + + Create Образуване - + Delete selected streams Изтрий маркираните потоци - + Refresh RSS streams Обнови потоците RSS - + Add a new RSS stream Добави нов поток RSS - <b>News:</b> <i>(double-click to open the link in your web browser)</i> - <b>Новини:</b> <i>(щракни двойно за отваряне на линка в браузъра)</i> + <b>Новини:</b> <i>(щракни двойно за отваряне на линка в браузъра)</i> - + Add RSS stream Добави поток RSS - + Refresh all streams Обнови всички потоци - + RSS streams: Потоци RSS: - + 2 2 - + Mark all as read Отбележи всички като прочетени @@ -2725,86 +2748,86 @@ Are you sure you want to quit qBittorrent? RSSImp - + Please type a rss stream url Моля въведете url на поток rss - + Stream URL: Поток URL: - + Please choose a new name for this stream Моля изберете ново име за този поток - + New stream name: Ново име на потока: - + Are you sure? -- qBittorrent Сигурни ли сте? -- qBittorrent - + &Yes &Да - + &No &Не - + Are you sure you want to delete this stream from the list? Сигурни ли сте че искате да изтриете този поток от списъка? - - - - + + + + Description: Описание: - - - - + + + + url: url: - - - - + + + + Last refresh: Последно обновяване: - + qBittorrent qBittorrent - + This rss feed is already in the list. Този rss feed е вече в списъка. - + Date: Дата: - + Author: Автор: @@ -2812,7 +2835,7 @@ Are you sure you want to quit qBittorrent? RssItem - + No description available Няма налично описание @@ -2820,13 +2843,13 @@ Are you sure you want to quit qBittorrent? RssStream - + %1 ago 10min ago преди %1 - + Never Никога @@ -3120,25 +3143,46 @@ Changelog: addTorrentDialog - + Torrent addition dialog Торента добавя диалог - + Save path: Съхрани път: - + ... ... - + + Torrent size: + + + + + + Unknown + + + + + Free disk space: + + + + Torrent content: Съдържание на Торента: + + + Download in sequential order (slower but good for previewing) + + File name Име файл @@ -3152,22 +3196,21 @@ Changelog: Избран - Download in correct order (slower but good for previewing) - Сваляне в правилен ред (по-бавен, но добър за оглед на файловете) + Сваляне в правилен ред (по-бавен, но добър за оглед на файловете) - + Add to download list in paused state Добави в листа за сваляне в състояние на пауза - + Add Добави - + Cancel Прекъсни @@ -3184,27 +3227,27 @@ Changelog: Избери - + Ignored Игнорирано - + Normal Нормален - + High Висок - + Maximum Максимален - + Collapse all Свий всички @@ -3213,7 +3256,7 @@ Changelog: Разшири всички - + Expand all Разшири всички @@ -3273,18 +3316,18 @@ Changelog: bittorrent - + %1 reached the maximum ratio you set. %1 използва максималното разрешено от вас отношение. - + '%1' was removed permanently. 'xxx.avi' was removed permanently. '%1' бе премахнат завинаги. - + '%1' was removed. 'xxx.avi' was removed. '%1' бе премахнат. @@ -3300,77 +3343,85 @@ Changelog: '%1' бе възстановен. - - + + '%1' is not a valid magnet URI. + + + + + + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. '%1' вече е в листа за сваляне. - - + + + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) '%1' бе възстановен. (бързо възстановяване) - - + + + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. '%1' добавен в листа за сваляне. - - + + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' Не мога да декодирам торент-файла: '%1' - + This file is either corrupted or this isn't a torrent. Този файла или е разрушен или не е торент. - + <font color='red'>%1</font> <i>was blocked due to your IP filter</i> x.y.z.w was blocked <font color='red'>%1</font> <i>бе блокиран от вашия IP филтър</i> - + <font color='red'>%1</font> <i>was banned due to corrupt pieces</i> x.y.z.w was banned <font color='red'>%1</font> <i>бе прекъснат поради разрушени части</i> - + Couldn't listen on any of the given ports. Невъзможно изчакване от дадените портове. - + UPnP/NAT-PMP: Port mapping failure, message: %1 UPnP/NAT-PMP: Грешка при следене на порт, съобщение: %1 - + UPnP/NAT-PMP: Port mapping successful, message: %1 UPnP/NAT-PMP: Следене на порт успешно, съобщение: %1 - + Fast resume data was rejected for torrent %1, checking again... Бърза пауза бе отхвърлена за торент %1, нова проверка... - + Url seed lookup failed for url: %1, message: %2 Url споделяне провалено за url: %1, съобщение: %2 - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... Сваляне на '%1', моля изчакайте... @@ -3687,12 +3738,12 @@ Changelog: Свали от url-ове - + No URL entered Невъведен URL - + Please type at least one URL. Моля въведете поне един URL. @@ -3700,7 +3751,7 @@ Changelog: downloading - + Search Търси @@ -3729,17 +3780,17 @@ Changelog: IP филтър - + Start Старт - + Pause Пауза - + Delete Изтрий @@ -3748,100 +3799,105 @@ Changelog: Изтрий - + Preview file Огледай файла - + Set upload limit Определи лимит качване - + Set download limit Определи лимит сваляне - + Delete Permanently Изтрий завинаги - + Torrent Properties Характеристики на Торента - + Open destination folder Отвори папка получател - + Name Име - + Size Размер - + Progress Изпълнение - + DLSpeed DL Скорост - + UpSpeed UP Скорост - + Seeds/Leechs Даващи/Вземащи - + Ratio Съотношение - + ETA ЕТА - + Buy it Купи го - + Priority Предимство - + Increase priority Увеличи предимството - + Decrease priority Намали предимството - + Force recheck Включени проверки за промени + + + Copy magnet link + + engineSelect @@ -4089,31 +4145,31 @@ However, those plugins were disabled. misc - + B bytes Б - + KiB kibibytes (1024 bytes) КБ - + MiB mebibytes (1024 kibibytes) МБ - + GiB gibibytes (1024 mibibytes) ГБ - + TiB tebibytes (1024 gibibytes) ТБ @@ -4143,31 +4199,31 @@ However, those plugins were disabled. Неизвестно - + Unknown Unknown (size) Неизвестен - + < 1m < 1 minute < 1мин - + %1m e.g: 10minutes %1мин - + %1h%2m e.g: 3hours 5minutes %1ч%2мин - + %1d%2h%3m e.g: 2days 10hours 2minutes %1д%2ч%3мин @@ -4472,7 +4528,7 @@ However, those plugins were disabled. Уточняване - + Unknown Неизвестен @@ -4490,7 +4546,7 @@ However, those plugins were disabled. Файлове включени в торента: - + Size Размер @@ -4528,8 +4584,8 @@ However, those plugins were disabled. Тракери: - - + + None - Unreachable? Няма - Недостъпни? @@ -4538,7 +4594,7 @@ However, those plugins were disabled. Грешки: - + Progress Изпълнение @@ -4654,49 +4710,49 @@ However, those plugins were disabled. Нов тракер url: - + Priorities: Предимства: - + Normal: normal priority. Download order is dependent on availability Нормално: нормално предимство. Поредицата за сваляне зависи от наличността - + High: higher than normal priority. Pieces are preferred over pieces with the same availability, but not over pieces with lower availability Високо: по-високо от нормалното предимство. Частите с висока наличност са предпочитани пред тези с ниска наличност - + Maximum: maximum priority, availability is disregarded, the piece is preferred over any other piece with lower priority Максимално: максимално предимство, наличността се игнорира, частта се предпочита пред всички останали с по-ниско предимство - + File name Име файл - - + + Priority Предимство - - + + qBittorrent qBittorrent - + Trackers list can't be empty. Листата на тракери не може да бъде празна. - + Ignored: file is not downloaded at all Игнорирано: файла изобщо не е свален @@ -4726,12 +4782,12 @@ However, those plugins were disabled. Url даващи - + New url seed: Нов url на даващ: - + This url seed is already in the list. Този url на даващ е вече в списъка. @@ -4741,7 +4797,7 @@ However, those plugins were disabled. Няма - + New url seed New HTTP source Нов url на даващ @@ -4752,12 +4808,12 @@ However, those plugins were disabled. Следните url на даващи са налични за този торент: - + Priorities error Грешни предимства - + Error, you can't filter all the files in a torrent. Грешка, не можете да филтрирате всички файлове в един торент. @@ -4782,18 +4838,18 @@ However, those plugins were disabled. ... - - + + Choose save path Избери път за съхранение - + Save path creation error Грешка при създаване на път за съхранение - + Could not create the save path Не мога да създам път за съхранение @@ -4940,6 +4996,11 @@ However, those plugins were disabled. Seeds / Leechers Даващи / Вземащи + + + Copy magnet link + + Leechers Вземащи @@ -5044,8 +5105,8 @@ However, those plugins were disabled. Вярно - - + + Unable to decode torrent file: Не мога да декодирам торент-файла: @@ -5054,8 +5115,8 @@ However, those plugins were disabled. Този файла или е разрушен или не е торент. - - + + Choose save path Избери път за съхранение @@ -5064,53 +5125,70 @@ However, those plugins were disabled. Грешка - + + Unknown + + + + + (%1 left after torrent download) + e.g. (100MiB left after torrent download) + + + + + (%1 more are required to download) + e.g. (100MiB more are required to download) + + + + Empty save path Празен път за съхранение - + Please enter a save path Моля въведете път за съхранение - + Save path creation error Грешка при създаване на път за съхранение - + Could not create the save path Не мога да създам път за съхранение - + Invalid file selection Невалиден избор на файл - + You must select at least one file in the torrent Трябва да изберете поне един файл в торента - + File name Име файл - + Size Размер - + Progress Изпълнение - - + + Priority Предимство diff --git a/src/lang/qbittorrent_ca.qm b/src/lang/qbittorrent_ca.qm index 3b481bb1852d44c4053fe3be6fd1cfc8c1c32178..02632119f0e8ee80c531520a7d796c35cecf2af2 100644 GIT binary patch delta 1191 zcmXZce@v8h90&0C^V~gmJkN2Qf!)b*+yVC!|Kp6ai_6$u+=A3m}vO-d$0*nJ>5=tu2mPv<29>Xgkof zXn*uriP6~vp}H8z-Ou#6nSN_@(oy6(0HI$1JP(+@ai;$-X2lGI_nrdEN+4Xm2;`lU z-JF>({Yb7Qa!H$)Rn67?iAPa{&_5;>tT>g&sulg7F&+PyV5zK!QptKy|9-qtsq#zf6{UEF` z?dC4&>HvqHyBn_uitBm3s|oNO;e$8xfXWQHf;WhT{6P(6qI_Cz;S0D@xtn*cS13al zo(4F(vbW|cka35Zd4!qu|JbHy<9tCmoIeQYeq*NfFdgqO%TCLJ!Xmnb;@DzBuE=hM zVM~?p)@!{$X$RAv5QY^es6J!Dho7DWmSr&=6U?$NRK_~GZkmbd`iANIlNoqIRdsEO z(y~_WQxw!ZshTOgPH$hM=Dl=->@2l@(>kC8YU2!@w7{x`N!4$Z``B(VfkUDbGtpMEuBW@*`$~`M5UQZN{sys==X}Mu5HwQ3Nbgdmv&c+ z1rJhaU#I9B*aYN6#jPhM0P#4}rDb|PW_o*>6)WXFrK8npI#5_GwYn&*A|~~j!hoem8oC;w_T;4V zmGjhD&oj+IY4oLOntxWhH2OBZ&nr!bt0@`xm#jkItn}-*Hz**l!I`5JV7o>jP+UD~% z`X5Ycw+0eGdPKYP4BftXSlcPSOQrA9exFK>w(3=8xlVpr<&aE2rNr0yXn9_KUu7_> zbcWHDxvD delta 1194 zcmXBUe@v8h90&0C^V~gm_dNHD4&_&O2M5P-AaHkZ9Na^2E?1%prm281s5DoYH78sA zsKiCA&;y}|kj>HNuRvv(kT@Gm%00U!s6ZXzEAR(%Bsg@8Y%JIl^{>$^*19XEi|X*zWa*hpp?fKAJ0169jz z=xz%nxJ3vhc|eAZnSGrZobHaea?+g;jtGF~I5Y1RraZtb?tyUnX`o;p!i95GYpasQ z+4+L)N-2?1qP)muw7aLhfXlvxy;}{sHkfOvDWe^CZkmYOBK6y zQ8@foANA0~l$(ShRXfdRk1+DdNgyhTnf5v}*r-V;qvb|hndz;}y!V*$l4i}Pvw-(+ zrC;S)_n&6o_Zg6XN6Y8Z3LI0~m@Vt62WPYi^Yo^kY3-f^AJR}>(AHa;0h@v8zpV{V z9Rjif+9PjMg7S-$mFl!-zScFz(_Uh~uGb!>(ah>5FaHe0>=ZQzo}$)|i0R>-^z?h8 z=dOva%MtxYw*V=t#oG26Kzx(w9%p)XG5u?qMYBr3+STITCN8KWfSe*OKATEy&lQ(u z_5$jolIhPzpr~AOe@-#ZXp$DVsl2LJ>bG_RNo%CRahY2D zzBF8XpAxp4XnL(Dc$~Nf(r9`9D9QbMd`(+ z9YFd|N{wKbR<-M`R=Pj`tkNd9EdE#ZS1K1NPYL=jYo4daJ+6EtxLQ&}h9}GEE#k_U z`3;7iPy*$9A2acq;gDsBzK0pZ50_MQJdSBG8s_%yr<|7?trh2}$#;y->K|z&O~%yD z%YezwOu1;R9(K}yAY!bQCxQ4brEyr5 dK*4vTcavpKxtg4+M4T%|2c24n^4DXR{s-KWKe+$^ diff --git a/src/lang/qbittorrent_ca.ts b/src/lang/qbittorrent_ca.ts index ef355e93e4..fd6bbad6b1 100644 --- a/src/lang/qbittorrent_ca.ts +++ b/src/lang/qbittorrent_ca.ts @@ -744,12 +744,6 @@ p, li { white-space: pre-wrap; } qBittorrent will watch a directory and automatically download torrents present in it - - - Transfer lists double-click - qBittorrent will watch a directory and automatically download torrents present in it - - Download list: @@ -856,6 +850,12 @@ p, li { white-space: pre-wrap; } Bittorrent + + + Transfer lists double-click action + Action executed when doucle-clicking on an item in transfer (download/upload) list + + Connections limit @@ -1044,54 +1044,54 @@ p, li { white-space: pre-wrap; } DownloadingTorrents - + Name i.e: file name Nom - + Size i.e: file size Mida - + Progress i.e: % downloaded Progrès - + DL Speed i.e: Download speed Vel. Desc - + UP Speed i.e: Upload speed Vel. Pujada - + Seeds/Leechs i.e: full/partial sources - + Ratio - + ETA i.e: Estimated Time of Arrival / Time left ETA - + qBittorrent %1 started. e.g: qBittorrent v0.x started. @@ -1105,12 +1105,12 @@ p, li { white-space: pre-wrap; } No es pot obrir el port especificat. - + Hide or Show Column - + Priority @@ -1239,7 +1239,7 @@ p, li { white-space: pre-wrap; } - + Hide or Show Column @@ -1259,8 +1259,8 @@ p, li { white-space: pre-wrap; } iniciat. - - + + qBittorrent qBittorrent @@ -1277,12 +1277,12 @@ p, li { white-space: pre-wrap; } Vel. Pujada: - + Open Torrent Files Arxius Torrent oberts - + Torrent Files Arxius Torrent @@ -1320,10 +1320,10 @@ p, li { white-space: pre-wrap; } Aquest arxiu està corrupte o no es un arxiu torrent. - - - - + + + + Are you sure? -- qBittorrent Estàs segur? -- qBittorrent @@ -1332,20 +1332,20 @@ p, li { white-space: pre-wrap; } Estàs segur de que vols buidar la llista de descàrregues? - - - - - + + + + + &Yes &Yes - - - - - + + + + + &No &No @@ -1354,7 +1354,7 @@ p, li { white-space: pre-wrap; } Llista de descàrregues buidada. - + Are you sure you want to delete the selected item(s) in download list? Estàs segur de que vols esborrar les descàrregues seleccionades? @@ -1423,7 +1423,7 @@ p, li { white-space: pre-wrap; } /s - + Finished Finalitzat @@ -1695,7 +1695,7 @@ Si et plau tanca l'altre primer. Estàs segur que vols esborrar els objectes seleccionats de la llista de descàrregues i del disc dur? - + Download finished @@ -1709,15 +1709,15 @@ Si et plau tanca l'altre primer. Motor de Busqueda - - + + qBittorrent %1 e.g: qBittorrent v0.x - - + + Connection status: @@ -1762,15 +1762,15 @@ Si et plau tanca l'altre primer. Leechers - - + + DL speed: %1 KiB/s e.g: Download speed: 10 KiB/s - - + + UP speed: %1 KiB/s e.g: Upload speed: 10 KiB/s @@ -1786,7 +1786,7 @@ Si et plau tanca l'altre primer. Validant... - + Are you sure you want to quit? @@ -1801,25 +1801,25 @@ Si et plau tanca l'altre primer. Conectant... - - + + %1 has finished downloading. e.g: xxx.avi has finished downloading. - + I/O Error i.e: Input/Output Error I/O Error - + Connection Status: - + Online @@ -1829,115 +1829,115 @@ Si et plau tanca l'altre primer. Resultats - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. - + Search Cercar - + RSS - - + + DHT support [OFF] - + PeX support [ON] - + The download list is not empty. Are you sure you want to quit qBittorrent? - - + + Downloads Descarregues - + Are you sure you want to delete the selected item(s) in finished list? - + UPnP support [ON] - + Encryption support [ON] - + Encryption support [FORCED] - + Encryption support [OFF] - + Alt+1 shortcut to switch to first tab - + Alt+2 shortcut to switch to second tab - + Alt+4 shortcut to switch to fourth tab - + Url download error - + Couldn't download file at url: %1, reason: %2. - + Are you sure you want to delete the selected item(s) from download list and from hard drive? - + Are you sure you want to delete the selected item(s) from finished list and from hard drive? - + Alt+3 shortcut to switch to third tab - + An I/O error occured for torrent %1. Reason: %2 e.g: An error occured for torrent xxx.avi. @@ -1945,90 +1945,90 @@ Are you sure you want to quit qBittorrent? - + Ctrl+F shortcut to switch to search tab - + qBittorrent is bound to port: TCP/%1 e.g: qBittorrent is bound to port: 6881 - + UPnP support [OFF] - + NAT-PMP support [ON] - + NAT-PMP support [OFF] - + DHT support [ON], port: UDP/%1 - + Local Peer Discovery [ON] - + Local Peer Discovery support [OFF] - + qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s) %1 is qBittorrent version - - + + DL: %1 KiB/s - - + + UP: %1 KiB/s - - + + Ratio: %1 - - + + DHT: %1 nodes - - + + No direct connections. This may indicate network configuration problems. - + Uploads - + Options were saved successfully. @@ -2366,71 +2366,85 @@ Are you sure you want to quit qBittorrent? RSS - + Search Cercar - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Torrents:</span> <span style=" font-style:italic;">(double-click to download)</span></p></body></html> + + + + Delete Esborra - + Rename - + Refresh + + + Download torrent + + + + + Open news URL + + Create Crear - + Delete selected streams - + Refresh RSS streams - + Add a new RSS stream - - <b>News:</b> <i>(double-click to open the link in your web browser)</i> - - - - + Add RSS stream - + Refresh all streams - + RSS streams: - + 2 2 - + Mark all as read @@ -2438,86 +2452,86 @@ Are you sure you want to quit qBittorrent? RSSImp - + Please type a rss stream url - + Stream URL: - + Please choose a new name for this stream - + New stream name: - + Are you sure? -- qBittorrent Estàs segur? -- qBittorrent - + &Yes &Yes - + &No &No - + Are you sure you want to delete this stream from the list? - - - - + + + + Description: - - - - + + + + url: - - - - + + + + Last refresh: - + qBittorrent qBittorrent - + This rss feed is already in the list. - + Date: - + Author: @@ -2525,7 +2539,7 @@ Are you sure you want to quit qBittorrent? RssItem - + No description available @@ -2533,13 +2547,13 @@ Are you sure you want to quit qBittorrent? RssStream - + %1 ago 10min ago - + Never @@ -2813,25 +2827,46 @@ Log: addTorrentDialog - + Torrent addition dialog Formulari d'addició de torrent - + Save path: Ruta guardada: - + ... ... - + + Torrent size: + + + + + + Unknown + Desconegut + + + + Free disk space: + + + + Torrent content: Contingut del Torrent: + + + Download in sequential order (slower but good for previewing) + + File name Nom del fitxer @@ -2845,22 +2880,21 @@ Log: Seleccionat - Download in correct order (slower but good for previewing) - Descarrega en l'ordre correcte (més lent però més bona previsualització) + Descarrega en l'ordre correcte (més lent però més bona previsualització) - + Add to download list in paused state Afegeix a la llista de descàrregues en estat pausat - + Add Afegir - + Cancel Cancelar @@ -2873,32 +2907,32 @@ Log: Desseleccionat - + Ignored - + Normal - + High - + Maximum - + Collapse all - + Expand all @@ -2958,94 +2992,102 @@ Log: bittorrent - + %1 reached the maximum ratio you set. - + '%1' was removed permanently. 'xxx.avi' was removed permanently. - + '%1' was removed. 'xxx.avi' was removed. - - + + '%1' is not a valid magnet URI. + + + + + + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. - - + + + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) - - + + + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. - - + + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' - + This file is either corrupted or this isn't a torrent. Aquest arxiu està corrupte o no es un arxiu torrent. - + <font color='red'>%1</font> <i>was blocked due to your IP filter</i> x.y.z.w was blocked - + <font color='red'>%1</font> <i>was banned due to corrupt pieces</i> x.y.z.w was banned - + Couldn't listen on any of the given ports. No es pot obrir el port especificat. - + UPnP/NAT-PMP: Port mapping failure, message: %1 - + UPnP/NAT-PMP: Port mapping successful, message: %1 - + Fast resume data was rejected for torrent %1, checking again... - + Url seed lookup failed for url: %1, message: %2 - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... @@ -3350,12 +3392,12 @@ Log: Descarregant de URLs - + No URL entered URL no entrada - + Please type at least one URL. Si et plau entra mínimament una URL. @@ -3363,7 +3405,7 @@ Log: downloading - + Search Cercar @@ -3384,17 +3426,17 @@ Log: Vel. Total Pujada: - + Start Comença - + Pause Pausa - + Delete Esborra @@ -3403,100 +3445,105 @@ Log: Neteja - + Preview file Previsualitza el fitxer - + Set upload limit - + Set download limit - + Delete Permanently Esborrar Permanentment - + Torrent Properties Propietats del Torrent - + Open destination folder - + Name Nom - + Size Mida - + Progress Progrès - + DLSpeed - + UpSpeed - + Seeds/Leechs - + Ratio - + ETA ETA - + Buy it - + Priority - + Increase priority - + Decrease priority - + Force recheck + + + Copy magnet link + + engineSelect @@ -3718,31 +3765,31 @@ However, those plugins were disabled. misc - + B bytes B - + KiB kibibytes (1024 bytes) KiB - + MiB mebibytes (1024 kibibytes) MiB - + GiB gibibytes (1024 mibibytes) GiB - + TiB tebibytes (1024 gibibytes) TiB @@ -3767,31 +3814,31 @@ However, those plugins were disabled. Desconegut - + Unknown Unknown (size) Desconegut - + < 1m < 1 minute - + %1m e.g: 10minutes - + %1h%2m e.g: 3hours 5minutes - + %1d%2h%3m e.g: 2days 10hours 2minutes @@ -4082,7 +4129,7 @@ However, those plugins were disabled. Tu pots seleccionar aquí els arxius que vols descàrregar del torrent actual. - + Size Mida @@ -4123,13 +4170,13 @@ However, those plugins were disabled. Localitzant - - + + None - Unreachable? Res - No esta disponible? - + Unknown Desconegut @@ -4150,7 +4197,7 @@ However, those plugins were disabled. Cert - + Progress Progrès @@ -4254,49 +4301,49 @@ However, those plugins were disabled. - + Priorities: - + Normal: normal priority. Download order is dependent on availability - + High: higher than normal priority. Pieces are preferred over pieces with the same availability, but not over pieces with lower availability - + Maximum: maximum priority, availability is disregarded, the piece is preferred over any other piece with lower priority - + File name Nom del fitxer - - + + Priority - - + + qBittorrent qBittorrent - + Trackers list can't be empty. - + Ignored: file is not downloaded at all @@ -4326,12 +4373,12 @@ However, those plugins were disabled. - + New url seed: - + This url seed is already in the list. @@ -4341,7 +4388,7 @@ However, those plugins were disabled. Res - + New url seed New HTTP source @@ -4352,12 +4399,12 @@ However, those plugins were disabled. - + Priorities error - + Error, you can't filter all the files in a torrent. @@ -4382,18 +4429,18 @@ However, those plugins were disabled. ... - - + + Choose save path Escull ruta per salvar - + Save path creation error Guardar ruta creació d'error - + Could not create the save path No es pot creat la ruta guardada @@ -4532,6 +4579,11 @@ However, those plugins were disabled. Seeds / Leechers + + + Copy magnet link + + Leechers Leechers @@ -4612,8 +4664,8 @@ However, those plugins were disabled. Cert - - + + Unable to decode torrent file: Deshabilita el decodificador d' arxius torrent: @@ -4622,8 +4674,8 @@ However, those plugins were disabled. Aquest arxiu està corrupte o no es un arxiu torrent. - - + + Choose save path Escull ruta per salvar @@ -4632,53 +4684,70 @@ However, those plugins were disabled. Fals - + + Unknown + Desconegut + + + + (%1 left after torrent download) + e.g. (100MiB left after torrent download) + + + + + (%1 more are required to download) + e.g. (100MiB more are required to download) + + + + Empty save path Ruta buida - + Please enter a save path Si us plau entra una ruta salvada - + Save path creation error Guardar ruta creació d'error - + Could not create the save path No es pot creat la ruta guardada - + Invalid file selection Seleció invàlida de fitxer - + You must select at least one file in the torrent Has de seleccionar mínimament un fitxer en el torrent - + File name Nom del fitxer - + Size Mida - + Progress Progrès - - + + Priority diff --git a/src/lang/qbittorrent_cs.qm b/src/lang/qbittorrent_cs.qm index 23bb6075f6c24d2ab7921d8e708cac843b604c86..c7b2736d21b0eb3c91e6a6dada0a15d9a3767470 100644 GIT binary patch delta 4453 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 style (Common Desktop Environment like) Styl CDE (jako Common Desktop Environment) + + + Transfer lists double-click action + Action executed when doucle-clicking on an item in transfer (download/upload) list + + @@ -416,10 +422,9 @@ Copyright © 2006 by Christophe Dumez<br> Sledování adresářů - Transfer lists double-click qBittorrent will watch a directory and automatically download torrents present in it - Dvojité kliknutí v seznamu přenosů + Dvojité kliknutí v seznamu přenosů @@ -762,54 +767,54 @@ Copyright © 2006 by Christophe Dumez<br> DownloadingTorrents - + Name i.e: file name Název - + Size i.e: file size Velikost - + Progress i.e: % downloaded Průběh - + DL Speed i.e: Download speed Rychlost stahování - + UP Speed i.e: Upload speed Rychlost nahrávání - + Seeds/Leechs i.e: full/partial sources Seedeři/Leecheři - + Ratio Poměr - + ETA i.e: Estimated Time of Arrival / Time left Odh. čas - + qBittorrent %1 started. e.g: qBittorrent v0.x started. qBittorrent %1 spuštěn. @@ -861,7 +866,7 @@ Copyright © 2006 by Christophe Dumez<br> Stahuji '%1', prosím čekejte... - + Hide or Show Column Zobrazit či skrýt sloupec @@ -874,7 +879,7 @@ Copyright © 2006 by Christophe Dumez<br> UPnP/NAT-PMP: Namapování portů bylo úspěšné, zpráva: %1 - + Priority Priorita @@ -970,7 +975,7 @@ Copyright © 2006 by Christophe Dumez<br> Leecheři - + Hide or Show Column Zobrazit či skrýt sloupec @@ -990,61 +995,61 @@ Copyright © 2006 by Christophe Dumez<br> GUI - + Open Torrent Files Otevřít torrent soubory - - - - - + + + + + &Yes &Ano - - - - - + + + + + &No &Ne - + Are you sure you want to delete the selected item(s) in download list? Jste si jist, že chcete smazat vybrané položky ze seznamu stahování? - + Torrent Files Torrent soubory - - - - + + + + Are you sure? -- qBittorrent Jste si jist? -- qBittorrent - + Download finished Stahování dokončeno - - + + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - - + + Connection status: Stav připojení: @@ -1057,27 +1062,27 @@ Copyright © 2006 by Christophe Dumez<br> Nebyly nalezeny žádné peery... - - + + qBittorrent qBittorrent - - + + DL speed: %1 KiB/s e.g: Download speed: 10 KiB/s Rychlost stahování: %1 KiB/s - - + + UP speed: %1 KiB/s e.g: Upload speed: 10 KiB/s Rychlost nahrávání: %1 KiB/s - + Are you sure you want to quit? Opravdu ukončit program? @@ -1105,14 +1110,14 @@ Copyright © 2006 by Christophe Dumez<br> '%1' obnoven. - - + + %1 has finished downloading. e.g: xxx.avi has finished downloading. Stahování %1 bylo dokončeno. - + I/O Error i.e: Input/Output Error Chyba I/O @@ -1123,12 +1128,12 @@ Copyright © 2006 by Christophe Dumez<br> Nastala chyba při pokusu o čtení či zápis %1. Disk je provděpodobně plný, stahování bylo pozastaveno - + Connection Status: Stav připojení: - + Online Online @@ -1142,18 +1147,18 @@ Copyright © 2006 by Christophe Dumez<br> Žádná příchozí spojení... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Nastala chyba (plný disk?), '%1' pozastaven. - + Search Hledat - + RSS RSS @@ -1167,13 +1172,13 @@ Copyright © 2006 by Christophe Dumez<br> Podpora DHT [ZAP], port: %1 - - + + DHT support [OFF] Podpora DHT [VYP] - + PeX support [ON] Podpora PeX [ZAP] @@ -1182,56 +1187,56 @@ Copyright © 2006 by Christophe Dumez<br> Podpora PeX [VYP] - + The download list is not empty. Are you sure you want to quit qBittorrent? Seznam stahování není prázdný. Opravdu chcete ukončit qBittorrent? - - + + Downloads Stahování - + Finished Dokončeno - + Are you sure you want to delete the selected item(s) in finished list? Jste si jist, že chcete smazat vybrané položky ze seznamu dokončených? - + UPnP support [ON] Podpora UPnP [ZAP] - + Encryption support [ON] Podpora šifrování [ZAP] - + Encryption support [FORCED] Podpora šifrování [VYNUCENO] - + Encryption support [OFF] Podpora šifrování [VYP] - + Alt+1 shortcut to switch to first tab Alt+1 - + An I/O error occured for torrent %1. Reason: %2 e.g: An error occured for torrent xxx.avi. @@ -1240,34 +1245,34 @@ Opravdu chcete ukončit qBittorrent? Důvod: %2 - + Alt+2 shortcut to switch to second tab Alt+2 - + Alt+4 shortcut to switch to fourth tab Alt+4 - + Url download error Chyba stahování URL - + Couldn't download file at url: %1, reason: %2. Nemohu stáhnout soubor na URL: %1, důvod: %2. - + Are you sure you want to delete the selected item(s) from download list and from hard drive? Jste si jist, že chcete smazat vybrané položky ze seznamu stahování a pevného disku? - + Are you sure you want to delete the selected item(s) from finished list and from hard drive? Jste si jist, že chcete smazat vybrané položky ze seznamu dokončených a pevného disku? @@ -1277,50 +1282,50 @@ Opravdu chcete ukončit qBittorrent? '%1' byl trvale odstraněn. - + Alt+3 shortcut to switch to third tab Alt+3 - + Ctrl+F shortcut to switch to search tab Ctrl+F - + qBittorrent is bound to port: TCP/%1 e.g: qBittorrent is bound to port: 6881 qBittorrent naslouchá na portu: TCP/%1 - + UPnP support [OFF] Podpora UPnP [VYP] - + NAT-PMP support [ON] Podpora NAT-PMP [ZAP] - + NAT-PMP support [OFF] Podpora NAT-PMP [VYP] - + DHT support [ON], port: UDP/%1 Podpora DHT [ZAP], port: UDP/%1 - + Local Peer Discovery [ON] Local Peer Discovery [ZAP] - + Local Peer Discovery support [OFF] Podpora Local Peer Discovery [VYP] @@ -1330,48 +1335,48 @@ Opravdu chcete ukončit qBittorrent? '%1' byl odstraněn protože jeho poměr dosáhl nastaveného maxima. - + qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s) %1 is qBittorrent version qBittorrent %1 (Stahování: %2KiB/s, Nahrávání: %3KiB/s) - - + + DL: %1 KiB/s Stahování: %1 KiB/s - - + + UP: %1 KiB/s Nahrávání: %1 KiB/s - - + + Ratio: %1 Poměr: %1 - - + + DHT: %1 nodes DHT: %1 uzlů - - + + No direct connections. This may indicate network configuration problems. Žádná přímá spojení. To může značit problémy s nastavením sítě. - + Uploads Nahrávání - + Options were saved successfully. Nastavení bylo úspěšně uloženo. @@ -1558,67 +1563,85 @@ Opravdu chcete ukončit qBittorrent? RSS - + Search Hledat - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Torrents:</span> <span style=" font-style:italic;">(double-click to download)</span></p></body></html> + + + + Delete Smazat - + Rename Přejmenovat - + Refresh Obnovit - + + Download torrent + + + + + Open news URL + + + + Delete selected streams Smazat vybrané kanály - + Refresh RSS streams Obnovit RSS kanály - + Add a new RSS stream Přidat nový RSS kanál - <b>News:</b> <i>(double-click to open the link in your web browser)</i> - <b>Novinky:</b> <i>(dvojitým kliknutím otevřete odkaz ve webovém prohlížeči)</i> + <b>Novinky:</b> <i>(dvojitým kliknutím otevřete odkaz ve webovém prohlížeči)</i> - + Add RSS stream Přidat RSS kanál - + Refresh all streams Obnovit všechny kanály - + RSS streams: RSS kanály: - + 2 2 - + Mark all as read Označit vše jako přečtené @@ -1626,86 +1649,86 @@ Opravdu chcete ukončit qBittorrent? RSSImp - + Please type a rss stream url Prosím napište URL RSS kanálu - + Stream URL: URL kanálu: - + Please choose a new name for this stream Prosím zvolte nový název pro tento kanál - + New stream name: Nový název kanálu: - + Are you sure? -- qBittorrent Jste si jist? -- qBittorrent - + &Yes &Ano - + &No &Ne - + Are you sure you want to delete this stream from the list? Jste si jist, že chcete smazat tento kanál ze seznamu? - - - - + + + + Description: Popis: - - - - + + + + url: URL: - - - - + + + + Last refresh: Poslední obnova: - + qBittorrent qBittorrent - + This rss feed is already in the list. Tento RSS kanál už v seznamu existuje. - + Date: Datum: - + Author: Autor: @@ -1713,7 +1736,7 @@ Opravdu chcete ukončit qBittorrent? RssItem - + No description available Popis není k dispozici @@ -1721,13 +1744,13 @@ Opravdu chcete ukončit qBittorrent? RssStream - + %1 ago 10min ago Před %1 - + Never Nikdy @@ -1884,72 +1907,92 @@ Opravdu chcete ukončit qBittorrent? addTorrentDialog - + Torrent addition dialog Dialog pro přidání torrentu - + Save path: Uložit do: - + ... ... - + + Torrent size: + + + + + + Unknown + Neznámý + + + + Free disk space: + + + + Torrent content: Obsah torrentu: - + + Download in sequential order (slower but good for previewing) + + + Download in correct order (slower but good for previewing) - Stahovat ve správném pořadí (pomalejší, ale dobré pro náhled) + Stahovat ve správném pořadí (pomalejší, ale dobré pro náhled) - + Add to download list in paused state Přidat do seznamu stahování jako pozastavené - + Add Přidat - + Cancel Zrušit - + Ignored Ignorovat - + Normal Normální - + High Vysoká - + Maximum Maximální - + Collapse all Sbalit vše - + Expand all Rozbalit vše @@ -2009,18 +2052,18 @@ Opravdu chcete ukončit qBittorrent? bittorrent - + %1 reached the maximum ratio you set. '%1' - poměr dosáhl nastaveného maxima. - + '%1' was removed permanently. 'xxx.avi' was removed permanently. '%1' byl trvale odstraněn. - + '%1' was removed. 'xxx.avi' was removed. '%1' byl odstraněn. @@ -2036,77 +2079,85 @@ Opravdu chcete ukončit qBittorrent? '%1' obnoven. - - + + '%1' is not a valid magnet URI. + + + + + + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. '%1' už je v seznamu stahování. - - + + + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) '%1' obnoven. (rychlé obnovení) - - + + + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. '%1' přidán do seznamu stahování. - - + + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' Nelze dekódovat soubor torrentu: '%1' - + This file is either corrupted or this isn't a torrent. Tento soubor je buď poškozen, nebo to není soubor torrentu. - + <font color='red'>%1</font> <i>was blocked due to your IP filter</i> x.y.z.w was blocked <font color='red'>%1</font> <i>byl zablokován kvůli filtru IP</i> - + <font color='red'>%1</font> <i>was banned due to corrupt pieces</i> x.y.z.w was banned <font color='red'>%1</font> <i>byl zakázán kvůli poškozeným částem</i> - + Couldn't listen on any of the given ports. Nelze naslouchat na žádném z udaných portů. - + UPnP/NAT-PMP: Port mapping failure, message: %1 UPnP/NAT-PMP: Namapování portů selhalo, zpráva: %1 - + UPnP/NAT-PMP: Port mapping successful, message: %1 UPnP/NAT-PMP: Namapování portů bylo úspěšné, zpráva: %1 - + Fast resume data was rejected for torrent %1, checking again... Rychlé obnovení torrentu %1 bylo odmítnuto, zkouším znovu... - + Url seed lookup failed for url: %1, message: %2 Vyhledání URL seedu selhalo pro URL: %1, zpráva: %2 - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... Stahuji '%1', prosím čekejte... @@ -2339,12 +2390,12 @@ Opravdu chcete ukončit qBittorrent? Stahovat z URL - + No URL entered Nebylo vloženo žádné URL - + Please type at least one URL. Prosím napište alespoň jedno URL. @@ -2352,7 +2403,7 @@ Opravdu chcete ukončit qBittorrent? downloading - + Search Hledat @@ -2365,17 +2416,17 @@ Opravdu chcete ukončit qBittorrent? IP filtr - + Start Spustit - + Pause Pozastavit - + Delete Smazat @@ -2384,100 +2435,105 @@ Opravdu chcete ukončit qBittorrent? Vyčistit - + Preview file Náhled souboru - + Set upload limit Nastavit limit nahrávání - + Set download limit Nastavit limit stahování - + Delete Permanently Trvale smazat - + Torrent Properties Vlastnosti torrentu - + Open destination folder Otevřít cílový adresář - + Name Název - + Size Velikost - + Progress Průběh - + DLSpeed Rychlost stahování - + UpSpeed Rychlost nahrávání - + Seeds/Leechs Seedeři/Leecheři - + Ratio Poměr - + ETA Odh. čas - + Buy it Koupit - + Priority Priorita - + Increase priority Zvýšit prioritu - + Decrease priority Snížit prioritu - + Force recheck Překontrolovat platnost + + + Copy magnet link + + engineSelect @@ -2701,61 +2757,61 @@ Nicméně, tyto moduly byly vypnuty. misc - + B bytes B - + KiB kibibytes (1024 bytes) KiB - + MiB mebibytes (1024 kibibytes) MiB - + GiB gibibytes (1024 mibibytes) GiB - + TiB tebibytes (1024 gibibytes) TiB - + Unknown Unknown (size) Neznámý - + < 1m < 1 minute < 1m - + %1m e.g: 10minutes %1m - + %1h%2m e.g: 3hours 5minutes %1h%2m - + %1d%2h%3m e.g: 2days 10hours 2minutes %1d%2h%3m @@ -2891,7 +2947,7 @@ Nicméně, tyto moduly byly vypnuty. Soubory obsažené v aktuálním torrentu: - + Size Velikost @@ -2901,13 +2957,13 @@ Nicméně, tyto moduly byly vypnuty. Trackery: - - + + None - Unreachable? Žádné - nedostupné? - + Progress Průběh @@ -2995,49 +3051,49 @@ Nicméně, tyto moduly byly vypnuty. Trackery - + Priorities: Priority: - + Normal: normal priority. Download order is dependent on availability Normální: normální priorita. Pořadí stahování záleží na dostupnosti - + High: higher than normal priority. Pieces are preferred over pieces with the same availability, but not over pieces with lower availability Vysoká: vyšší než normální priorita. Části mají přednost před částmi se stejnou dostupností, ale ne před částmi s dostupností nižší - + Maximum: maximum priority, availability is disregarded, the piece is preferred over any other piece with lower priority Maximální: maximální priorita, na dostupnost se nebere ohled, část je upřednostněna před částmi s nižší prioritou - + File name Název souboru - - + + Priority Priorita - - + + qBittorrent qBittorrent - + Trackers list can't be empty. Seznam trackerů nesmí být prázdný. - + Ignored: file is not downloaded at all Ignorovat: soubor se vůbec nestahuje @@ -3062,7 +3118,7 @@ Nicméně, tyto moduly byly vypnuty. Vysoká - + Unknown Neznámý @@ -3072,17 +3128,17 @@ Nicméně, tyto moduly byly vypnuty. URL seedy - + New url seed: Nový URL seed: - + This url seed is already in the list. Tento URL seed už v seznamu existuje. - + New url seed New HTTP source Nový URL seed @@ -3093,12 +3149,12 @@ Nicméně, tyto moduly byly vypnuty. Následující URL seedy jsou k dispozici pro tento torrent: - + Priorities error Chyba priorit - + Error, you can't filter all the files in a torrent. Chyba, nemůžete v torrentu filtrovat všechny soubory. @@ -3123,18 +3179,18 @@ Nicméně, tyto moduly byly vypnuty. ... - - + + Choose save path Vyberte cestu pro uložení - + Save path creation error Chyba při vytváření cesty pro uložení - + Could not create the save path Nemohu vytvořit cestu pro uložení @@ -3261,6 +3317,11 @@ Nicméně, tyto moduly byly vypnuty. Seeds / Leechers Seedeři / Leecheři + + + Copy magnet link + + Leechers Leecheři @@ -3349,8 +3410,8 @@ Nicméně, tyto moduly byly vypnuty. torrentAdditionDialog - - + + Unable to decode torrent file: Nelze dekódovat soubor torrentu: @@ -3359,59 +3420,76 @@ Nicméně, tyto moduly byly vypnuty. Tento soubor je buď poškozen, nebo to není soubor torrentu. - - + + Unknown + Neznámý + + + + (%1 left after torrent download) + e.g. (100MiB left after torrent download) + + + + + (%1 more are required to download) + e.g. (100MiB more are required to download) + + + + + Choose save path Vyberte cestu pro uložení - + Empty save path Prázdná cesta pro uložení - + Please enter a save path Vložte prosím cestu pro uložení - + Save path creation error Chyba při vytváření cesty pro uložení - + Could not create the save path Nemohu vytvořit cestu pro uložení - + Invalid file selection Neplatný výběr souboru - + You must select at least one file in the torrent Musíte v torrentu vybrat alespoň jeden soubor - + File name Název souboru - + Size Velikost - + Progress Průběh - - + + Priority Priorita diff --git a/src/lang/qbittorrent_da.qm b/src/lang/qbittorrent_da.qm index 9f2769e283910c3acb750d605a5dd303183d13c6..f40ad252d8cecd35bc8e2d8e20fba19c87283567 100644 GIT binary patch delta 1418 zcmXApdr(wW9LK-+?%sR3cimkh1$SE)1$JFvad|F+u)IV-O~(gd5Drs1rD;wQO3WZS zh)=}uB4~{d%#w#_O3IKTIUmTb?33&AfAl?Yf z9i|JIKg>Bm;V@T%@BIqUFJm;hp}8}>#l`v#yE&=^LQXuLIgN2jHe<#+^^ff_(X9}g z1t3vi^lWC#3}u}D7(#mqkiHW__emi3s+z?GnF5gA*hd0d8OO}Ttm<8K#(QcdH@V7I zjrqksAT$;Ws<#4sKk{p7IbZ=}R4rqMih`vTqU?vZxWEao|}-q0hzGu=4M?B26TOlFRkJZ?^pu_ zU*)=tvjLZryEKpvyj;dTJiGu%HS+f*^%lBJ}^C(U!x=Eraj;{wQMIp ztN5npq}sTP(Nx6WUR(f#`Xq6Ka3u{QwDq}`o+ zhH6;E7~*9NyU7@7XLN5;Z5n%wt6h7<`6(IyTzlpH-zXav?TroOA#c|{aw#;f5XNSa z=7gm}d?R@s;!`U%L35*pk2miI(jG8o{3{&MY@vwk5Kf$H1;&nNbp6DbF;O(nCI`p) zF?xE$g!}u*xO6e|{LetrO!cuQsA{I@?O8?=yyC5OG|LZ)_oB&&$P$TXOgImMaogn5Vft1F?5M?YV}>3Kc{q^BEz#Hl)H5~h(O}sBOl0IuRQwE3ux1H z_+$eeRHV~%oTW=%tCK%iLiHL{K@5^boy9`iq_wD#qTQU*r0ZWe2uv^4T`Yc^lDkLu zYoCW66sx*Iw1-DFjGC8EMU6km7_yx)Z8c-|@loZkQ1P}CYKIuarK{hG)?nv;y`|tJ zT{1}@T6B{FH$iW!qu0j2mC*@RFIlTnm+O}|h61Bs=&R*Jl!+Ss^`Nz6K!W~;KP570 zBV*=mgWKT)%%UOhycMvA846d%QJ*-&M`hH{kQl?^88i;}89Lh+(GxS(XxvT;v!56P zN0rj$`o=g?j@50-E+=8=X~G)`+xVw z9?e(Hnh!>YHUWqNg4&7cKQHGhwg*xNV^goyFvSsZsWH@Zvhq`p7$k^hEB~m_gZ*hY0}K>9}noyGQL!%Y1vi@ zOz6?{8fOEM{hIHux`9y@nujepKyE6405UGoIvJvbr~1v_HmVZQZA!`Ti?2c z^mK4L|E8>sI~Yv`+%Ls>K)7Ye_@S&OeTnX!o#*r|An~dCL~E^ms`H*)LMeE4Kd+`)&ZoQYA|WCqk&C93oL(^? zcLtDFD4Oq6%n1*~vdzcoy#->qe>KTo&6v_9)?eC5!ZeB7wN&r8ezEz(N3`$0_&KKn z(sRZrop^F}1R!4%e+Z#1bCT<&(E25`w^@q(%RtjJq?o0;Z+Oj`I{+^bvXfj{-SqrM!5^L{afO&&~Idk1hI(h3}Aq z)Ae`Grce~;)e>5cNcNjEkAfPzm(gwYt9qG&wHK&8I&1ACzn%Ua)U9j$e)>jBU75%j zaMADXs!hPeEX9)7LtQ5-Aq4|e&2JUkR{H$-w=ssdDFvM&^l`YP6eV5&f(Ml1Wp%VZ zsFds@3DU+WOB-o@kPT4gDJc# zhWr&VR8o!M;|eN$$S6b03>t^E7`oew=)xqUaSMr%m2V96E2loZVEjMO;5cLEk#%It zU}NWHi7r}5{+P~n9~XCxx2?fctUx7}V=3`X6k{Ap>HjW`%IH@@Pb<}I&p|adEJ$78 T^r;r7t-Ces`~qBittorrent will watch a directory and automatically download torrents present in it - - - Transfer lists double-click - qBittorrent will watch a directory and automatically download torrents present in it - - Download list: @@ -726,6 +720,12 @@ Copyright © 2006 by Christophe Dumez<br> Bittorrent + + + Transfer lists double-click action + Action executed when doucle-clicking on an item in transfer (download/upload) list + + Connections limit @@ -914,54 +914,54 @@ Copyright © 2006 by Christophe Dumez<br> DownloadingTorrents - + Name i.e: file name Navn - + Size i.e: file size Størrelse - + Progress i.e: % downloaded Hentet - + DL Speed i.e: Download speed DL hastighed - + UP Speed i.e: Upload speed UP hastighed - + Seeds/Leechs i.e: full/partial sources Seedere/Leechere - + Ratio - + ETA i.e: Estimated Time of Arrival / Time left Tid Tilbage - + qBittorrent %1 started. e.g: qBittorrent v0.x started. qBittorrent %1 startet. @@ -1000,12 +1000,12 @@ Copyright © 2006 by Christophe Dumez<br> Downloader '%1', vent venligst... - + Hide or Show Column - + Priority @@ -1139,7 +1139,7 @@ Copyright © 2006 by Christophe Dumez<br> - + Hide or Show Column @@ -1147,7 +1147,7 @@ Copyright © 2006 by Christophe Dumez<br> GUI - + Open Torrent Files Åbn Torrent Filer @@ -1156,25 +1156,25 @@ Copyright © 2006 by Christophe Dumez<br> Denne fil er enten korrupt eller ikke en torrent. - - - - - + + + + + &Yes &Ja - - - - - + + + + + &No &Nej - + Are you sure you want to delete the selected item(s) in download list? Er du sikker på at du vil slette det markerede fra download listen? @@ -1187,15 +1187,15 @@ Copyright © 2006 by Christophe Dumez<br> Downloader... - + Torrent Files Torrent Filer - - - - + + + + Are you sure? -- qBittorrent Er du sikker? -- qBittorrent @@ -1284,7 +1284,7 @@ Luk venglist denne først. Overførsler - + Download finished Download afsluttet @@ -1301,15 +1301,15 @@ Luk venglist denne først. Er du sikker på at du vil slette de markerede elementer i download listen og på harddisken? - - + + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - - + + Connection status: Forbindelses status: @@ -1372,21 +1372,21 @@ Luk venglist denne først. qBittorrent %1 startet. - - + + qBittorrent qBittorrent - - + + DL speed: %1 KiB/s e.g: Download speed: 10 KiB/s DL hastighed: %1 KB/s - - + + UP speed: %1 KiB/s e.g: Upload speed: 10 KiB/s UP hastighed: %1 KB/s @@ -1407,7 +1407,7 @@ Luk venglist denne først. Gået i stå - + Are you sure you want to quit? Er du sikker på at du vil afslutte? @@ -1470,14 +1470,14 @@ Luk venglist denne først. '%1' fortsat. - - + + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 er hentet færdig. - + I/O Error i.e: Input/Output Error I/O Fejl @@ -1488,12 +1488,12 @@ Luk venglist denne først. Der opstod en fejl under forsøget på at skrive %1. Disken er måske fuld, downloaden er sat på pause - + Connection Status: Forbindelses Status: - + Online Online @@ -1529,120 +1529,120 @@ Luk venglist denne først. Downloader '%1', vent venligst... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Der opstod en fejl (fuld disk?), '%1' sat på pause. - + Search Søg - + RSS - - + + DHT support [OFF] - + PeX support [ON] - + The download list is not empty. Are you sure you want to quit qBittorrent? - - + + Downloads - + Finished Færdig - + Are you sure you want to delete the selected item(s) in finished list? - + UPnP support [ON] - + Encryption support [ON] - + Encryption support [FORCED] - + Encryption support [OFF] - + Alt+1 shortcut to switch to first tab - + Alt+2 shortcut to switch to second tab - + Alt+4 shortcut to switch to fourth tab - + Url download error - + Couldn't download file at url: %1, reason: %2. - + Are you sure you want to delete the selected item(s) from download list and from hard drive? - + Are you sure you want to delete the selected item(s) from finished list and from hard drive? - + Alt+3 shortcut to switch to third tab - + An I/O error occured for torrent %1. Reason: %2 e.g: An error occured for torrent xxx.avi. @@ -1650,90 +1650,90 @@ Are you sure you want to quit qBittorrent? - + Ctrl+F shortcut to switch to search tab - + qBittorrent is bound to port: TCP/%1 e.g: qBittorrent is bound to port: 6881 - + UPnP support [OFF] - + NAT-PMP support [ON] - + NAT-PMP support [OFF] - + DHT support [ON], port: UDP/%1 - + Local Peer Discovery [ON] - + Local Peer Discovery support [OFF] - + qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s) %1 is qBittorrent version - - + + DL: %1 KiB/s - - + + UP: %1 KiB/s - - + + Ratio: %1 - - + + DHT: %1 nodes - - + + No direct connections. This may indicate network configuration problems. - + Uploads - + Options were saved successfully. Indstillingerne blev gemt. @@ -1996,71 +1996,85 @@ Are you sure you want to quit qBittorrent? RSS - + Search Søg - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Torrents:</span> <span style=" font-style:italic;">(double-click to download)</span></p></body></html> + + + + Delete Slet - + Rename - + Refresh + + + Download torrent + + + + + Open news URL + + Create Opret - + Delete selected streams - + Refresh RSS streams - + Add a new RSS stream - - <b>News:</b> <i>(double-click to open the link in your web browser)</i> - - - - + Add RSS stream - + Refresh all streams - + RSS streams: - + 2 2 - + Mark all as read @@ -2068,86 +2082,86 @@ Are you sure you want to quit qBittorrent? RSSImp - + Please type a rss stream url - + Stream URL: - + Please choose a new name for this stream - + New stream name: - + Are you sure? -- qBittorrent Er du sikker? -- qBittorrent - + &Yes &Ja - + &No &Nej - + Are you sure you want to delete this stream from the list? - - - - + + + + Description: - - - - + + + + url: - - - - + + + + Last refresh: - + qBittorrent qBittorrent - + This rss feed is already in the list. - + Date: - + Author: @@ -2155,7 +2169,7 @@ Are you sure you want to quit qBittorrent? RssItem - + No description available @@ -2163,13 +2177,13 @@ Are you sure you want to quit qBittorrent? RssStream - + %1 ago 10min ago - + Never @@ -2439,25 +2453,46 @@ Changelog: addTorrentDialog - + Torrent addition dialog Tilføj ny torrent - + Save path: Gem i: - + ... ... - + + Torrent size: + + + + + + Unknown + Ukendt + + + + Free disk space: + + + + Torrent content: Indhold af torrent: + + + Download in sequential order (slower but good for previewing) + + File name Fil navn @@ -2471,22 +2506,21 @@ Changelog: Valgt - Download in correct order (slower but good for previewing) - Download i korrekt rækkefølge (langsommere, men godt for smugkig) + Download i korrekt rækkefølge (langsommere, men godt for smugkig) - + Add to download list in paused state Tilføj til download listen som sat på pause - + Add Tilføj - + Cancel Annuller @@ -2499,32 +2533,32 @@ Changelog: Vælg - + Ignored - + Normal - + High - + Maximum - + Collapse all - + Expand all @@ -2584,18 +2618,18 @@ Changelog: bittorrent - + %1 reached the maximum ratio you set. - + '%1' was removed permanently. 'xxx.avi' was removed permanently. - + '%1' was removed. 'xxx.avi' was removed. '%1' blev fjernet. @@ -2611,77 +2645,85 @@ Changelog: '%1' fortsat. - - + + '%1' is not a valid magnet URI. + + + + + + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. '%1' findes allerede i download listen. - - + + + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) '%1' fortsat. (hurtig fortsættelse) - - + + + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. '%1' lagt til download listen. - - + + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' Kan ikke dekode torrent filen: '%1' - + This file is either corrupted or this isn't a torrent. Denne fil er enten korrupt eller ikke en torrent. - + <font color='red'>%1</font> <i>was blocked due to your IP filter</i> x.y.z.w was blocked - + <font color='red'>%1</font> <i>was banned due to corrupt pieces</i> x.y.z.w was banned - + Couldn't listen on any of the given ports. Kunne ikke lytte på de opgivne porte. - + UPnP/NAT-PMP: Port mapping failure, message: %1 - + UPnP/NAT-PMP: Port mapping successful, message: %1 - + Fast resume data was rejected for torrent %1, checking again... - + Url seed lookup failed for url: %1, message: %2 - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... Downloader '%1', vent venligst... @@ -2966,12 +3008,12 @@ Changelog: Hent fra url(er) - + No URL entered Der er ikke indtastet nogen URL - + Please type at least one URL. Indtast venligst mindst en URL. @@ -2979,7 +3021,7 @@ Changelog: downloading - + Search Søg @@ -3000,17 +3042,17 @@ Changelog: Total UP Hastighed: - + Start Start - + Pause Pause - + Delete Slet @@ -3019,100 +3061,105 @@ Changelog: Ryd resultater - + Preview file Smugkig fil - + Set upload limit - + Set download limit - + Delete Permanently Slet Permanent - + Torrent Properties - + Open destination folder - + Name Navn - + Size Størrelse - + Progress Hentet - + DLSpeed - + UpSpeed - + Seeds/Leechs Seedere/Leechere - + Ratio - + ETA Tid Tilbage - + Buy it - + Priority - + Increase priority - + Decrease priority - + Force recheck + + + Copy magnet link + + engineSelect @@ -3334,31 +3381,31 @@ However, those plugins were disabled. misc - + B bytes B - + KiB kibibytes (1024 bytes) KB - + MiB mebibytes (1024 kibibytes) MB - + GiB gibibytes (1024 mibibytes) GB - + TiB tebibytes (1024 gibibytes) TB @@ -3368,31 +3415,31 @@ However, those plugins were disabled. Ukendt - + Unknown Unknown (size) Ukendt - + < 1m < 1 minute < 1 m - + %1m e.g: 10minutes %1m - + %1h%2m e.g: 3hours 5minutes %1h%2m - + %1d%2h%3m e.g: 2days 10hours 2minutes %1d%2h%3m @@ -3585,7 +3632,7 @@ However, those plugins were disabled. OK - + Unknown Ukendt @@ -3595,7 +3642,7 @@ However, those plugins were disabled. Filer i torrent: - + Size Størrelse @@ -3625,8 +3672,8 @@ However, those plugins were disabled. Trackere: - - + + None - Unreachable? Ingen - Kan ikke nås? @@ -3635,7 +3682,7 @@ However, those plugins were disabled. Fejl: - + Progress Hentet @@ -3723,49 +3770,49 @@ However, those plugins were disabled. - + Priorities: - + Normal: normal priority. Download order is dependent on availability - + High: higher than normal priority. Pieces are preferred over pieces with the same availability, but not over pieces with lower availability - + Maximum: maximum priority, availability is disregarded, the piece is preferred over any other piece with lower priority - + File name Fil navn - - + + Priority - - + + qBittorrent qBittorrent - + Trackers list can't be empty. - + Ignored: file is not downloaded at all @@ -3795,12 +3842,12 @@ However, those plugins were disabled. - + New url seed: - + This url seed is already in the list. @@ -3810,7 +3857,7 @@ However, those plugins were disabled. Intet - + New url seed New HTTP source @@ -3821,12 +3868,12 @@ However, those plugins were disabled. - + Priorities error - + Error, you can't filter all the files in a torrent. @@ -3851,18 +3898,18 @@ However, those plugins were disabled. ... - - + + Choose save path Gem til denne mappe - + Save path creation error Fejl ved oprettelse af mappe - + Could not create the save path Kunne ikke oprette mappe svarende til den indtastede sti @@ -4001,6 +4048,11 @@ However, those plugins were disabled. Seeds / Leechers + + + Copy magnet link + + Leechers Leechere @@ -4081,8 +4133,8 @@ However, those plugins were disabled. Sandt - - + + Unable to decode torrent file: Kan ikke dekode torrent filen: @@ -4091,8 +4143,8 @@ However, those plugins were disabled. Denne fil er enten korrupt eller ikke en torrent. - - + + Choose save path Gem til denne mappe @@ -4101,53 +4153,70 @@ However, those plugins were disabled. Falsk - + + Unknown + Ukendt + + + + (%1 left after torrent download) + e.g. (100MiB left after torrent download) + + + + + (%1 more are required to download) + e.g. (100MiB more are required to download) + + + + Empty save path Ingen mappe - + Please enter a save path Vælg venligst en mappe som der skal hentes til - + Save path creation error Fejl ved oprettelse af mappe - + Could not create the save path Kunne ikke oprette mappe svarende til den indtastede sti - + Invalid file selection Valg af filer ugyldigt - + You must select at least one file in the torrent Du skal vælge mindst en fil per torrent - + File name Fil navn - + Size Størrelse - + Progress Hentet - - + + Priority diff --git a/src/lang/qbittorrent_de.qm b/src/lang/qbittorrent_de.qm index a7edd3344f2216aaa9c54bbde6865d87436b3ef7..21c9963eef09c772c2fdbdf6d1da173c376c7680 100644 GIT binary patch delta 4417 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 delta 4730 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 Oa#K?5!_zB&zxUr<(}p4d diff --git a/src/lang/qbittorrent_de.ts b/src/lang/qbittorrent_de.ts index c181beb89d..f9f9c8dc40 100644 --- a/src/lang/qbittorrent_de.ts +++ b/src/lang/qbittorrent_de.ts @@ -767,10 +767,9 @@ p, li { white-space: pre-wrap; } Beobachte Ordner - Transfer lists double-click qBittorrent will watch a directory and automatically download torrents present in it - Transferlisten Doppelklick + Transferlisten Doppelklick @@ -878,6 +877,12 @@ p, li { white-space: pre-wrap; } Bittorrent Bittorrent + + + Transfer lists double-click action + Action executed when doucle-clicking on an item in transfer (download/upload) list + + Connections limit @@ -1100,54 +1105,54 @@ qBittorrent beobachtet das Verzeichniss und starten den Download von vorhandenen DownloadingTorrents - + Name i.e: file name Name - + Size i.e: file size Größe - + Progress i.e: % downloaded Fortschritt - + DL Speed i.e: Download speed DL Geschwindigkeit - + UP Speed i.e: Upload speed UP Geschwindigkeit - + Seeds/Leechs i.e: full/partial sources Seeder/Leecher - + Ratio Verhältnis - + ETA i.e: Estimated Time of Arrival / Time left voraussichtliche Ankunftszeit - + qBittorrent %1 started. e.g: qBittorrent v0.x started. qBittorrent %1 gestartet. @@ -1203,7 +1208,7 @@ qBittorrent beobachtet das Verzeichniss und starten den Download von vorhandenen Lade '%1', bitte warten... - + Hide or Show Column Verstecke oder zeige Spalte @@ -1216,7 +1221,7 @@ qBittorrent beobachtet das Verzeichniss und starten den Download von vorhandenen UPnP/NAT-PMP: Port Mapping erfolgreich, Medlung: %1 - + Priority Priorität @@ -1350,7 +1355,7 @@ qBittorrent beobachtet das Verzeichniss und starten den Download von vorhandenen Insgesamt hochgeladen - + Hide or Show Column Verstecke oder zeige Spalte @@ -1378,8 +1383,8 @@ qBittorrent beobachtet das Verzeichniss und starten den Download von vorhandenen :: By Christophe Dumez :: Copyright (c) 2006 - - + + qBittorrent qBittorrent @@ -1400,12 +1405,12 @@ qBittorrent beobachtet das Verzeichniss und starten den Download von vorhandenen UP Geschwindigkeit: - + Open Torrent Files Öffne Torrent-Dateien - + Torrent Files Torrent-Dateien @@ -1447,10 +1452,10 @@ qBittorrent beobachtet das Verzeichniss und starten den Download von vorhandenen Diese Datei ist entweder beschädigt, oder kein torrent. - - - - + + + + Are you sure? -- qBittorrent Sind Sie sicher? -- qBittorrent @@ -1459,20 +1464,20 @@ qBittorrent beobachtet das Verzeichniss und starten den Download von vorhandenen Wollen Sie wirklich alle Dateien aus der Download Liste löschen? - - - - - + + + + + &Yes &Ja - - - - - + + + + + &No &Nein @@ -1481,7 +1486,7 @@ qBittorrent beobachtet das Verzeichniss und starten den Download von vorhandenen Download Liste gelöscht. - + Are you sure you want to delete the selected item(s) in download list? Wollen Sie wirklich die ausgewählten Elemente aus der Download-Liste löschen? @@ -1541,7 +1546,7 @@ qBittorrent beobachtet das Verzeichniss und starten den Download von vorhandenen <b>qBittorrent</b><br>DL Geschwindigkeit: - + Finished Beendet @@ -1802,7 +1807,7 @@ Bitte schliessen Sie diesen zuerst. Wollen Sie wirklich die ausgewählten Elemente aus der Download Liste und von der Festplatte löschen? - + Download finished Download abgeschlossen @@ -1816,15 +1821,15 @@ Bitte schliessen Sie diesen zuerst. Suchmaschine - - + + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - - + + Connection status: Verbindungs-Status: @@ -1887,15 +1892,15 @@ Bitte schliessen Sie diesen zuerst. qBittorrent %1 gestartet. - - + + DL speed: %1 KiB/s e.g: Download speed: 10 KiB/s DL Geschwindigkeit: %1 KB/s - - + + UP speed: %1 KiB/s e.g: Upload speed: 10 KiB/s UP Geschwindigkeit: %1 KiB/s @@ -1916,7 +1921,7 @@ Bitte schliessen Sie diesen zuerst. Angehalten - + Are you sure you want to quit? Wollen Sie wirklich beenden? @@ -1979,14 +1984,14 @@ Bitte schliessen Sie diesen zuerst. '%1' fortgesetzt. - - + + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 vollständig heruntergeladen. - + I/O Error i.e: Input/Output Error I/O Error @@ -2002,12 +2007,12 @@ Bitte schliessen Sie diesen zuerst. Ein Fehler ist aufgetreten (Festplatte voll?), '%1' angehalten. - + Connection Status: Verbindungs-Status: - + Online Online @@ -2043,23 +2048,23 @@ Bitte schliessen Sie diesen zuerst. Lade '%1', bitte warten... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Ein Fehler ist aufgetreten (Festplatte voll?), '%1' angehalten. - + Search Suche - + RSS RSS - + An I/O error occured for torrent %1. Reason: %2 e.g: An error occured for torrent xxx.avi. @@ -2076,13 +2081,13 @@ Bitte schliessen Sie diesen zuerst. DHT Unterstützung [Aktiviert], port: %1 - - + + DHT support [OFF] DHT Unterstützung [Deaktiviert] - + PeX support [ON] PeX Unterstützung [Aktiviert] @@ -2091,15 +2096,15 @@ Bitte schliessen Sie diesen zuerst. PeX Unterstützung [Deaktiviert] - + The download list is not empty. Are you sure you want to quit qBittorrent? Die Download Liste ist nicht leer. Möchten sie qBittorrent wirklich beenden? - - + + Downloads Downloads @@ -2108,12 +2113,12 @@ Möchten sie qBittorrent wirklich beenden? Wollen Sie wirklich die ausgewählten Elemente aus der Beendet Liste und von der Festplatte löschen? - + Are you sure you want to delete the selected item(s) in finished list? Wollen Sie wirklich die ausgewählten Elemente aus der Beendet Liste löschen? - + UPnP support [ON] UPNP Unterstützung [Aktiviert] @@ -2122,17 +2127,17 @@ Möchten sie qBittorrent wirklich beenden? ACHTUNG! Die Verbreitung von urheberrechlich geschütztem Material ist gegen das Gesetz. - + Encryption support [ON] Verschlüsselung Unterstützung [Aktiviert] - + Encryption support [FORCED] Verschlüsselung Unterstützung [Erzwungen] - + Encryption support [OFF] Verschlüsselungs-Unterstützung [Deaktiviert] @@ -2146,13 +2151,13 @@ Möchten sie qBittorrent wirklich beenden? Verhältnis - + Alt+1 shortcut to switch to first tab Alt+1 - + Alt+2 shortcut to switch to second tab Alt+2 @@ -2163,18 +2168,18 @@ Möchten sie qBittorrent wirklich beenden? Alt+3, Strg+F - + Alt+4 shortcut to switch to fourth tab Alt+4 - + Url download error URL Download Fehler - + Couldn't download file at url: %1, reason: %2. Konnte Datei von URL: %1 nicht laden, Begründung: %2. @@ -2183,12 +2188,12 @@ Möchten sie qBittorrent wirklich beenden? Fast-Resume Daten wurden zurückgewiesen für torrent %1, prüfe nochmal... - + Are you sure you want to delete the selected item(s) from download list and from hard drive? Sind Sie sicher, daß Sie die ausgewählten Einträge aus der Download Liste und von der Festplatte löschen möchten? - + Are you sure you want to delete the selected item(s) from finished list and from hard drive? Sind Sie sicher, daß Sie die ausgewählten Einträge aus der Beendet Liste und von der Festplatte löschen möchten? @@ -2202,50 +2207,50 @@ Möchten sie qBittorrent wirklich beenden? URL Seed Lookup fehlgeschlagen für URL: %1, Begründung: %2 - + Alt+3 shortcut to switch to third tab Alt+3 - + Ctrl+F shortcut to switch to search tab Strg+F - + qBittorrent is bound to port: TCP/%1 e.g: qBittorrent is bound to port: 6881 qBittorrent lauscht auf Port: TCP/%1 - + UPnP support [OFF] UPnP Unterstützung [AUS] - + NAT-PMP support [ON] NAT-PMP Unterstützung [AN] - + NAT-PMP support [OFF] NAT-PMP Unterstützung [AUS] - + DHT support [ON], port: UDP/%1 DHT Unterstützung [EIN], Port: UDP/%1 - + Local Peer Discovery [ON] Lokale Peer Auffindung [AN] - + Local Peer Discovery support [OFF] Unterstützung für Lokale Peer Auffindung [AUS] @@ -2255,48 +2260,48 @@ Möchten sie qBittorrent wirklich beenden? '%1' wurde entfernt, weil das von Ihnen eingestellte maximale Verhältnis erreicht wurde. - + qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s) %1 is qBittorrent version qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s) - - + + DL: %1 KiB/s DL: %1 KiB/s - - + + UP: %1 KiB/s UP: %1 KiB/s - - + + Ratio: %1 Verhältnis: %1 - - + + DHT: %1 nodes DHT: %1 Nodes - - + + No direct connections. This may indicate network configuration problems. Keine direkten Verbindungen. Es könnte bedeuten, daß Sie Probleme mit Ihrer Netzwerkkonfiguration haben. - + Uploads Uploads - + Options were saved successfully. Optionen wurden erfolgreich gespeichert. @@ -2630,71 +2635,89 @@ Möchten sie qBittorrent wirklich beenden? RSS - + Search Suche - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Torrents:</span> <span style=" font-style:italic;">(double-click to download)</span></p></body></html> + + + + Delete Löschen - + Rename Umbenennen - + Refresh Aktualisieren + + + Download torrent + + + + + Open news URL + + Create Erstellen - + Delete selected streams Lösche ausgewählte Streams - + Refresh RSS streams Aktualisiere RSS Streams - + Add a new RSS stream neuen RSS Stream hinzufügen - <b>News:</b> <i>(double-click to open the link in your web browser)</i> - <b>News:</b> <i>(Doppelklick um den Link im Webbrowser zu öffnen)</i> + <b>News:</b> <i>(Doppelklick um den Link im Webbrowser zu öffnen)</i> - + Add RSS stream RSS Stream hinzufügen - + Refresh all streams Aktualisiere alle Streams - + RSS streams: RSS Streams: - + 2 2 - + Mark all as read Markiere alle als gelesen @@ -2702,27 +2725,27 @@ Möchten sie qBittorrent wirklich beenden? RSSImp - + Please type a rss stream url Bitte eine RSS Stream Adresse eingeben - + Stream URL: Stream URL: - + Please choose a new name for this stream Bitte wählen sie einen neuen Namen für diesen Stream - + New stream name: Neuer Stream Name: - + Are you sure? -- qBittorrent Sind Sie sicher? -- qBittorrent @@ -2731,12 +2754,12 @@ Möchten sie qBittorrent wirklich beenden? Möchten sie den Stream wirklich aus der Liste löschen? - + &Yes &Ja - + &No &Nein @@ -2749,51 +2772,51 @@ Möchten sie qBittorrent wirklich beenden? keine Beschreibung verfügbar - + Are you sure you want to delete this stream from the list? Möchten sie den Stream wirklich aus der Liste löschen? - - - - + + + + Description: Beschreibung: - - - - + + + + url: URL: - - - - + + + + Last refresh: Letzte Aktualisierung: - + qBittorrent qBittorrent - + This rss feed is already in the list. Dieser RSS-Feed ist bereits in der Liste. - + Date: Datum: - + Author: Autor: @@ -2801,7 +2824,7 @@ Möchten sie qBittorrent wirklich beenden? RssItem - + No description available Keine Beschreibung vorhanden @@ -2809,13 +2832,13 @@ Möchten sie qBittorrent wirklich beenden? RssStream - + %1 ago 10min ago vor %1 - + Never Niemals @@ -3117,25 +3140,46 @@ Changelog: addTorrentDialog - + Torrent addition dialog Dialog zum hinzufügen eines Torrent - + Save path: Speicher-Pfad: - + ... ... - + + Torrent size: + + + + + + Unknown + Unbekannt + + + + Free disk space: + + + + Torrent content: Torrent Inhalt: + + + Download in sequential order (slower but good for previewing) + + File name Datei Name @@ -3149,22 +3193,21 @@ Changelog: Ausgewählt - Download in correct order (slower but good for previewing) - In richtiger Reihenfolge herunterladen (langsamer, aber besser zum Vorschauen) + In richtiger Reihenfolge herunterladen (langsamer, aber besser zum Vorschauen) - + Add to download list in paused state Der Download Liste im Pause-Modus hinzufügen - + Add Hinzufügen - + Cancel Abbrechen @@ -3181,32 +3224,32 @@ Changelog: Auswählen - + Ignored Ignoriert - + Normal Normal - + High Hoch - + Maximum Maximum - + Collapse all Alle reduzieren - + Expand all Alle erweitern @@ -3266,18 +3309,18 @@ Changelog: bittorrent - + %1 reached the maximum ratio you set. %1 hat das gesetzte maximale Verhältnis erreicht. - + '%1' was removed permanently. 'xxx.avi' was removed permanently. '%1' wurde endgültig entfernt. - + '%1' was removed. 'xxx.avi' was removed. '%1' wurde entfernt. @@ -3293,77 +3336,85 @@ Changelog: '%1' wird fortgesetzt. - - + + '%1' is not a valid magnet URI. + + + + + + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. '%1' befindet sich bereits in der Download-Liste. - - + + + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) '%1' wird fortgesetzt. (Schnelles Fortsetzen) - - + + + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. '%1' wurde der Download-Liste hinzugefügt. - - + + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' Kann Torrent Datei nicht dekodieren: '%1' - + This file is either corrupted or this isn't a torrent. Diese Datei ist entweder beschädigt, oder kein Torrent. - + <font color='red'>%1</font> <i>was blocked due to your IP filter</i> x.y.z.w was blocked <font color='red'>%1</font> <i>wurde geblockt aufgrund Ihrer IP Filter</i> - + <font color='red'>%1</font> <i>was banned due to corrupt pieces</i> x.y.z.w was banned <font color='red'>%1</font> <i>wurde gebannt aufgrund von beschädigten Teilen</i> - + Couldn't listen on any of the given ports. Konnte nicht auf den angegebenen Ports lauschen. - + UPnP/NAT-PMP: Port mapping failure, message: %1 UPnP/NAT-PMP: Port Mapping Fehler, Fehlermeldung: %1 - + UPnP/NAT-PMP: Port mapping successful, message: %1 UPnP/NAT-PMP: Port Mapping erfolgreich, Meldung: %1 - + Fast resume data was rejected for torrent %1, checking again... Fast-Resume Daten für den Torrent %1 wurden zurückgewiesen, prüfe erneut... - + Url seed lookup failed for url: %1, message: %2 URL Seed Lookup für die URL: %1 ist fehlgeschlagen, Meldung: %2 - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... Lade '%1', bitte warten... @@ -3680,12 +3731,12 @@ Changelog: Von URLs laden - + No URL entered Keine URL eingegeben - + Please type at least one URL. Bitte geben Sie mindestens eine URL an. @@ -3693,7 +3744,7 @@ Changelog: downloading - + Search Suche @@ -3722,17 +3773,17 @@ Changelog: IP Filter - + Start Start - + Pause Anhalten - + Delete Löschen @@ -3741,100 +3792,105 @@ Changelog: Leeren - + Preview file Vorschau Datei - + Set upload limit Upload Begrenzung einstellen - + Set download limit Download Begrenzung einstellen - + Delete Permanently Endgültig löschen - + Torrent Properties Torrent Eigenschaften - + Open destination folder Zielverzeichniss öffnen - + Name Name - + Size Größe - + Progress Fortschritt - + DLSpeed DL-Geschwindigkeit - + UpSpeed UP-Geschwindigkeit - + Seeds/Leechs Seeds/Leechs - + Ratio Verhältnis - + ETA voraussichtliche Ankunftszeit - + Buy it Kaufen - + Priority Priorität - + Increase priority Erhöhe Prorität - + Decrease priority Verringere Priorität - + Force recheck Erzwinge erneutes Überprüfen + + + Copy magnet link + + engineSelect @@ -4082,31 +4138,31 @@ Die Plugins wurden jedoch deaktiviert. misc - + B bytes B - + KiB kibibytes (1024 bytes) KB - + MiB mebibytes (1024 kibibytes) MB - + GiB gibibytes (1024 mibibytes) GB - + TiB tebibytes (1024 gibibytes) TB @@ -4131,31 +4187,31 @@ Die Plugins wurden jedoch deaktiviert. Unbekannt - + Unknown Unknown (size) Unbekannt - + < 1m < 1 minute < 1 Minute - + %1m e.g: 10minutes %1 Min - + %1h%2m e.g: 3hours 5minutes %1 Std %2 Min - + %1d%2h%3m e.g: 2days 10hours 2minutes %1 Tage %2 Std %3 Min @@ -4496,7 +4552,7 @@ Die Plugins wurden jedoch deaktiviert. MB - + Unknown Unbekannt @@ -4530,7 +4586,7 @@ Die Plugins wurden jedoch deaktiviert. Sie können hier präzise wählen, welche Dateien aus dem aktuellen Torrent downgeloadet werden. - + Size Grösse @@ -4539,8 +4595,8 @@ Die Plugins wurden jedoch deaktiviert. Ausgewählt - - + + None - Unreachable? Keine - Unerreichbar? @@ -4557,7 +4613,7 @@ Die Plugins wurden jedoch deaktiviert. Fehler: - + Progress Fortschritt @@ -4673,49 +4729,49 @@ Die Plugins wurden jedoch deaktiviert. neue Tracker URL: - + Priorities: Prioritäten: - + Normal: normal priority. Download order is dependent on availability Normal: Normale Priorität. Die Download Reihenfolge hängt von der Verfügbarkeit ab - + High: higher than normal priority. Pieces are preferred over pieces with the same availability, but not over pieces with lower availability Hoch: höher als normal. Bevorzugte Teile werden Teilen gleicher Verfügbarkeit vorgezogen, jedoch nicht Teilen mit einer besseren Verfügbarkeit - + Maximum: maximum priority, availability is disregarded, the piece is preferred over any other piece with lower priority Maximum: Höchste Priorität, die Verfügbarkeit wird nicht beachtet, das Teil wird allen anderen Teilen mit niedrigerer Priorität bevorzugt - + File name Dateiname - - + + Priority Priorität - - + + qBittorrent qBittorrent - + Trackers list can't be empty. die Tracker Liste kann nicht leer sein. - + Ignored: file is not downloaded at all Ignoriert: Datei wird nicht heruntergeladen @@ -4745,12 +4801,12 @@ Die Plugins wurden jedoch deaktiviert. URL Seeds - + New url seed: Neue URL Seeds: - + This url seed is already in the list. Dieser URL Seed ist bereits in der Liste. @@ -4764,7 +4820,7 @@ Die Plugins wurden jedoch deaktiviert. Keine - + New url seed New HTTP source Neuer URL Seed @@ -4775,12 +4831,12 @@ Die Plugins wurden jedoch deaktiviert. Die folgenden URL Seeds sind für diesen Torrent nicht erhältlich: - + Priorities error Prioritätsfehler - + Error, you can't filter all the files in a torrent. Sie können nicht alle Dateien aus einem Torrent filtern. @@ -4805,18 +4861,18 @@ Die Plugins wurden jedoch deaktiviert. ... - - + + Choose save path Wählen Sie den Speicher-Pfad - + Save path creation error Fehler beim erstellen des Speicher-Pfades - + Could not create the save path Speicher-Pfad konnte nicht erstellt werden @@ -4963,6 +5019,11 @@ Die Plugins wurden jedoch deaktiviert. Seeds / Leechers Seeder / Leecher + + + Copy magnet link + + Leechers Leecher @@ -5067,8 +5128,8 @@ Die Plugins wurden jedoch deaktiviert. Wahr - - + + Unable to decode torrent file: Torrent Datei kann nicht dekodiert werden: @@ -5077,8 +5138,8 @@ Die Plugins wurden jedoch deaktiviert. Diese Datei ist entweder beschädigt, oder kein Torrent. - - + + Choose save path Wählen Sie den Speicher-Pfad @@ -5087,53 +5148,70 @@ Die Plugins wurden jedoch deaktiviert. Falsch - + + Unknown + Unbekannt + + + + (%1 left after torrent download) + e.g. (100MiB left after torrent download) + + + + + (%1 more are required to download) + e.g. (100MiB more are required to download) + + + + Empty save path Leerer Speicher-Pfad - + Please enter a save path Bitte geben Sie einen Speicher-Pfad ein - + Save path creation error Fehler beim erstellen des Speicher-Pfades - + Could not create the save path Speicher-Pfad konnte nicht erstellt werden - + Invalid file selection Ungültige Datei Auswahl - + You must select at least one file in the torrent Sie müssen mindestens eine Datei aus dem Torrent selektieren - + File name Dateiname - + Size Größe - + Progress Verlauf - - + + Priority Priorität diff --git a/src/lang/qbittorrent_el.qm b/src/lang/qbittorrent_el.qm index 5fab990485396c057a9f61d883b975e7aa9235ad..6bbe06226edd1e9bc7031ed10743770b2f281e4f 100644 GIT binary patch delta 4386 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 E2Q@bpr2qf` delta 4773 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 diff --git a/src/lang/qbittorrent_el.ts b/src/lang/qbittorrent_el.ts index 72bff0aef0..a7c983e55a 100644 --- a/src/lang/qbittorrent_el.ts +++ b/src/lang/qbittorrent_el.ts @@ -839,11 +839,10 @@ Copyright © 2006 από τον Christophe Dumez<br> Παρακολούθηση φακέλου - Transfer lists double-click qBittorrent will watch a directory and automatically download torrents present in it Το qBittorrent θα κοιτάξει 'εναν φάκελο και θα κατεβάζει αυτόματα τα τορεντ που υπάρχουν - Διπλό κλικ λίστας κατεβασμάτων + Διπλό κλικ λίστας κατεβασμάτων @@ -951,6 +950,12 @@ Copyright © 2006 από τον Christophe Dumez<br> Bittorrent Bittorrent + + + Transfer lists double-click action + Action executed when doucle-clicking on an item in transfer (download/upload) list + + Connections limit @@ -1172,54 +1177,54 @@ Copyright © 2006 από τον Christophe Dumez<br> DownloadingTorrents - + Name i.e: file name Όνομα - + Size i.e: file size Μέγεθος - + Progress i.e: % downloaded Πρόοδος - + DL Speed i.e: Download speed DL Ταχύτητα - + UP Speed i.e: Upload speed UP Ταχύτητα - + Seeds/Leechs i.e: full/partial sources Διαμοιραστές/Συνδέσεις - + Ratio Αναλογία - + ETA i.e: Estimated Time of Arrival / Time left Χρόνος που απομένει - + qBittorrent %1 started. e.g: qBittorrent v0.x started. Εκκινήθηκε το qBittorrent %1. @@ -1275,7 +1280,7 @@ Copyright © 2006 από τον Christophe Dumez<br> Κατέβασμα του '%1', παρακαλώ περιμένετε... - + Hide or Show Column Απόκρυψη ή Εμφάνιση Στήλης @@ -1288,7 +1293,7 @@ Copyright © 2006 από τον Christophe Dumez<br> UPnP/NAT-PMP: Χαρτογράφηση θυρών επιτυχής, μήνυμα: %1 - + Priority Προτεραιότητα @@ -1418,7 +1423,7 @@ Copyright © 2006 από τον Christophe Dumez<br> Σύνολο ανεβασμένων - + Hide or Show Column Απόκρυψη ή Εμφάνιση Στήλης @@ -1438,7 +1443,7 @@ Copyright © 2006 από τον Christophe Dumez<br> GUI - + Open Torrent Files Άνοιγμα Αρχείων τορεντ @@ -1459,25 +1464,25 @@ Copyright © 2006 από τον Christophe Dumez<br> Σίγουρα θέλετε να διαγράψετε όλα τα αρχεία στην λίστα κατεβάσματος? - - - - - + + + + + &Yes &Ναι - - - - - + + + + + &No &Όχι - + Are you sure you want to delete the selected item(s) in download list? Είστε σίγουρος οτι θέλετε να διαγράψετε το(α) επιλεγμλένα αντικείμενο(α) από την λίστα κατεβάσματος? @@ -1494,7 +1499,7 @@ Copyright © 2006 από τον Christophe Dumez<br> kb/s - + Finished Τελείωσε @@ -1539,7 +1544,7 @@ Copyright © 2006 από τον Christophe Dumez<br> Δεν μπόρεσε να δημιουργηθεί η κατηγορία: - + Torrent Files Αρχεία Τορεντ @@ -1599,16 +1604,16 @@ Copyright © 2006 από τον Christophe Dumez<br> qBittorrent - - + + qBittorrent qBittorrent - - - - + + + + Are you sure? -- qBittorrent Είστε σίγουρος? -- qBittorrent @@ -1886,7 +1891,7 @@ Please close the other one first. Είστε σίγουρος/η οτι θέλετε να διαγράψετε το(α) επιλεγμένο(α) αντικείμενο(α) από τη λίστα κατεβάσματος και το σκληρό δίσκο? - + Download finished Το κατέβασμα τελείωσε @@ -1900,15 +1905,15 @@ Please close the other one first. Μηχανή Αναζήτησης - - + + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - - + + Connection status: Κατάσταση Σύνδεσης: @@ -1971,15 +1976,15 @@ Please close the other one first. Εκκινήθηκε το qBittorrent %1. - - + + DL speed: %1 KiB/s e.g: Download speed: 10 KiB/s Ταχύτητα Κατεβάσματος: %1 KiB/s - - + + UP speed: %1 KiB/s e.g: Upload speed: 10 KiB/s Ταχύτητα Ανεβάσματος: %1 KiB/s @@ -2000,7 +2005,7 @@ Please close the other one first. Αποτυχία λειτουργίας - + Are you sure you want to quit? Είστε σίγουρος/η οτι θέλετε να κλείσετε την εφαρμογή? @@ -2063,14 +2068,14 @@ Please close the other one first. Το '%1' ξανάρχισε. - - + + %1 has finished downloading. e.g: xxx.avi has finished downloading. Έχει τελειώσει το κατέβασμα του '%1'. - + I/O Error i.e: Input/Output Error I/O Λάθος @@ -2086,12 +2091,12 @@ Please close the other one first. Ένα σφάλμα προέκυψε (δίσκος πλήρης?), το '%1' είναι σε παύση. - + Connection Status: Κατάσταση Σύνδεσης: - + Online Online @@ -2127,23 +2132,23 @@ Please close the other one first. Κατέβασμα του '%1', παρακαλώ περιμένετε... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Ένα σφάλμα προέκυψε (δίσκος πλήρης?), το '%1' είναι σε παύση. - + Search Εύρεση - + RSS RSS - + An I/O error occured for torrent %1. Reason: %2 e.g: An error occured for torrent xxx.avi. @@ -2161,13 +2166,13 @@ Please close the other one first. Υποστήριξη DHT [ΝΑΙ], θύρα: %1 - - + + DHT support [OFF] Υποστήριξη DHT [ΟΧΙ] - + PeX support [ON] Υποστήριξη PeX [ΝΑΙ] @@ -2176,25 +2181,25 @@ Please close the other one first. Υποστήριξη PeX [ΟΧΙ] - + The download list is not empty. Are you sure you want to quit qBittorrent? Η λίστα κατεβάσματος δεν είναι άδεια. Σίγουρα θέλετε να κλείσετε το qBittorrent? - - + + Downloads Κατέβασματα - + Are you sure you want to delete the selected item(s) in finished list? Είστε σίγουρος οτι θέλετε να διαγράψετε το(α) επιλεγμλένα αντικείμενο(α) από την λίστα των ολοκληρωμένων? - + UPnP support [ON] Υποστήριξη UPnP [ΝΑΙ] @@ -2203,17 +2208,17 @@ Are you sure you want to quit qBittorrent? Προσοχή, η διακίνηση υλικού προστατευόμενου από πνευματικά δικαιώματα χωρίς άδεια είναι παράνομη. - + Encryption support [ON] Υποστήριξη κρυπτογράφησης [ΝΑΙ] - + Encryption support [FORCED] Υποστήριξη κρυπτογράφησης [ΑΝΑΓΚΑΣΤΙΚΑ] - + Encryption support [OFF] Υποστήριξη κρυπτογράφησης [ΟΧΙ] @@ -2227,13 +2232,13 @@ Are you sure you want to quit qBittorrent? Αναλογία - + Alt+1 shortcut to switch to first tab Alt+1 - + Alt+2 shortcut to switch to second tab Alt+2 @@ -2244,18 +2249,18 @@ Are you sure you want to quit qBittorrent? Alt+3, Ctrl+F - + Alt+4 shortcut to switch to fourth tab Alt+4 - + Url download error Σφάλμα κατεβάσματος url - + Couldn't download file at url: %1, reason: %2. Αδύνατο κατέβασμα αρχείου από το url: %1,αιτία: %2. @@ -2264,12 +2269,12 @@ Are you sure you want to quit qBittorrent? Γρήγορη συνέχεια κατεβάσματος αρχείων απορρίφθηκε για το τορεντ %1, επανέλεγχος... - + Are you sure you want to delete the selected item(s) from download list and from hard drive? Είστε σίγουρος οτι θέλετε να διαγράψετε το(α) επιλεγμλένα αντικείμενο(α) από την λίστα κατεβάσματος και από το σκληρό δίσκο? - + Are you sure you want to delete the selected item(s) from finished list and from hard drive? Είστε σίγουρος οτι θέλετε να διαγράψετε το(α) επιλεγμλένα αντικείμενο(α) από το σκληρό δίσκο? @@ -2283,50 +2288,50 @@ Are you sure you want to quit qBittorrent? Αποτυχία ελέγχου url μοιράσματος για το url: %1, μήνυμα: %2 - + Alt+3 shortcut to switch to third tab Alt+3 - + Ctrl+F shortcut to switch to search tab Ctrl+F - + qBittorrent is bound to port: TCP/%1 e.g: qBittorrent is bound to port: 6881 Το qBittorrent χρησιμοποιεί τη θύρα: TCP/%1 - + UPnP support [OFF] Υποστήριξη UPnP [ΟΧΙ] - + NAT-PMP support [ON] Υποστήριξη NAT-PMP [NAI] - + NAT-PMP support [OFF] Υποστήριξη NAT-PMP [OXI] - + DHT support [ON], port: UDP/%1 Υποστήριξη DHT [NAI], θύρα: UDP/%1 - + Local Peer Discovery [ON] Ανακάλυψη Τοπικών Συνδέσεων [ΝΑΙ] - + Local Peer Discovery support [OFF] Ανακάλυψη Τοπικών Συνδέσεων [ΟΧΙ] @@ -2336,48 +2341,48 @@ Are you sure you want to quit qBittorrent? Το '%1' αφαιρέθηκε επειδή η αναλογία του έφτασε τη μέγιστη τιμή που θέσατε. - + qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s) %1 is qBittorrent version qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s) - - + + DL: %1 KiB/s DL: %1 KiB/s - - + + UP: %1 KiB/s UP: %1 KiB/s - - + + Ratio: %1 Αναλογία: %1 - - + + DHT: %1 nodes DHT: %1 κόμβοι - - + + No direct connections. This may indicate network configuration problems. Χωρίς απευθείας συνδέσεις. Αυτό μπορεί να οφείλεται σε προβλήματα ρυθμίσεων δικτύου. - + Uploads Ανεβάσματα - + Options were saved successfully. Οι επιλογές αποθηκεύτηκαν επιτυχώς. @@ -2723,71 +2728,89 @@ Are you sure you want to quit qBittorrent? RSS - + Search Αναζήτηση - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Torrents:</span> <span style=" font-style:italic;">(double-click to download)</span></p></body></html> + + + + Delete Διαγραφή - + Rename Μςτονομασία - + Refresh Ανανέωση + + + Download torrent + + + + + Open news URL + + Create Δημιουργία - + Delete selected streams Διαγραφή επιλεγμένων τροφοδοτήσεων - + Refresh RSS streams Ανανέωση RSS τροφοδοτήσεων - + Add a new RSS stream Προσθήκη μιας νέας τροφοδότησης RSS - <b>News:</b> <i>(double-click to open the link in your web browser)</i> - <b>Νέα:</b> <i>(διπλό κλικ για άνοιγμα της σελίδας στον περιηγητή σας)</i> + <b>Νέα:</b> <i>(διπλό κλικ για άνοιγμα της σελίδας στον περιηγητή σας)</i> - + Add RSS stream Προσθήκη τροφοδότησης RSS - + Refresh all streams Ανανέωση όλων των τροφοδοτήσεων - + RSS streams: Τροφοδοτήσεις RSS: - + 2 2 - + Mark all as read Μαρκάρισμα ως όλων αναγνωσθέντων @@ -2795,86 +2818,86 @@ Are you sure you want to quit qBittorrent? RSSImp - + Please type a rss stream url Παρακαλώ εισάγετε ένα url τροφοδοσίας rss - + Stream URL: URL τροφοδοσίας: - + Please choose a new name for this stream Παρακαλώ επιέξτε ένα νέο όνομα για αυτήν την τροφοδοσία - + New stream name: Νέο όνομα τροφοδοσίας: - + Are you sure? -- qBittorrent Είστε σίγουρος? -- qBittorrent - + &Yes &Ναι - + &No &Όχι - + Are you sure you want to delete this stream from the list? Είστε σίγουρος οτι θέλετε να διαγράψετε αυτή τη τροφοδοσία από τη λίστα? - - - - + + + + Description: Περιγραφή: - - - - + + + + url: url: - - - - + + + + Last refresh: Τελευταία ανανέωση: - + qBittorrent qBittorrent - + This rss feed is already in the list. Αυτή η τροφοδοσία rss είναι ήδη στη λίστα. - + Date: Ημερομηνία: - + Author: Δημιουργός: @@ -2882,7 +2905,7 @@ Are you sure you want to quit qBittorrent? RssItem - + No description available Δεν υπάρχει διαθέσιμη περιγραφή @@ -2890,13 +2913,13 @@ Are you sure you want to quit qBittorrent? RssStream - + %1 ago 10min ago %1 πριν - + Never Ποτέ @@ -3198,25 +3221,46 @@ Changelog: addTorrentDialog - + Torrent addition dialog Διάλογος προσθήκης τορεντ - + Save path: Αποθήκευση σε: - + ... ... - + + Torrent size: + + + + + + Unknown + + + + + Free disk space: + + + + Torrent content: Περιεχόμενο τορεντ: + + + Download in sequential order (slower but good for previewing) + + File name Όνομα αρχείου @@ -3230,22 +3274,21 @@ Changelog: Επιλεγμένο(α) - Download in correct order (slower but good for previewing) - Κατέβασμα στη σωστή σειρά (πιο αργό αλλα καλό για προεπισκόπηση) + Κατέβασμα στη σωστή σειρά (πιο αργό αλλα καλό για προεπισκόπηση) - + Add to download list in paused state Προσθήκη στη λίστα κατεβάσματος σε κατάσταση παύσης - + Add Προσθήκη - + Cancel Ακύρωση @@ -3262,27 +3305,27 @@ Changelog: Επιλογή - + Ignored Αγνοήθηκε - + Normal Κανονικό - + High Υψηλό - + Maximum Μέγιστο - + Collapse all Κατάρρευση όλων @@ -3291,7 +3334,7 @@ Changelog: Επέκταση όλων - + Expand all Επέκταση όλων @@ -3351,18 +3394,18 @@ Changelog: bittorrent - + %1 reached the maximum ratio you set. Το %1 έφτασε στη μέγιστη αναλογία που θέσατε. - + '%1' was removed permanently. 'xxx.avi' was removed permanently. '%1' διαγράφηκε για πάντα. - + '%1' was removed. 'xxx.avi' was removed. Το '%1' αφαιρέθηκε. @@ -3378,77 +3421,85 @@ Changelog: Το '%1' ξανάρχισε. - - + + '%1' is not a valid magnet URI. + + + + + + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. Το '%1' είναι ήδη στη λίστα κατεβάσματος. - - + + + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) Το '%1' ξανάρχισε. (γρήγορη επανασύνδεση) - - + + + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. Το '%1' προστέθηκε στη λίστα κατεβάσματος. - - + + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' Αδύνατο να αποκωδικοποιηθεί το αρχείο τορεντ: '%1' - + This file is either corrupted or this isn't a torrent. Το αρχείο είτε είναι κατεστραμμένο, ή δεν ειναι τορεντ. - + <font color='red'>%1</font> <i>was blocked due to your IP filter</i> x.y.z.w was blocked <font color='red'>%1</font> <i>μπλοκαρίστηκε εξαιτίας του IP φίλτρου</i> - + <font color='red'>%1</font> <i>was banned due to corrupt pieces</i> x.y.z.w was banned <font color='red'>%1</font> <i>απαγορεύτηκε εξαιτίας κατεστραμμένων κομματιών</i> - + Couldn't listen on any of the given ports. Δεν "ακροάστηκα" καμία σπό τις δωσμένες θύρες. - + UPnP/NAT-PMP: Port mapping failure, message: %1 UPnP/NAT-PMP: Σφάλμα χαρτογράφησης θυρών, μήνυμα: %1 - + UPnP/NAT-PMP: Port mapping successful, message: %1 UPnP/NAT-PMP: Χαρτογράφηση θυρών επιτυχής, μήνυμα: %1 - + Fast resume data was rejected for torrent %1, checking again... Γρήγορη συνέχεια κατεβάσματος αρχείων απορρίφθηκε για το τορεντ %1, επανέλεγχος... - + Url seed lookup failed for url: %1, message: %2 Αποτυχία ελέγχου url μοιράσματος για το url: %1, μήνυμα: %2 - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... Κατέβασμα του '%1', παρακαλώ περιμένετε... @@ -3765,12 +3816,12 @@ Changelog: Κατέβασμα από URL - + No URL entered Δεν έχετε εισάγει URL - + Please type at least one URL. Παρακαλώ εισάγετε τουλάχιστο ένα URL. @@ -3778,7 +3829,7 @@ Changelog: downloading - + Search Αναζήτηση @@ -3807,17 +3858,17 @@ Changelog: Φίλτρο ΙΡ - + Start Έναρξη - + Pause Παύση - + Delete Διαγραφή @@ -3826,100 +3877,105 @@ Changelog: Εκκαθάριση - + Preview file Προεπισκόπηση αρχείου - + Set upload limit Ρύθμιση ορίου ανεβάσματος - + Set download limit Ρύθμιση ορίου κατεβάσματος - + Delete Permanently Οριστική Διαγραφή - + Torrent Properties Ιδιότητες τορεντ - + Open destination folder Άνοιγμα φακέλου προορισμού - + Name Όνομα - + Size Μέγεθος - + Progress Πρόοδος - + DLSpeed DLΤαχύτητα - + UpSpeed UPΤαχύτητα - + Seeds/Leechs Διαμοιραστές/Συνδέσεις - + Ratio Αναλογία - + ETA Χρόνος που απομένει - + Buy it Αγόρασέ το - + Priority Προτεραιότητα - + Increase priority Μεγαλύτερη προτεραιότητα - + Decrease priority Μικρότερη προτεραιότητα - + Force recheck Αναγκαστικός επανέλεγχος + + + Copy magnet link + + engineSelect @@ -4167,31 +4223,31 @@ However, those plugins were disabled. misc - + B bytes B - + KiB kibibytes (1024 bytes) KiB/s - + MiB mebibytes (1024 kibibytes) MiB - + GiB gibibytes (1024 mibibytes) GiB - + TiB tebibytes (1024 gibibytes) TiB @@ -4226,31 +4282,31 @@ However, those plugins were disabled. μ - + Unknown Unknown (size) Άγνωστο - + < 1m < 1 minute < 1λ - + %1m e.g: 10minutes %1λ - + %1h%2m e.g: 3hours 5minutes %1ώ%2λ - + %1d%2h%3m e.g: 2days 10hours 2minutes %1μ%2ώ%3λ @@ -4555,7 +4611,7 @@ However, those plugins were disabled. Προσδιορίζει - + Unknown Άγνωστο @@ -4573,7 +4629,7 @@ However, those plugins were disabled. Αρχεία που περιέχονται στο παρόν τορεντ: - + Size Μέγεθος @@ -4611,8 +4667,8 @@ However, those plugins were disabled. Ιχνηλάτες: - - + + None - Unreachable? Κανένα - Απροσπέλαστο? @@ -4621,7 +4677,7 @@ However, those plugins were disabled. Λάθη: - + Progress Πρόοδος @@ -4737,49 +4793,49 @@ However, those plugins were disabled. Url νέου ιχνηλάτη: - + Priorities: Προτεραιότητες: - + Normal: normal priority. Download order is dependent on availability Κανονική: κανονική προτεραιότητα. Η σειρά κατεβάσματος εξαρτάται από τη διαθεσιμότητα - + High: higher than normal priority. Pieces are preferred over pieces with the same availability, but not over pieces with lower availability Υψηλή: υψηλότερη από τη κανονική προτεραιότητα. Τα κομμάτια προτιμόνται από άλλα με την ίδια διαθεσιμότητα, αλλά όχι από κομμάτια με χαμηλότερη διαθεσιμότητα - + Maximum: maximum priority, availability is disregarded, the piece is preferred over any other piece with lower priority Μέγιστη: μέγιστη προτεραιότητα, η διαθεσιμότητα παραβλέπεται, το κομμάτι προτιμάται από κάθε άλλο κομμάτι με χαμηλότερη προτεραιότητα - + File name Όνομα αρχείου - - + + Priority Προτεραιότητα - - + + qBittorrent qBittorrent - + Trackers list can't be empty. Η λίστα των ιχνηλατών δεν γίνεται να είναι άδεισ. - + Ignored: file is not downloaded at all Αγνοέιται: το αρχείο δεν κατεβάζεται καθόλου @@ -4809,12 +4865,12 @@ However, those plugins were disabled. Url μοιράσματα - + New url seed: Νέο url μοιράσματος: - + This url seed is already in the list. Αυτό το url μοιράσματος είναι ήδη στη λίστα. @@ -4828,7 +4884,7 @@ However, those plugins were disabled. Κανένα - + New url seed New HTTP source Νέο url μοιράσματος @@ -4839,12 +4895,12 @@ However, those plugins were disabled. Τα ακόλουθα url μοιράσματος είναι διαθέσιμα για αυτό το τορεντ: - + Priorities error Σφάλμα προτεραιοτήτων - + Error, you can't filter all the files in a torrent. Σφάλμα, δεν μπορείτε να φιλτράρετε όλα τα αρχεία σε ένα τορεντ. @@ -4869,18 +4925,18 @@ However, those plugins were disabled. ... - - + + Choose save path Επιλέξτε διαδρομή αποθήκευσης - + Save path creation error Σφάλμα δημιουργίας διαδρομής αποθήκευσης - + Could not create the save path Δεν μπόρεσε να δημιουργηθεί η διαδρομή αποθήκευσης @@ -5027,6 +5083,11 @@ However, those plugins were disabled. Seeds / Leechers Διαμοιραστές/Συνδέσεις + + + Copy magnet link + + Leechers Συνδέσεις @@ -5131,8 +5192,8 @@ However, those plugins were disabled. Σωστό - - + + Unable to decode torrent file: Αδύνατο να αποκωδικοποιηθεί το αρχείο τορεντ: @@ -5141,8 +5202,8 @@ However, those plugins were disabled. Το αρχείο είτε είναι κατεστραμμένο, ή δεν ειναι ενα τορεντ. - - + + Choose save path Επιλέξτε διαδρομή αποθήκευσης @@ -5151,53 +5212,70 @@ However, those plugins were disabled. Λάθος - + + Unknown + + + + + (%1 left after torrent download) + e.g. (100MiB left after torrent download) + + + + + (%1 more are required to download) + e.g. (100MiB more are required to download) + + + + Empty save path Κενή διαδρομή αποθήκευσης - + Please enter a save path Παρακαλώ εισάγετε μία διαδρομή αποθήκευσης - + Save path creation error Σφάλμα δημιουργίας διαδρομής αποθήκευσης - + Could not create the save path Δεν μπόρεσε να δημιουργηθεί η διαδρομή αποθήκευσης - + Invalid file selection Άκυρη επιλογή αρχείου - + You must select at least one file in the torrent Πρέπει να επιλέξετε τουλάχιστο ένα αρχείο του τορεντ - + File name Όνομα αρχείου - + Size Μέγεθος - + Progress Πρόοδος - - + + Priority Προτεραιότητα diff --git a/src/lang/qbittorrent_en.ts b/src/lang/qbittorrent_en.ts index e85d96d40e..81f2b48521 100644 --- a/src/lang/qbittorrent_en.ts +++ b/src/lang/qbittorrent_en.ts @@ -390,12 +390,6 @@ p, li { white-space: pre-wrap; } Proxy - - - Transfer lists double-click - qBittorrent will watch a directory and automatically download torrents present in it - - Download list: @@ -507,6 +501,12 @@ p, li { white-space: pre-wrap; } Bittorrent + + + Transfer lists double-click action + Action executed when doucle-clicking on an item in transfer (download/upload) list + + Connections limit @@ -695,65 +695,65 @@ p, li { white-space: pre-wrap; } DownloadingTorrents - + Name i.e: file name - + Size i.e: file size - + Progress i.e: % downloaded - + DL Speed i.e: Download speed - + UP Speed i.e: Upload speed - + Seeds/Leechs i.e: full/partial sources - + Ratio - + ETA i.e: Estimated Time of Arrival / Time left - + qBittorrent %1 started. e.g: qBittorrent v0.x started. - + Hide or Show Column - + Priority @@ -844,7 +844,7 @@ p, li { white-space: pre-wrap; } - + Hide or Show Column @@ -852,227 +852,227 @@ p, li { white-space: pre-wrap; } GUI - + Open Torrent Files - - - - - + + + + + &Yes - - - - - + + + + + &No - + Are you sure you want to delete the selected item(s) in download list? - + Torrent Files - - - - + + + + Are you sure? -- qBittorrent - + Download finished - - + + qBittorrent %1 e.g: qBittorrent v0.x - - + + Connection status: - - + + qBittorrent - - + + DL speed: %1 KiB/s e.g: Download speed: 10 KiB/s - - + + UP speed: %1 KiB/s e.g: Upload speed: 10 KiB/s - + Are you sure you want to quit? - - + + %1 has finished downloading. e.g: xxx.avi has finished downloading. - + I/O Error i.e: Input/Output Error - + Connection Status: - + Online - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. - + Search - + RSS - - + + DHT support [OFF] - + PeX support [ON] - + The download list is not empty. Are you sure you want to quit qBittorrent? - - + + Downloads - + Finished - + Are you sure you want to delete the selected item(s) in finished list? - + UPnP support [ON] - + Encryption support [ON] - + Encryption support [FORCED] - + Encryption support [OFF] - + Alt+1 shortcut to switch to first tab - + Alt+2 shortcut to switch to second tab - + Alt+4 shortcut to switch to fourth tab - + Url download error - + Couldn't download file at url: %1, reason: %2. - + Are you sure you want to delete the selected item(s) from download list and from hard drive? - + Are you sure you want to delete the selected item(s) from finished list and from hard drive? - + Alt+3 shortcut to switch to third tab - + An I/O error occured for torrent %1. Reason: %2 e.g: An error occured for torrent xxx.avi. @@ -1080,90 +1080,90 @@ Are you sure you want to quit qBittorrent? - + Ctrl+F shortcut to switch to search tab - + qBittorrent is bound to port: TCP/%1 e.g: qBittorrent is bound to port: 6881 - + UPnP support [OFF] - + NAT-PMP support [ON] - + NAT-PMP support [OFF] - + DHT support [ON], port: UDP/%1 - + Local Peer Discovery [ON] - + Local Peer Discovery support [OFF] - + qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s) %1 is qBittorrent version - - + + DL: %1 KiB/s - - + + UP: %1 KiB/s - - + + Ratio: %1 - - + + DHT: %1 nodes - - + + No direct connections. This may indicate network configuration problems. - + Uploads - + Options were saved successfully. @@ -1350,67 +1350,81 @@ Are you sure you want to quit qBittorrent? RSS - + Search - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Torrents:</span> <span style=" font-style:italic;">(double-click to download)</span></p></body></html> + + + + Delete - + Rename - + Refresh - - Delete selected streams + + Download torrent - - Refresh RSS streams + + Open news URL - - Add a new RSS stream + + Delete selected streams - - <b>News:</b> <i>(double-click to open the link in your web browser)</i> + + Refresh RSS streams + + + + + Add a new RSS stream - + Add RSS stream - + Refresh all streams - + RSS streams: - + 2 - + Mark all as read @@ -1418,86 +1432,86 @@ Are you sure you want to quit qBittorrent? RSSImp - + Please type a rss stream url - + Stream URL: - + Please choose a new name for this stream - + New stream name: - + Are you sure? -- qBittorrent - + &Yes - + &No - + Are you sure you want to delete this stream from the list? - - - - + + + + Description: - - - - + + + + url: - - - - + + + + Last refresh: - + qBittorrent - + This rss feed is already in the list. - + Date: - + Author: @@ -1505,7 +1519,7 @@ Are you sure you want to quit qBittorrent? RssItem - + No description available @@ -1513,13 +1527,13 @@ Are you sure you want to quit qBittorrent? RssStream - + %1 ago 10min ago - + Never @@ -1676,72 +1690,88 @@ Are you sure you want to quit qBittorrent? addTorrentDialog - + Torrent addition dialog - + Save path: - + ... - + + Torrent size: + + + + + + Unknown + + + + + Free disk space: + + + + Torrent content: - - Download in correct order (slower but good for previewing) + + Download in sequential order (slower but good for previewing) - + Add to download list in paused state - + Add - + Cancel - + Ignored - + Normal - + High - + Maximum - + Collapse all - + Expand all @@ -1801,94 +1831,102 @@ Are you sure you want to quit qBittorrent? bittorrent - + %1 reached the maximum ratio you set. - + '%1' was removed permanently. 'xxx.avi' was removed permanently. - + '%1' was removed. 'xxx.avi' was removed. - - + + '%1' is not a valid magnet URI. + + + + + + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. - - + + + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) - - + + + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. - - + + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' - + This file is either corrupted or this isn't a torrent. - + <font color='red'>%1</font> <i>was blocked due to your IP filter</i> x.y.z.w was blocked - + <font color='red'>%1</font> <i>was banned due to corrupt pieces</i> x.y.z.w was banned - + Couldn't listen on any of the given ports. - + UPnP/NAT-PMP: Port mapping failure, message: %1 - + UPnP/NAT-PMP: Port mapping successful, message: %1 - + Fast resume data was rejected for torrent %1, checking again... - + Url seed lookup failed for url: %1, message: %2 - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... @@ -2121,12 +2159,12 @@ Are you sure you want to quit qBittorrent? - + No URL entered - + Please type at least one URL. @@ -2134,120 +2172,125 @@ Are you sure you want to quit qBittorrent? downloading - + Search - + Start - + Pause - + Delete - + Preview file - + Set upload limit - + Set download limit - + Delete Permanently - + Torrent Properties - + Open destination folder - + Name - + Size - + Progress - + DLSpeed - + UpSpeed - + Seeds/Leechs - + Ratio - + ETA - + Buy it - + Priority - + Increase priority - + Decrease priority - + Force recheck + + + Copy magnet link + + engineSelect @@ -2469,61 +2512,61 @@ However, those plugins were disabled. misc - + B bytes - + KiB kibibytes (1024 bytes) - + MiB mebibytes (1024 kibibytes) - + GiB gibibytes (1024 mibibytes) - + TiB tebibytes (1024 gibibytes) - + Unknown Unknown (size) - + < 1m < 1 minute - + %1m e.g: 10minutes - + %1h%2m e.g: 3hours 5minutes - + %1d%2h%3m e.g: 2days 10hours 2minutes @@ -2655,7 +2698,7 @@ However, those plugins were disabled. - + Size @@ -2665,13 +2708,13 @@ However, those plugins were disabled. - - + + None - Unreachable? - + Progress @@ -2751,49 +2794,49 @@ However, those plugins were disabled. - + Priorities: - + Normal: normal priority. Download order is dependent on availability - + High: higher than normal priority. Pieces are preferred over pieces with the same availability, but not over pieces with lower availability - + Maximum: maximum priority, availability is disregarded, the piece is preferred over any other piece with lower priority - + File name - - + + Priority - - + + qBittorrent - + Trackers list can't be empty. - + Ignored: file is not downloaded at all @@ -2818,7 +2861,7 @@ However, those plugins were disabled. - + Unknown @@ -2828,17 +2871,17 @@ However, those plugins were disabled. - + New url seed: - + This url seed is already in the list. - + New url seed New HTTP source @@ -2849,12 +2892,12 @@ However, those plugins were disabled. - + Priorities error - + Error, you can't filter all the files in a torrent. @@ -2879,18 +2922,18 @@ However, those plugins were disabled. - - + + Choose save path - + Save path creation error - + Could not create the save path @@ -3013,6 +3056,11 @@ However, those plugins were disabled. Seeds / Leechers + + + Copy magnet link + + Ratio @@ -3085,65 +3133,82 @@ However, those plugins were disabled. torrentAdditionDialog - - + + Unable to decode torrent file: - - + + Unknown + + + + + (%1 left after torrent download) + e.g. (100MiB left after torrent download) + + + + + (%1 more are required to download) + e.g. (100MiB more are required to download) + + + + + Choose save path - + Empty save path - + Please enter a save path - + Save path creation error - + Could not create the save path - + Invalid file selection - + You must select at least one file in the torrent - + File name - + Size - + Progress - - + + Priority diff --git a/src/lang/qbittorrent_es.qm b/src/lang/qbittorrent_es.qm index 0bc6b40670dd4e9b6afe726f816248ee2ef0ef31..ef085d1be57a8e94fec0a00a2445c3434e063aff 100644 GIT binary patch delta 3720 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 L`$*%V&U60 diff --git a/src/lang/qbittorrent_es.ts b/src/lang/qbittorrent_es.ts index d6421056aa..dd1f42ef7b 100644 --- a/src/lang/qbittorrent_es.ts +++ b/src/lang/qbittorrent_es.ts @@ -777,12 +777,6 @@ p, li { white-space: pre-wrap; } qBittorrent will watch a directory and automatically download torrents present in it Observación de carpetas - - - Transfer lists double-click - qBittorrent will watch a directory and automatically download torrents present in it - - Download list: @@ -889,6 +883,12 @@ p, li { white-space: pre-wrap; } Bittorrent Bittorrent + + + Transfer lists double-click action + Action executed when doucle-clicking on an item in transfer (download/upload) list + + Connections limit @@ -1110,54 +1110,54 @@ p, li { white-space: pre-wrap; } DownloadingTorrents - + Name i.e: file name Nombre - + Size i.e: file size Tamaño - + Progress i.e: % downloaded Progreso - + DL Speed i.e: Download speed Velocidad de Descarga - + UP Speed i.e: Upload speed Velocidad de Subida - + Seeds/Leechs i.e: full/partial sources Semillas/Leechs - + Ratio Radio - + ETA i.e: Estimated Time of Arrival / Time left Tiempo Restante Aproximado - + qBittorrent %1 started. e.g: qBittorrent v0.x started. qBittorrent %1 iniciado. @@ -1213,7 +1213,7 @@ p, li { white-space: pre-wrap; } Descargando '%1', por favor espera... - + Hide or Show Column Ocultar o Mostrar Columna @@ -1226,7 +1226,7 @@ p, li { white-space: pre-wrap; } UPnP/NAT-PMP: Mapeo del puerto exitoso, mensaje: %1 - + Priority Prioridad @@ -1360,7 +1360,7 @@ p, li { white-space: pre-wrap; } - + Hide or Show Column Ocultar o Mostrar Columna @@ -1400,12 +1400,12 @@ p, li { white-space: pre-wrap; } No se pudo crear el directorio: - + Open Torrent Files Abrir archivos Torrent - + Torrent Files Archivos Torrent @@ -1447,20 +1447,20 @@ p, li { white-space: pre-wrap; } ¿Seguro que quieres eliminar todos los archivos de la lista de descargas? - - - - - + + + + + &Yes &Sí - - - - - + + + + + &No &No @@ -1469,7 +1469,7 @@ p, li { white-space: pre-wrap; } Lista de descargas borrada. - + Are you sure you want to delete the selected item(s) in download list? ¿Seguro que quieres borrar el o los elemento(s) seleccionados de la lista de descargas? @@ -1505,7 +1505,7 @@ p, li { white-space: pre-wrap; } continuada. - + Finished Terminada @@ -1549,16 +1549,16 @@ p, li { white-space: pre-wrap; } qBittorrent - - + + qBittorrent qBittorrent - - - - + + + + Are you sure? -- qBittorrent ¿Estás seguro? -- qBittorrent @@ -1816,7 +1816,7 @@ Por favor cierra el otro antes. ¿Seguro que deseas borrar el o los elementos seleccionados de la lista de descargas y del disco duro? - + Download finished Descarga terminada @@ -1830,15 +1830,15 @@ Por favor cierra el otro antes. Motor de Búsqueda - - + + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - - + + Connection status: Estado de la conexión: @@ -1901,15 +1901,15 @@ Por favor cierra el otro antes. qBittorrent %1 iniciado. - - + + DL speed: %1 KiB/s e.g: Download speed: 10 KiB/s Velocidad de Descarga: %1 KiB/s - - + + UP speed: %1 KiB/s e.g: Upload speed: 10 KiB/s Velocidad de subida: %1 KiB/s @@ -1930,7 +1930,7 @@ Por favor cierra el otro antes. Detenida - + Are you sure you want to quit? ¿Estás seguro de que deseas salir? @@ -1993,14 +1993,14 @@ Por favor cierra el otro antes. '%1' reiniciado. - - + + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 ha terminado de descargarse. - + I/O Error i.e: Input/Output Error Error de Entrada/Salida @@ -2016,12 +2016,12 @@ Por favor cierra el otro antes. Un error ocurrió (¿disco lleno?), '%1' pausado. - + Connection Status: Estado de la conexión: - + Online En línea @@ -2057,23 +2057,23 @@ Por favor cierra el otro antes. Descargando '%1', por favor espera... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Un error ocurrió (¿disco lleno?), '%1' pausado. - + Search Buscar - + RSS RSS - + An I/O error occured for torrent %1. Reason: %2 e.g: An error occured for torrent xxx.avi. @@ -2090,13 +2090,13 @@ Por favor cierra el otro antes. Soporte para DHT [encendido], puerto: %1 - - + + DHT support [OFF] Soporte para DHT [apagado] - + PeX support [ON] Soporte para PeX [encendido] @@ -2105,31 +2105,31 @@ Por favor cierra el otro antes. Soporte para PeX [apagado] - + The download list is not empty. Are you sure you want to quit qBittorrent? La lista de descargas no está vacía. ¿En verdad deseas salir de qBittorrent? - - + + Downloads Descargas - + Are you sure you want to delete the selected item(s) in finished list? ¿Estás seguro de que deseas borrar los íconos seleccionados en la lista de terminados? - + qBittorrent is bound to port: TCP/%1 e.g: qBittorrent is bound to port: 6881 - + UPnP support [ON] Soporte para UPnP [encendido] @@ -2138,17 +2138,17 @@ Are you sure you want to quit qBittorrent? Ten cuidado, compartir material protegido sin permiso es ilegal. - + Encryption support [ON] Soporte para encriptado [encendido] - + Encryption support [FORCED] Soporte para encriptado [forzado] - + Encryption support [OFF] Sopote para encriptado [apagado] @@ -2162,13 +2162,13 @@ Are you sure you want to quit qBittorrent? Radio - + Alt+1 shortcut to switch to first tab Alt+1 - + Alt+2 shortcut to switch to second tab Alt+2 @@ -2179,18 +2179,18 @@ Are you sure you want to quit qBittorrent? Alt+3, Ctrl+F - + Alt+4 shortcut to switch to fourth tab Alt+4 - + Url download error Error de descarga de Url - + Couldn't download file at url: %1, reason: %2. No se pudo descargar el archivo en la url: %1, razón: %2. @@ -2199,12 +2199,12 @@ Are you sure you want to quit qBittorrent? Se negaron los datos para reinicio rápido del torrent: %1, verificando de nuevo... - + Are you sure you want to delete the selected item(s) from download list and from hard drive? ¿Estás seguro de que deseas borrar los elementos seleccionados de la lista de descargas y el disco duro? - + Are you sure you want to delete the selected item(s) from finished list and from hard drive? ¿Estás seguro de que deseas borrar los elementos selccionados de la lista de terminados y el disco duro? @@ -2218,13 +2218,13 @@ Are you sure you want to quit qBittorrent? Falló la búsqueda de semilla por Url para la url: %1, mensaje: %2 - + Alt+3 shortcut to switch to third tab Alt+3 - + Ctrl+F shortcut to switch to search tab Ctrl + F @@ -2235,78 +2235,78 @@ Are you sure you want to quit qBittorrent? '%1' fue eliminado porque su radio llegó al valor máximo que estableciste. - + UPnP support [OFF] Soporte para UPnP [Apagado] - + NAT-PMP support [ON] Soporte para NAT-PMP [Encendido] - + NAT-PMP support [OFF] Soporte para NAT-PMP[Apagado] - + DHT support [ON], port: UDP/%1 - + Local Peer Discovery [ON] Descubrimiento local de Peers [Encendido] - + Local Peer Discovery support [OFF] Soporte para descubrimiento local de Peers [Apagado] - + qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s) %1 is qBittorrent version qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s) - - + + DL: %1 KiB/s - - + + UP: %1 KiB/s - - + + Ratio: %1 - - + + DHT: %1 nodes - - + + No direct connections. This may indicate network configuration problems. - + Uploads - + Options were saved successfully. Opciones guardadas exitosamente. @@ -2652,71 +2652,89 @@ Are you sure you want to quit qBittorrent? RSS - + Search Buscar - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Torrents:</span> <span style=" font-style:italic;">(double-click to download)</span></p></body></html> + + + + Delete Borrar - + Rename Renombrar - + Refresh Actualizar + + + Download torrent + + + + + Open news URL + + Create Crear - + Delete selected streams Borrar los flujos seleccionados - + Refresh RSS streams Actualizar los flujos de RSS - + Add a new RSS stream Agregar un nuevo flujo de RSS - <b>News:</b> <i>(double-click to open the link in your web browser)</i> - <b>Noticias: </b> <i>(da doble clic para abrir el vínculo en tu navegador)</i> + <b>Noticias: </b> <i>(da doble clic para abrir el vínculo en tu navegador)</i> - + Add RSS stream Agregar flujo RSS - + Refresh all streams Actualizar todos los flujos - + RSS streams: Flujos RSS: - + 2 2 - + Mark all as read Marcar todos como leídos @@ -2724,86 +2742,86 @@ Are you sure you want to quit qBittorrent? RSSImp - + Please type a rss stream url Por favor escribe una URL de flujo de RSS - + Stream URL: URL del flujo: - + Please choose a new name for this stream Por favor selecciona un nuevo nombre para este flujo - + New stream name: Nuevo nombre del flujo: - + Are you sure? -- qBittorrent ¿Estás seguro? -- qBittorrent - + &Yes &Sí - + &No &No - + Are you sure you want to delete this stream from the list? ¿Estás seguro de que deseas borrar este flujo de la lista? - - - - + + + + Description: Descripción: - - - - + + + + url: url: - - - - + + + + Last refresh: Última actualización: - + qBittorrent qBittorrent - + This rss feed is already in the list. Esta fuente de rss ya está en la lista. - + Date: Fecha: - + Author: Autor: @@ -2811,7 +2829,7 @@ Are you sure you want to quit qBittorrent? RssItem - + No description available Sin descripción disponible @@ -2819,13 +2837,13 @@ Are you sure you want to quit qBittorrent? RssStream - + %1 ago 10min ago Hace %1 - + Never Nunca @@ -3127,25 +3145,46 @@ Log: addTorrentDialog - + Torrent addition dialog Diálogo de adición de torrent - + Save path: Ruta de guardado: - + ... ... - + + Torrent size: + + + + + + Unknown + Desconocido + + + + Free disk space: + + + + Torrent content: Contenido del torrent: + + + Download in sequential order (slower but good for previewing) + + File name Nombre del archivo @@ -3159,22 +3198,21 @@ Log: Seleccionado - Download in correct order (slower but good for previewing) - Descargar por orden (mas lento pero mejor para previsualizar) + Descargar por orden (mas lento pero mejor para previsualizar) - + Add to download list in paused state Agregar a la lista de descargas en estado de pausa - + Add Agregar - + Cancel Cancelar @@ -3191,32 +3229,32 @@ Log: Seleccionar - + Ignored Ignorado - + Normal Normal - + High Alta - + Maximum Máxima - + Collapse all - + Expand all @@ -3276,18 +3314,18 @@ Log: bittorrent - + %1 reached the maximum ratio you set. - + '%1' was removed permanently. 'xxx.avi' was removed permanently. '%1' fue borrado permanentemente. - + '%1' was removed. 'xxx.avi' was removed. '%1' fue removido. @@ -3303,77 +3341,85 @@ Log: '%1' reiniciado. - - + + '%1' is not a valid magnet URI. + + + + + + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. '%1' ya está en la lista de descargas. - - + + + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) '%1' reiniciado. (reinicio rápido) - - + + + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. '%1' agregado a la lista de descargas. - - + + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' Imposible decodificar el archivo torrent: '%1' - + This file is either corrupted or this isn't a torrent. Este archivo puede estar corrupto, o no ser un torrent. - + <font color='red'>%1</font> <i>was blocked due to your IP filter</i> x.y.z.w was blocked - + <font color='red'>%1</font> <i>was banned due to corrupt pieces</i> x.y.z.w was banned - + Couldn't listen on any of the given ports. No se pudo escuchar en ninguno de los puertos brindados. - + UPnP/NAT-PMP: Port mapping failure, message: %1 UPnP/NAT-PMP: Falló el mapeo del puerto, mensaje: %1 - + UPnP/NAT-PMP: Port mapping successful, message: %1 UPnP/NAT-PMP: Mapeo del puerto exitoso, mensaje: %1 - + Fast resume data was rejected for torrent %1, checking again... Se negaron los datos para reinicio rápido del torrent: %1, verificando de nuevo... - + Url seed lookup failed for url: %1, message: %2 Falló la búsqueda de semilla por Url para la url: %1, mensaje: %2 - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... Descargando '%1', por favor espera... @@ -3690,12 +3736,12 @@ Log: Descargar de urls - + No URL entered No se ha escrito ninguna URL - + Please type at least one URL. Por favor escribe al menos una URL. @@ -3703,7 +3749,7 @@ Log: downloading - + Search Buscar @@ -3732,17 +3778,17 @@ Log: Filtro de IP - + Start Comenzar - + Pause Pausa - + Delete Borrar @@ -3751,100 +3797,105 @@ Log: Limpiar - + Preview file Previsualizar archivo - + Set upload limit Establece el límite de subida - + Set download limit Establece el límite de descarga - + Delete Permanently Borrar permanentemente - + Torrent Properties Propiedades del Torrent - + Open destination folder Abrir carpeta de destino - + Name Nombre - + Size Tamaño - + Progress Progreso - + DLSpeed Velocidad de Descarga - + UpSpeed Velocidad de Subida - + Seeds/Leechs Seeds/Leechs - + Ratio Radio - + ETA Tiempo estimado - + Buy it Comprarlo - + Priority Prioridad - + Increase priority - + Decrease priority - + Force recheck + + + Copy magnet link + + engineSelect @@ -4078,31 +4129,31 @@ De cualquier forma, esos plugins fueron deshabilitados. misc - + B bytes B - + KiB kibibytes (1024 bytes) KiB - + MiB mebibytes (1024 kibibytes) MiB - + GiB gibibytes (1024 mibibytes) GiB - + TiB tebibytes (1024 gibibytes) TiB @@ -4137,31 +4188,31 @@ De cualquier forma, esos plugins fueron deshabilitados. d - + Unknown Unknown (size) Desconocido - + < 1m < 1 minute <1m - + %1m e.g: 10minutes %1m - + %1h%2m e.g: 3hours 5minutes %1h%2m - + %1d%2h%3m e.g: 2days 10hours 2minutes %1d%2h%3m @@ -4506,7 +4557,7 @@ De cualquier forma, esos plugins fueron deshabilitados. MB - + Unknown Desconocido @@ -4545,7 +4596,7 @@ De cualquier forma, esos plugins fueron deshabilitados. Puedes seleccionar aquí qué archivos deseas descargar específicamente en el torrent actual. - + Size Tamaño @@ -4554,8 +4605,8 @@ De cualquier forma, esos plugins fueron deshabilitados. Seleccionado - - + + None - Unreachable? Nada - ¿Inaccesible? @@ -4572,7 +4623,7 @@ De cualquier forma, esos plugins fueron deshabilitados. Errores: - + Progress Progreso @@ -4688,49 +4739,49 @@ De cualquier forma, esos plugins fueron deshabilitados. URL del nuevo tracker: - + Priorities: Prioridades: - + Normal: normal priority. Download order is dependent on availability Normal: prioridad normal. El orden de descarga depende de la disponibilidad - + High: higher than normal priority. Pieces are preferred over pieces with the same availability, but not over pieces with lower availability Alta: más alta que la prioridad normal. Piezas se prefieren sobre piezas con la misma disponibilidad, pero no sobre piezas con menor disponibilidad - + Maximum: maximum priority, availability is disregarded, the piece is preferred over any other piece with lower priority Máxima: prioridad máxima, la disponibilidad no importa, la pieza se prefiere sobre cualquier otra pieza con menor disponibilidad - + File name Nombre del archivo - - + + Priority Prioridad - - + + qBittorrent qBittorrent - + Trackers list can't be empty. La lista de trackers no puede estar vacía. - + Ignored: file is not downloaded at all Ignorado: el archivo no se ha descargado en lo absoluto @@ -4760,12 +4811,12 @@ De cualquier forma, esos plugins fueron deshabilitados. Semillas Url - + New url seed: Nueva semilla url: - + This url seed is already in the list. Esta semilla url ya está en la lista. @@ -4779,7 +4830,7 @@ De cualquier forma, esos plugins fueron deshabilitados. Ninguno - + New url seed New HTTP source Nueva semilla url @@ -4790,12 +4841,12 @@ De cualquier forma, esos plugins fueron deshabilitados. Las siguientes semillas url están disponibles para este torrent: - + Priorities error Error de propiedades - + Error, you can't filter all the files in a torrent. Error, no puedes filtrar todos los archivos en un torrent. @@ -4820,18 +4871,18 @@ De cualquier forma, esos plugins fueron deshabilitados. ... - - + + Choose save path Selecciona la ruta de guardado - + Save path creation error Error en la creación de ruta de guardado - + Could not create the save path No se pudo crear la ruta de guardado @@ -4974,6 +5025,11 @@ De cualquier forma, esos plugins fueron deshabilitados. Seeds / Leechers + + + Copy magnet link + + Leechers Leechers @@ -5070,8 +5126,8 @@ De cualquier forma, esos plugins fueron deshabilitados. Verdadero - - + + Unable to decode torrent file: Imposible decodificar el archivo torrent: @@ -5080,8 +5136,8 @@ De cualquier forma, esos plugins fueron deshabilitados. Este archivo puede estar corrupto, o no ser un torrent. - - + + Choose save path Selecciona la ruta de guardado @@ -5090,53 +5146,70 @@ De cualquier forma, esos plugins fueron deshabilitados. Falso - + + Unknown + Desconocido + + + + (%1 left after torrent download) + e.g. (100MiB left after torrent download) + + + + + (%1 more are required to download) + e.g. (100MiB more are required to download) + + + + Empty save path Ruta de guardado vacía - + Please enter a save path Por favor ingresa una ruta de guardado - + Save path creation error Error en la creación de ruta de guardado - + Could not create the save path No se pudo crear la ruta de guardado - + Invalid file selection Selección de archivo inválida - + You must select at least one file in the torrent Debes seleccionar al menos un arcihvo en el torrent - + File name Nombre del archivo - + Size Tamaño - + Progress Progreso - - + + Priority Prioridad diff --git a/src/lang/qbittorrent_fi.qm b/src/lang/qbittorrent_fi.qm index fae674d888191b3769c541ba050ed84d84eccb8f..051f39149171e4064a1036868f62b20cda6893db 100644 GIT binary patch delta 4387 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 U?)~vy=W-?bYTNRwvFh3X2aE{_M*si- delta 4732 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 Vc*BE|l4R48%0nX!n-edD{TCwoYij@i diff --git a/src/lang/qbittorrent_fi.ts b/src/lang/qbittorrent_fi.ts index 949e967313..87cc2df6c6 100644 --- a/src/lang/qbittorrent_fi.ts +++ b/src/lang/qbittorrent_fi.ts @@ -616,6 +616,12 @@ p, li { white-space: pre-wrap; } qBittorrent will watch a directory and automatically download torrents present in it Kansioiden tarkkailu + + + Transfer lists double-click action + Action executed when doucle-clicking on an item in transfer (download/upload) list + + Automatically download torrents present in this folder: @@ -921,10 +927,9 @@ p, li { white-space: pre-wrap; } Verkko - Transfer lists double-click qBittorrent will watch a directory and automatically download torrents present in it - Kaksoisnapsautus siirtolistassa + Kaksoisnapsautus siirtolistassa @@ -955,54 +960,54 @@ p, li { white-space: pre-wrap; } DownloadingTorrents - + Name i.e: file name Nimi - + Size i.e: file size Koko - + Progress i.e: % downloaded Edistyminen - + DL Speed i.e: Download speed Latausnopeus - + UP Speed i.e: Upload speed Lähetysnopeus - + Seeds/Leechs i.e: full/partial sources Jakajat / Lataajat - + Ratio Jakosuhde - + ETA i.e: Estimated Time of Arrival / Time left Aikaa jäljellä - + qBittorrent %1 started. e.g: qBittorrent v0.x started. qBittorrent %1 käynnistyi. @@ -1058,7 +1063,7 @@ p, li { white-space: pre-wrap; } Ladataa torrenttia ”%1”. Odota... - + Hide or Show Column Näytä tai piilota sarake @@ -1071,7 +1076,7 @@ p, li { white-space: pre-wrap; } UPnP tai NAT-PMP: portin varaaminen onnistui: %1 - + Priority Prioriteetti @@ -1194,7 +1199,7 @@ p, li { white-space: pre-wrap; } Lataajia - + Hide or Show Column Näytä tai piilota sarake @@ -1241,10 +1246,10 @@ p, li { white-space: pre-wrap; } Haun aika tapahtui virhe... - - - - + + + + Are you sure? -- qBittorrent Oletko varma? — qBittorrent @@ -1253,7 +1258,7 @@ p, li { white-space: pre-wrap; } Haluatko varmasti poistaa kaikki tiedostot latauslistasta? - + Are you sure you want to delete the selected item(s) in download list? Haluatko varmasti poistaa valitut tiedostot latauslistasta? @@ -1315,7 +1320,7 @@ p, li { white-space: pre-wrap; } Latausnopeus - + Download finished Lataus valmistui @@ -1341,7 +1346,7 @@ p, li { white-space: pre-wrap; } ETA - + Finished Valmis @@ -1371,11 +1376,11 @@ p, li { white-space: pre-wrap; } Nimi - - - - - + + + + + &No &Ei @@ -1388,7 +1393,7 @@ p, li { white-space: pre-wrap; } Hakupalvelua ei ole valittu - + Open Torrent Files Avaa torrent-tiedostoja @@ -1518,7 +1523,7 @@ Uutta esikatselua ei voi aloittaa. Tiedosto ei ole kelvollinen torrent-tiedosto. - + Torrent Files Torrent-tiedostot @@ -1539,11 +1544,11 @@ Uutta esikatselua ei voi aloittaa. Lähetysnopeus: - - - - - + + + + + &Yes &Kyllä @@ -1560,15 +1565,15 @@ Uutta esikatselua ei voi aloittaa. I/O-virhe - - + + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - - + + Connection status: Yhteyden tila: @@ -1621,21 +1626,21 @@ Uutta esikatselua ei voi aloittaa. Lataajia - - + + qBittorrent qBittorrent - - + + DL speed: %1 KiB/s e.g: Download speed: 10 KiB/s Latausnopeus: %1 KiB/s - - + + UP speed: %1 KiB/s e.g: Upload speed: 10 KiB/s Lähetysnopeus: %1 KiB/s @@ -1656,7 +1661,7 @@ Uutta esikatselua ei voi aloittaa. Seisahtunut - + Are you sure you want to quit? Haluatko varmasti poistua? @@ -1694,14 +1699,14 @@ Uutta esikatselua ei voi aloittaa. Torrentin ”%1” lataamista jatkettiin. - - + + %1 has finished downloading. e.g: xxx.avi has finished downloading. Lataus ”%1” tuli valmiiksi. - + I/O Error i.e: Input/Output Error I/O-virhe @@ -1712,12 +1717,12 @@ Uutta esikatselua ei voi aloittaa. Tiedostoon %1 kirjoittaminen tai lukeminen epäonnistui. Levy saattaa olla täynnä. Lataus pysäytettiin. - + Connection Status: Yhteyden tila: - + Online Ei verkkoyhteyttä @@ -1736,18 +1741,18 @@ Uutta esikatselua ei voi aloittaa. Tulokset - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Tapahtui virhe (levy on täynnä?). Lataus ”%1” pysäytettiin. - + Search Etsi - + RSS RSS @@ -1761,13 +1766,13 @@ Uutta esikatselua ei voi aloittaa. DHT-tuki [PÄÄLLÄ] portissa %1 - - + + DHT support [OFF] DHT-tuki [EI PÄÄLLÄ] - + PeX support [ON] PeX-tuki [PÄÄLLÄ] @@ -1776,51 +1781,51 @@ Uutta esikatselua ei voi aloittaa. PeX-tuki [EI PÄÄLLÄ] - + The download list is not empty. Are you sure you want to quit qBittorrent? Latauslista ei ole tyhjä. Haluatko varmasti lopettaa? - - + + Downloads Lataukset - + Are you sure you want to delete the selected item(s) in finished list? Haluatko poistaa valitut kohteet listalta? - + UPnP support [ON] UPnP-tuki [PÄÄLLÄ] - + Encryption support [ON] Salaus [KÄYTÖSSÄ] - + Encryption support [FORCED] Salaus [PAKOTETTU] - + Encryption support [OFF] Salaus [EI KÄYTÖSSÄ] - + Alt+1 shortcut to switch to first tab Alt+1 - + An I/O error occured for torrent %1. Reason: %2 e.g: An error occured for torrent xxx.avi. @@ -1829,34 +1834,34 @@ Haluatko varmasti lopettaa? Syy: %2 - + Alt+2 shortcut to switch to second tab Alt+2 - + Alt+4 shortcut to switch to fourth tab Alt+4 - + Url download error Latausvirhe - + Couldn't download file at url: %1, reason: %2. Tiedoston lataaminen osoitteesta %1 epäonnistui: %2. - + Are you sure you want to delete the selected item(s) from download list and from hard drive? Haluatko varmasti poistaa valitut tiedostot listalta ja kovalevyltä? - + Are you sure you want to delete the selected item(s) from finished list and from hard drive? Haluatko varmasti poistaa valitut tiedostot listalta ja kovalevyltä? @@ -1866,50 +1871,50 @@ Haluatko varmasti lopettaa? ”%1” poistettiin pysyvästi. - + Alt+3 shortcut to switch to third tab Alt+3 - + Ctrl+F shortcut to switch to search tab Ctrl+F - + qBittorrent is bound to port: TCP/%1 e.g: qBittorrent is bound to port: 6881 qBittorrent käyttää porttia: TCP/%1 - + UPnP support [OFF] UPnP-tuki [EI PÄÄLLÄ] - + NAT-PMP support [ON] NAT-PMP-tuki [PÄÄLLÄ] - + NAT-PMP support [OFF] NAT-PMP-tuki [EI PÄÄLLÄ] - + DHT support [ON], port: UDP/%1 DHT-tuki [KÄYTÖSSÄ], portti: UDP/%1 - + Local Peer Discovery [ON] Paikallinen käyttäjien löytäminen [PÄÄLLÄ] - + Local Peer Discovery support [OFF] Paikallinen käyttäjien löytäminen [EI PÄÄLLÄ] @@ -1919,48 +1924,48 @@ Haluatko varmasti lopettaa? ”%1% poistettiin, koska sen jakosuhde saavutti asettamasi enimmäisarvon. - + qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s) %1 is qBittorrent version qBittorrent %1 (↓ %2 KiB/s | ↑ %3 KiB/s) - - + + DL: %1 KiB/s ↓%1 KiB/s - - + + UP: %1 KiB/s ↑%1 KiB/s - - + + Ratio: %1 Suhde: %1 - - + + DHT: %1 nodes DHT: %1 solmua - - + + No direct connections. This may indicate network configuration problems. Ei suoria yhteyksiä. Tämä voi olla merkki verkko-ongelmista. - + Uploads Lähetykset - + Options were saved successfully. Asetukset tallennettiin. @@ -2231,71 +2236,89 @@ Haluatko varmasti lopettaa? RSS - + Search Etsi - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Torrents:</span> <span style=" font-style:italic;">(double-click to download)</span></p></body></html> + + + + Delete Poista - + Rename Nimeä uudelleen - + Refresh Päivitä + + + Download torrent + + + + + Open news URL + + Create Luo - + Delete selected streams Poista valitut syötteet - + Refresh RSS streams Päivitä syötteet - + Add a new RSS stream Lisää uusi syöte - <b>News:</b> <i>(double-click to open the link in your web browser)</i> - <b>Uutiset:</b> <i>(avaa linkki selaimessa kaksoisnapsauttamalla)</i> + <b>Uutiset:</b> <i>(avaa linkki selaimessa kaksoisnapsauttamalla)</i> - + Add RSS stream Lisää syöte - + Refresh all streams Päivitä kaikki syötteet - + RSS streams: RSS-syötteet: - + 2 2 - + Mark all as read Merkitse kaikki luetuiksi @@ -2303,86 +2326,86 @@ Haluatko varmasti lopettaa? RSSImp - + Please type a rss stream url Osoite - + Stream URL: Syötteen osoite: - + Please choose a new name for this stream Valitse uusi nimi tälle syötteelle - + New stream name: Uusi nimi: - + Are you sure? -- qBittorrent Oletko varma? — qBittorrent - + &Yes &Kyllä - + &No &Ei - + Are you sure you want to delete this stream from the list? Haluatko poistaa tämän syötteen listasta? - - - - + + + + Description: Kuvaus: - - - - + + + + url: Osoite: - - - - + + + + Last refresh: Viimeisin päivitys: - + qBittorrent qBittorrent - + This rss feed is already in the list. RSS-syöte on jo listassa. - + Date: Päivä: - + Author: Tekijä: @@ -2390,7 +2413,7 @@ Haluatko varmasti lopettaa? RssItem - + No description available Ei kuvausta @@ -2398,13 +2421,13 @@ Haluatko varmasti lopettaa? RssStream - + %1 ago 10min ago %1 sitten - + Never Ei koskaan @@ -2662,29 +2685,49 @@ Muutoshistoria: addTorrentDialog - + ... ... - + + Torrent size: + + + + + + Unknown + + + + + Free disk space: + + + + + Download in sequential order (slower but good for previewing) + + + + Add Lisää - + Add to download list in paused state Lisää latauslistaan pysäytettynä - + Cancel Peru - Download in correct order (slower but good for previewing) - Lataa järjestyksessä (hitaampi, mutta mahdollistaa aikaisemman esikatselun) + Lataa järjestyksessä (hitaampi, mutta mahdollistaa aikaisemman esikatselun) File name @@ -2695,7 +2738,7 @@ Muutoshistoria: Koko - + Save path: Tallennuskansio: @@ -2708,12 +2751,12 @@ Muutoshistoria: Valittu - + Torrent addition dialog Torrentinlisäämisikkuna - + Torrent content: Torrentin sisältö: @@ -2722,27 +2765,27 @@ Muutoshistoria: Poista valinta - + Ignored Ei ladata - + Normal Normaali - + High Korkea - + Maximum Korkein - + Collapse all Pienennä kaikki @@ -2751,7 +2794,7 @@ Muutoshistoria: Laajenna kaikki - + Expand all Laajenna kaikki @@ -2811,18 +2854,18 @@ Muutoshistoria: bittorrent - + %1 reached the maximum ratio you set. %1 on saavuttanut asetetun jakosuhdeluvun. - + '%1' was removed permanently. 'xxx.avi' was removed permanently. ”%1” poistettiin pysyvästi. - + '%1' was removed. 'xxx.avi' was removed. ”%1” poistettiin. @@ -2838,77 +2881,85 @@ Muutoshistoria: Torrentin ”%1” lataamista jatkettiin. - - + + '%1' is not a valid magnet URI. + + + + + + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. ”%1” on jo latauslistassa. - - + + + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) Torrentin "%1” latausta jatkettiin. (nopea palautuminen) - - + + + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. ”%1” lisättiin latauslistaan. - - + + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' Viallinen torrent-tiedosto: ”%1” - + This file is either corrupted or this isn't a torrent. Tiedosto ei ole kelvollinen torrent-tiedosto. - + <font color='red'>%1</font> <i>was blocked due to your IP filter</i> x.y.z.w was blocked <i>IP-suodatin on estänyt osoitteen</i> <font color='red'>%1</font> - + <font color='red'>%1</font> <i>was banned due to corrupt pieces</i> x.y.z.w was banned <font color='red'>%1</font> <i>on estetty korruptuneiden osien takia</i> - + Couldn't listen on any of the given ports. Minkään annetun portin käyttäminen ei onnistunut. - + UPnP/NAT-PMP: Port mapping failure, message: %1 UPnP/NAT-PMP: portin varaaminen epäonnistui: %1 - + UPnP/NAT-PMP: Port mapping successful, message: %1 UPnP/NAT-PMP: portin varaaminen onnistui: %1 - + Fast resume data was rejected for torrent %1, checking again... Nopean jatkamisen tiedot eivät kelpaa torrentille %1. Tarkistetaan uudestaan... - + Url seed lookup failed for url: %1, message: %2 Jakajien haku osoitteesta %1 epäonnistui: %2 - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... Ladataa torrenttia ”%1”. Odota... @@ -3197,12 +3248,12 @@ Muutoshistoria: Yksi URL riville - + No URL entered Et antanut URL-osoitetta - + Please type at least one URL. Anna vähintään yksi URL-osoite. @@ -3210,7 +3261,7 @@ Muutoshistoria: downloading - + Search Etsi @@ -3239,17 +3290,17 @@ Muutoshistoria: IP-suodatus - + Start Käynnistä - + Pause Pysäytä - + Delete Poista @@ -3258,100 +3309,105 @@ Muutoshistoria: Tyhjennä - + Preview file Esikatsele - + Set upload limit Aseta lähetysnopeusrajoitus - + Set download limit Aseta latausnopeusrajoitus - + Delete Permanently Poista pysyvästi - + Torrent Properties Torrentin tiedot - + Open destination folder Avaa kohdekansio - + Name Nimi - + Size Koko - + Progress Edistyminen - + DLSpeed Latausnopeus - + UpSpeed Lähetysnopeus - + Seeds/Leechs Jakajat / Lataajat - + Ratio Jakosuhde - + ETA Aikaa jäljellä - + Buy it Osta - + Priority Prioriteetti - + Increase priority Nosta prioriteettia - + Decrease priority Laske prioriteettia - + Force recheck Pakota tarkistamaan uudelleen + + + Copy magnet link + + engineSelect @@ -3575,7 +3631,7 @@ Kyseiset liitänäiset poistettiin kuitenkin käytöstä. misc - + B bytes B @@ -3586,7 +3642,7 @@ Kyseiset liitänäiset poistettiin kuitenkin käytöstä. d - + GiB gibibytes (1024 mibibytes) GiB @@ -3602,7 +3658,7 @@ Kyseiset liitänäiset poistettiin kuitenkin käytöstä. h - + KiB kibibytes (1024 bytes) KiB @@ -3613,13 +3669,13 @@ Kyseiset liitänäiset poistettiin kuitenkin käytöstä. m - + MiB mebibytes (1024 kibibytes) MiB - + TiB tebibytes (1024 gibibytes) TiB @@ -3629,31 +3685,31 @@ Kyseiset liitänäiset poistettiin kuitenkin käytöstä. tuntematon - + Unknown Unknown (size) Tuntematon - + < 1m < 1 minute alle minuutti - + %1m e.g: 10minutes %1 min - + %1h%2m e.g: 3hours 5minutes %1 h %2 min - + %1d%2h%3m e.g: 2days 10hours 2minutes %1 d %2 h %3 min @@ -3927,8 +3983,8 @@ Kyseiset liitänäiset poistettiin kuitenkin käytöstä. Perustiedot - - + + None - Unreachable? Ei yhtään - tavoittamattomissa? @@ -3942,7 +3998,7 @@ Kyseiset liitänäiset poistettiin kuitenkin käytöstä. Asetukset - + Progress Edistyminen @@ -3976,7 +4032,7 @@ Kyseiset liitänäiset poistettiin kuitenkin käytöstä. Jakosuhde: - + Size Koko @@ -4025,7 +4081,7 @@ Kyseiset liitänäiset poistettiin kuitenkin käytöstä. Seurantapalvelimet: - + Unknown Tuntematon @@ -4080,49 +4136,49 @@ Kyseiset liitänäiset poistettiin kuitenkin käytöstä. Uuden palvelimen osoite: - + Priorities: Prioriteetit: - + Normal: normal priority. Download order is dependent on availability Normaali: Latausjärjestys riippuu saatavuudesta - + High: higher than normal priority. Pieces are preferred over pieces with the same availability, but not over pieces with lower availability Korkea: Valittuja osia ladataan aikaisemmin kuin muita osia, joilla on sama saatavuus - + Maximum: maximum priority, availability is disregarded, the piece is preferred over any other piece with lower priority Korkein: Osa ladataan ennen muita - + File name Tiedostonimi - - + + Priority Prioriteetti - - + + qBittorrent qBittorrent - + Trackers list can't be empty. Seurantapalvelinlista ei voi olla tyhjä. - + Ignored: file is not downloaded at all Ei ladata: tiedostoa ei ladata @@ -4152,12 +4208,12 @@ Kyseiset liitänäiset poistettiin kuitenkin käytöstä. URL-jaot - + New url seed: Uusi URL-jakaja: - + This url seed is already in the list. Jakaja on jo listassa. @@ -4167,7 +4223,7 @@ Kyseiset liitänäiset poistettiin kuitenkin käytöstä. Ei mikään - + New url seed New HTTP source Uusi URL-lähde @@ -4178,12 +4234,12 @@ Kyseiset liitänäiset poistettiin kuitenkin käytöstä. Seuraavat URL-jaot ovat saatavilla: - + Priorities error Prioriteettivirhe - + Error, you can't filter all the files in a torrent. Et voi suodattaa torrentin kaikkia tiedostoja. @@ -4208,18 +4264,18 @@ Kyseiset liitänäiset poistettiin kuitenkin käytöstä. ... - - + + Choose save path Valitse tallennuskansio - + Save path creation error Tallennuskansion luominen ei onnistunut - + Could not create the save path Tallennuskansion luominen ei onnistunut @@ -4366,6 +4422,11 @@ Kyseiset liitänäiset poistettiin kuitenkin käytöstä. Seeds / Leechers Jakajat / Lataajat + + + Copy magnet link + + Leechers Lataajia @@ -4454,18 +4515,18 @@ Kyseiset liitänäiset poistettiin kuitenkin käytöstä. torrentAdditionDialog - - + + Choose save path Valitse tallennuskansio - + Could not create the save path Tallennuskansion luominen ei onnistunut - + Empty save path Ei tallennuskansiota @@ -4474,17 +4535,34 @@ Kyseiset liitänäiset poistettiin kuitenkin käytöstä. Ei - + Invalid file selection Virheellinen tiedostovalinta - + Please enter a save path Anna tallennuskansio - + + Unknown + + + + + (%1 left after torrent download) + e.g. (100MiB left after torrent download) + + + + + (%1 more are required to download) + e.g. (100MiB more are required to download) + + + + Save path creation error Tallennuskansion luominen ei onnistunut @@ -4497,34 +4575,34 @@ Kyseiset liitänäiset poistettiin kuitenkin käytöstä. Kyllä - - + + Unable to decode torrent file: Torrent-tiedoston purkaminen ei onnistunut: - + You must select at least one file in the torrent Valitse ainakin yksi torrent-tiedosto - + File name Tiedostonimi - + Size Koko - + Progress Edistyminen - - + + Priority Prioriteetti diff --git a/src/lang/qbittorrent_fr.qm b/src/lang/qbittorrent_fr.qm index 458b936897173ba892ddabaebbc7e2a52e4be039..5ad055a9d6ff4299a99666ce93d77b2403c5a978 100644 GIT binary patch delta 4386 zcmXAtc|c8hAI6`1&pCHrMs`DXk|iozC|i>yOHG?3B4f)oMP#{A2-%7d8B5cIWC=-j zNwU?Xn0T3NgVz|#yu6wh?~~tOpWC_T{?2!KzRT(POXJlMMLOFbDXawB?imfpI{G3_;&hKyb|s?|_g*VE6Y>pXH(b#t4Rwg!HJ!py7}+ z=JViG$TwwR^f!=yTMx9Xg8bJVU|d_lxeEl(J%KW)E8sR;(4*Z~+AzyWT-X*TxND7I z-a^6hUQm8G!v}1GvP%Jal?Zx#5}fsy;Eq(mlfHt*=LK)i6a0NUl#FWNum;NhaX@Jv zl)Pg$;Lsgtav9o-AD}Jb4O3j8UpN8C@`PhPJqxUYV@Ycus4g5|b|weIrE4)zQV5rt z5H4>6*RM=Lw;HZ+N4JubK(k-bvq3!YTNFGib_2r~!}B2{eYh{ai+=^2ZUwItPv*ur zjvvUNXbkFB#ZWIHACj5mBl0Hsn0${R-I(v69>P10+zqnO^c`y8~T>z#60jqunB0>?6$X|zO1h+d1mRBNhN(|LyLSV{A3PO({ zuVuj92n4PA!nn5+^av76Yb{t2h~UhPR8nZQ_^_i`@OCNr~5SPxFGGk}dL*qkB*4U@2?7vt5q3ON~k;Ml9kyG=t*|A^BLmw@9vP_I#mI9!!v*4YMs`L)dEW;+MU)He>qtB_153K`)rU~xoEqL2rm1`XiY{^yS z-Jvo^{-C;1){jaGSgtCcwv--SR#kZNi?ce_!**L4`ZCq?U;Kb;hgDw|(7f259`yE4DyY3Wcm@sVtrP6KNIloVAGmW&9c}Ci zoNF$4zqWd5n9TzikfDy7^nemBRIE%Vgrn)LT5Qr~Qf4syLn4={*;4ux?Nrv99*_HN5#+m%y z`KHufUI%#ENnLCKS-_kpQkNR$Uz57cq=$93OMOBH0PfQSZ|NnE>w{U${RFo;NS%p5+3$F;aL<`&yxq7R9v!x^Jq`KEjYyJ~THQJ1>0(Hrc5) zRlBmg+`ZpBVDl=uPc98=bxRHy+zH6oE06LdfAN!peIBxFjFux8^1d^NWSjO3i&-Nt z*>jJql2`aMf){<|#DnA69A3#=2D2y6$r7BmPB7sg!IVXUxwawl_FNg*>LytBo4h-d zWj8pU+(%Z*yR+PB2;|JnbHK!x^8U5&IUW8hXLb0Qo)!p(oe@k`3*PdT&yHuAeLGe@ z7dD(?%##b|w+42OlnbX^0NQy8+O{1KAIihzt55Ipi-z)z!dF0pPjX2VJ#OVLSH#kw zAHJ0ils;(-DHKS|7HDz1E7S2tR z;DlhT)OzB6t+{A8J9_#HZ9V@Xzzwsu(UYHnlkwUvMm}KG0d0@0vCKqo?Xcypl-d{V zkE>7eL7lacb}{VSqXml_YUk8j48&~E&T*c^(Yr@GH;-7`*UWrzMpni(hJ~bh<4A1DeUk?+Jp8qXmWGyA$2l`;yA&y zL~YKPP%afswWnjL;ojcb(pLPPW3l#rjfdV-wU7Qe#)DsL9|zM=(-iHq=z-h~>T5q` zUI&`n>1zG$!-lKXHEFOGIM_$m;hk+J@ZAr({;g+lMxD|1-|G#`?Id`%Qa8X>b5OZ% zV2wssMCyj-@P|tibiQUTGnREa-?Pl*ga*0^^=dd<7t^pMJ>Nyruo$&&VN_FKP?9di zK9LgYq&s*#hf;j1J8^`OIrXP5-?r2bxaX?Ne>jFi&Q5nav53|9L|1%~9!>A4t1Otx zYCfTRlRuvlJE51FNs^;Dhn{S}r|-%9Z*?)Ba}L znxSu($n$Ra>z)2%;rg;wZ*$%44`N8;0xqhSCuKcKZH}n2Mu5`oWj#vyI%< z`)1b|5~BCpN0BvcsUKCvwvpUUKPJM!PJK=vy0VOhJQCdghu}#&!7JSbAEfK&JZEj} zzpS6PESnwuADezr?-;iJ8T!~SeBf_S^(%TY$4hqWv#W|3`X>7Ptc$>`O#OwNNX{rf zeP#H4?mNr$ujFzrSjPpoj}oj<^l!skb4CBC|6I11L-w`-u^iGP`WTd_ALxjK!SZe% zaKFe<&-pRe`oYBphs&L~pu*tUfF9I+Xb8HiaPJst2>FQ*TA5*(m@$!i;~T@I&keaS zoi{`}Fm#rihRBFYE>tmwxX=8(&)eh!CVN|KgkhJz8@ounA@dYj8f(aQuV(R_6`b#5 zICOa*GdIp~d@i3~`lliH_zv3RZ76@tK(=XMc)WHHXZt9@d$ERpS6pIz`WUe%o)hnX zMs=zR@V#x64xHf{b=Rn$PxE%xFb0C?uE__?_O`4; z#_2W3*F9~VH-`$VebBgIIQ?C-%ecskY<|>eYe&Ck1{vdfvI_<6H)cE>Kt)e7<~`5h z^(V$Njr%Y!`No1RRP@ktV_^`NqbpH@4_+FtjhPJmE5rDEfjjk}H-0dj1lra%et9v6 zUCUxNSvzcHn>Lv2m4Vztbtd_i> z3+`NI@-a~9lguXH0Qxoapy16drr>FG?5EMD*~@r;Qlcp`(2FPWaltfq)Gc zV|k{cC-uh%==AI)VMkMPpkd-ux9468Fkr9ZkTU3 zT}->0nD5we!k-!`c<-~hdN~95YYR)Q1Ui_o(PG~;8(6f)(y_Dy1Jc~m&4G4Kb+UME zTgx7!7IZ&t8PbG-p4}vQ`ZxAA?~fM$^Y*~PKuhpUSH7Gtv&{d)g;V94C1E+c|F9mG zqzQE>bVtiZ%_1f;+LAhFDmNZy%P&KC|AwoUoPJd1t`nA={h@TK4wEviH#dh-C}GyJxEDOH()wgF&lwk7!{!`Y+2X>*X4YqG_W}iDt?$31 hvW9J&0z7ojIa15jC1yA02qAYcD0#?E*c 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 Pb9*ncE4#F)Ma+KzjVzto diff --git a/src/lang/qbittorrent_fr.ts b/src/lang/qbittorrent_fr.ts index 8a7e606dbf..fa366074e8 100644 --- a/src/lang/qbittorrent_fr.ts +++ b/src/lang/qbittorrent_fr.ts @@ -858,10 +858,9 @@ Copyright © 2006 par Christophe DUMEZ<br> Surveillance de dossier - Transfer lists double-click qBittorrent will watch a directory and automatically download torrents present in it - Double-clic sur les listes de transfert + Double-clic sur les listes de transfert @@ -969,6 +968,12 @@ Copyright © 2006 par Christophe DUMEZ<br> Bittorrent + + + Transfer lists double-click action + Action executed when doucle-clicking on an item in transfer (download/upload) list + + Connections limit @@ -1199,54 +1204,54 @@ Copyright © 2006 par Christophe DUMEZ<br> DownloadingTorrents - + Name i.e: file name Nom - + Size i.e: file size Taille - + Progress i.e: % downloaded Progression - + DL Speed i.e: Download speed Vitesse DL - + UP Speed i.e: Upload speed Vitesse UP - + Seeds/Leechs i.e: full/partial sources Sources complètes / partielles - + Ratio Ratio - + ETA i.e: Estimated Time of Arrival / Time left Restant - + qBittorrent %1 started. e.g: qBittorrent v0.x started. qBittorrent %1 démarré. @@ -1302,7 +1307,7 @@ Copyright © 2006 par Christophe DUMEZ<br> Téléchargement de '%1', veuillez patienter... - + Hide or Show Column Afficher ou cacher colonne @@ -1315,7 +1320,7 @@ Copyright © 2006 par Christophe DUMEZ<br> UPnP/NAT-PMP : Réussite du mapping de port, message : %1 - + Priority Priorité @@ -1449,7 +1454,7 @@ Copyright © 2006 par Christophe DUMEZ<br> Total envoyé - + Hide or Show Column Afficher ou cacher colonne @@ -1473,7 +1478,7 @@ Copyright © 2006 par Christophe DUMEZ<br> Impossible de trouver le dossier : ' - + Open Torrent Files Ouvrir fichiers torrent @@ -1502,10 +1507,10 @@ Copyright © 2006 par Christophe DUMEZ<br> Ce fichier est corrompu ou il ne s'agit pas d'un torrent. - - - - + + + + Are you sure? -- qBittorrent Etes vous sûr ? -- qBittorrent @@ -1514,25 +1519,25 @@ Copyright © 2006 par Christophe DUMEZ<br> Etes-vous sûr de vouloir enlever tous les fichiers de la liste de téléchargement ? - - - - - + + + + + &Yes &Oui - - - - - + + + + + &No &Non - + Are you sure you want to delete the selected item(s) in download list? Etes-vous sûr de vouloir enlever tous les fichiers sélectionnés de la liste de téléchargement ? @@ -1553,7 +1558,7 @@ Copyright © 2006 par Christophe DUMEZ<br> ko/s - + Finished Terminé @@ -1598,7 +1603,7 @@ Copyright © 2006 par Christophe DUMEZ<br> Impossible de créer le dossier : - + Torrent Files Fichiers Torrent @@ -1938,7 +1943,7 @@ Veuillez d'abord le quitter. Transferts - + Download finished Téléchargement terminé @@ -1960,15 +1965,15 @@ Veuillez d'abord le quitter. Etes-vous certain de vouloir supprimer les fichiers sélectionnés depuis la liste de téléchargement ainsi que le disque dur ? - - + + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - - + + Connection status: Statut de la connexion : @@ -2031,21 +2036,21 @@ Veuillez d'abord le quitter. qBittorrent %1 démarré. - - + + qBittorrent qBittorrent - - + + DL speed: %1 KiB/s e.g: Download speed: 10 KiB/s Vitesse DL : %1 Ko/s - - + + UP speed: %1 KiB/s e.g: Upload speed: 10 KiB/s Vitesse UP : %1 Ko/s @@ -2066,7 +2071,7 @@ Veuillez d'abord le quitter. En attente - + Are you sure you want to quit? Etes vous certain de vouloir quitter ? @@ -2129,14 +2134,14 @@ Veuillez d'abord le quitter. '%1' a été relancé. - - + + %1 has finished downloading. e.g: xxx.avi has finished downloading. Le téléchargement de %1 est terminé. - + I/O Error i.e: Input/Output Error Erreur E/S @@ -2152,12 +2157,12 @@ Veuillez d'abord le quitter. Une erreur s'est produite (disque plein ?), '%1' a été mis en pause. - + Connection Status: Etat de la connexion : - + Online Connecté @@ -2193,23 +2198,23 @@ Veuillez d'abord le quitter. Téléchargement de '%1', veuillez patienter... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Une erreur s'est produite (disque plein ?), '%1' a été mis en pause. - + Search Recherche - + RSS - + An I/O error occured for torrent %1. Reason: %2 e.g: An error occured for torrent xxx.avi. @@ -2227,13 +2232,13 @@ Raison : %2 Support DHT [ON], port : %1 - - + + DHT support [OFF] Support DHT [OFF] - + PeX support [ON] Support PeX [ON] @@ -2242,15 +2247,15 @@ Raison : %2 Support PeX [OFF] - + The download list is not empty. Are you sure you want to quit qBittorrent? La liste de téléchargement n'est pas vide. Etes-vous certain de vouloir quitter qBittorrent ? - - + + Downloads Téléchargements @@ -2259,12 +2264,12 @@ Etes-vous certain de vouloir quitter qBittorrent ? Etes-vous certain de vouloir supprimer les torrents sélectionnés dans la liste de partage et sur le disque dur ? - + Are you sure you want to delete the selected item(s) in finished list? Etes-vous certain de vouloir supprimer les torrents sélectionnés de la liste de partage ? - + UPnP support [ON] Support UPnP [ON] @@ -2273,17 +2278,17 @@ Etes-vous certain de vouloir quitter qBittorrent ? Attention, partager des oeuvres sous copyright sans en avoir la permission est illégal. - + Encryption support [ON] Support cryptage [ON] - + Encryption support [FORCED] Support cryptage [Forcé] - + Encryption support [OFF] Support cryptage [OFF] @@ -2297,13 +2302,13 @@ Etes-vous certain de vouloir quitter qBittorrent ? Ratio - + Alt+1 shortcut to switch to first tab Alt+& - + Alt+2 shortcut to switch to second tab Alt+é @@ -2314,18 +2319,18 @@ Etes-vous certain de vouloir quitter qBittorrent ? Qt::CTRL+Qt::Key_F, Qt::Alt+Qt::Key_QuoteDbl - + Alt+4 shortcut to switch to fourth tab Alt+' - + Url download error Erreur téléchargement url - + Couldn't download file at url: %1, reason: %2. Impossible de télécharger le fichier à l'url : %1, raison : %2. @@ -2334,12 +2339,12 @@ Etes-vous certain de vouloir quitter qBittorrent ? Le relancement rapide a échoué pour le torrent %1, revérification... - + Are you sure you want to delete the selected item(s) from download list and from hard drive? Etes-vous certain de vouloir supprimer les fichiers sélectionnés depuis la liste de téléchargement ainsi que le disque dur ? - + Are you sure you want to delete the selected item(s) from finished list and from hard drive? Etes-vous certain de vouloir supprimer les torrents sélectionnés dans la liste de partage et sur le disque dur ? @@ -2353,50 +2358,50 @@ Etes-vous certain de vouloir quitter qBittorrent ? Le contact de la source HTTP a échoué à l'url : %1, message : %2 - + Alt+3 shortcut to switch to third tab Alt+" - + Ctrl+F shortcut to switch to search tab - + qBittorrent is bound to port: TCP/%1 e.g: qBittorrent is bound to port: 6881 qBittorrent écoute sur le port : TCP/%1 - + UPnP support [OFF] Support UPNP [OFF] - + NAT-PMP support [ON] Support NAT-PMP [ON] - + NAT-PMP support [OFF] Support NAT-PMP [OFF] - + DHT support [ON], port: UDP/%1 Support DHT [ON], port : UDP/%1 - + Local Peer Discovery [ON] Découverte locale de sources [ON] - + Local Peer Discovery support [OFF] Découverte locale de sources [OFF] @@ -2406,48 +2411,48 @@ Etes-vous certain de vouloir quitter qBittorrent ? '%1' a été supprimé car son ratio a atteint la limite que vous avez fixée. - + qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s) %1 is qBittorrent version qBittorrent %1 (DL: %2Ko/s, UP: %3Ko/s) - - + + DL: %1 KiB/s R : %1 Ko/s - - + + UP: %1 KiB/s E : %1 Ko/s - - + + Ratio: %1 Ratio : %1 - - + + DHT: %1 nodes DHT : %1 noeuds - - + + No direct connections. This may indicate network configuration problems. Aucune connexion directe. Ceci peut être signe d'une mauvaise configuration réseau. - + Uploads Partages - + Options were saved successfully. Préférences sauvegardées avec succès. @@ -2789,25 +2794,44 @@ Etes-vous certain de vouloir quitter qBittorrent ? RSS - + Search Recherche - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Torrents:</span> <span style=" font-style:italic;">(double-click to download)</span></p></body></html> + + + + Delete Supprimer - + Rename Renommer - + Refresh Rafraîchir + + + Download torrent + + + + + Open news URL + + Create Créer @@ -2817,47 +2841,46 @@ Etes-vous certain de vouloir quitter qBittorrent ? Flux RSS : - + Delete selected streams Supprimer les flux sélectionnés - + Refresh RSS streams Rafraîchir les flux RSS - + Add a new RSS stream Ajouter un flux RSS - <b>News:</b> <i>(double-click to open the link in your web browser)</i> - <b>Articles :</b> <i>(double-clic pour ouvrir le lien dans votre navigateur)</i> + <b>Articles :</b> <i>(double-clic pour ouvrir le lien dans votre navigateur)</i> - + Add RSS stream Ajouter un flux RSS - + Refresh all streams Rafraîchir tous les flux - + RSS streams: Flux RSS : - + 2 - + Mark all as read Tout marquer comme lu @@ -2865,22 +2888,22 @@ Etes-vous certain de vouloir quitter qBittorrent ? RSSImp - + Please type a rss stream url Veuillez entrer l'url du flux RSS - + Stream URL: URL du flux : - + Please choose a new name for this stream Veuillez choisir un nouveau nom pour ce flux - + New stream name: Nouveau nom de flux : @@ -2889,7 +2912,7 @@ Etes-vous certain de vouloir quitter qBittorrent ? Aucune description disponible - + Are you sure? -- qBittorrent Etes vous sûr ? -- qBittorrent @@ -2898,12 +2921,12 @@ Etes-vous certain de vouloir quitter qBittorrent ? Etes-vous certain de vouloir supprimer ce flux de la liste ? - + &Yes &Oui - + &No &Non @@ -2916,51 +2939,51 @@ Etes-vous certain de vouloir quitter qBittorrent ? Aucune description disponible - + Are you sure you want to delete this stream from the list? Etes-vous certain de vouloir supprimer ce flux de la liste ? - - - - + + + + Description: Description : - - - - + + + + url: url : - - - - + + + + Last refresh: Dernier rafraîchissement : - + qBittorrent qBittorrent - + This rss feed is already in the list. Cette source RSS est déjà dans votre liste. - + Date: Date : - + Author: Auteur : @@ -2968,7 +2991,7 @@ Etes-vous certain de vouloir quitter qBittorrent ? RssItem - + No description available Aucune description disponible @@ -2976,13 +2999,13 @@ Etes-vous certain de vouloir quitter qBittorrent ? RssStream - + %1 ago 10min ago il y a %1 - + Never Jamais @@ -3280,25 +3303,46 @@ Changements: addTorrentDialog - + Torrent addition dialog Dialogue d'ajout de torrent - + Save path: Répertoire de destination : - + ... ... - + + Torrent size: + + + + + + Unknown + + + + + Free disk space: + + + + Torrent content: Contenu du torrent : + + + Download in sequential order (slower but good for previewing) + + File name Nom @@ -3312,22 +3356,21 @@ Changements: Sélectionné - Download in correct order (slower but good for previewing) - Télécharger dans l'ordre (plus lent mais idéal pour la prévisualisation) + Télécharger dans l'ordre (plus lent mais idéal pour la prévisualisation) - + Add to download list in paused state Ajouter à la liste de téléchargement en état de pause - + Add Ajouter - + Cancel Annuler @@ -3344,27 +3387,27 @@ Changements: Sélectionner - + Ignored Ignoré - + Normal Normale - + High Haute - + Maximum Maximale - + Collapse all Tout réduire @@ -3373,7 +3416,7 @@ Changements: Tout développer - + Expand all Tout développer @@ -3433,18 +3476,18 @@ Changements: bittorrent - + %1 reached the maximum ratio you set. %1 a atteint le ratio maximum défini. - + '%1' was removed permanently. 'xxx.avi' was removed permanently. '%1' a été supprimé de manière permanente. - + '%1' was removed. 'xxx.avi' was removed. '%1' a été supprimé. @@ -3460,77 +3503,85 @@ Changements: '%1' a été relancé. - - + + '%1' is not a valid magnet URI. + + + + + + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. '%1' est déjà présent dans la liste de téléchargement. - - + + + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) '%1' a été relancé. (relancement rapide) - - + + + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. '%1' a été ajouté à la liste de téléchargement. - - + + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' Impossible de décoder le torrent : '%1' - + This file is either corrupted or this isn't a torrent. Ce fichier est corrompu ou il ne s'agit pas d'un torrent. - + <font color='red'>%1</font> <i>was blocked due to your IP filter</i> x.y.z.w was blocked <font color='red'>%1</font> <i>a été bloqué par votre filtrage IP</i> - + <font color='red'>%1</font> <i>was banned due to corrupt pieces</i> x.y.z.w was banned <font color='red'>%1</font> <i>a été banni suite à l'envoi de données corrompues</i> - + Couldn't listen on any of the given ports. Impossible d'écouter sur les ports donnés. - + UPnP/NAT-PMP: Port mapping failure, message: %1 UPnP/NAT-PMP : Echec de mapping du port, message : %1 - + UPnP/NAT-PMP: Port mapping successful, message: %1 UPnP/NAT-PMP : Réussite du mapping de port, message : %1 - + Fast resume data was rejected for torrent %1, checking again... Le relancement rapide a échoué pour le torrent %1, revérification... - + Url seed lookup failed for url: %1, message: %2 Le contact de la source HTTP a échoué à l'url : %1, message : %2 - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... Téléchargement de '%1', veuillez patienter... @@ -3863,12 +3914,12 @@ Changements: Téléchargement depuis des urls - + No URL entered Aucune URL entrée - + Please type at least one URL. Veuillez entrer au moins une URL. @@ -3876,7 +3927,7 @@ Changements: downloading - + Search Recherche @@ -3905,17 +3956,17 @@ Changements: Filtre IP - + Start Démarrer - + Pause Pause - + Delete Supprimer @@ -3924,100 +3975,105 @@ Changements: Vider - + Preview file Prévisualiser fichier - + Set upload limit Définir limite d'upload - + Set download limit Définir limite téléchargement - + Delete Permanently Supprimer depuis le disque - + Torrent Properties Propriétés du Torrent - + Open destination folder Ouvrir le répertoire de destination - + Name Nom - + Size Taille - + Progress Progression - + DLSpeed Vitesse DL - + UpSpeed Vitesse UP - + Seeds/Leechs Seeds/Leechs - + Ratio Ratio - + ETA Restant - + Buy it Acheter - + Priority Priorité - + Increase priority Augmenter la priorité - + Decrease priority Diminuer la priorité - + Force recheck Forcer revérification + + + Copy magnet link + + engineSelect @@ -4270,31 +4326,31 @@ Cependant, les greffons en question ont été désactivés. misc - + B bytes o - + KiB kibibytes (1024 bytes) Ko - + MiB mebibytes (1024 kibibytes) Mo - + GiB gibibytes (1024 mibibytes) Go - + TiB tebibytes (1024 gibibytes) To @@ -4329,31 +4385,31 @@ Cependant, les greffons en question ont été désactivés. j - + Unknown Unknown (size) Inconnue - + < 1m < 1 minute < 1min - + %1m e.g: 10minutes %1min - + %1h%2m e.g: 3hours 5minutes %1h%2min - + %1d%2h%3m e.g: 2days 10hours 2minutes %1j%2h%3min @@ -4674,7 +4730,7 @@ Cependant, les greffons en question ont été désactivés. Mo - + Unknown Inconnu @@ -4692,7 +4748,7 @@ Cependant, les greffons en question ont été désactivés. Fichiers contenus dans le torrent actuel : - + Size Taille @@ -4726,8 +4782,8 @@ Cependant, les greffons en question ont été désactivés. Trackers : - - + + None - Unreachable? Aucun - indisponible ? @@ -4736,7 +4792,7 @@ Cependant, les greffons en question ont été désactivés. Erreurs : - + Progress Progression @@ -4852,7 +4908,7 @@ Cependant, les greffons en question ont été désactivés. Nouvelle url de tracker : - + Priorities: Priorités : @@ -4861,44 +4917,44 @@ Cependant, les greffons en question ont été désactivés. Ignoré : Le fichier n'est pas téléchargé du tout - + Normal: normal priority. Download order is dependent on availability Normale : priorité normale. L'ordre de téléchargement dépend de la disponibilité - + High: higher than normal priority. Pieces are preferred over pieces with the same availability, but not over pieces with lower availability Haute : Priorité supérieure à la normale. Les morceaux sont préférés aux autres possédant la même disponibilité, mais pas par rapport à ceux qui ont une disponibilité plus faible - + Maximum: maximum priority, availability is disregarded, the piece is preferred over any other piece with lower priority Maximale : Priorité maximale. La disponibilité n'est pas prise en compte, le morceau est préféré à tous ceux qui ont une priorité inférieure - + File name Nom - - + + Priority Priorité - - + + qBittorrent qBittorrent - + Trackers list can't be empty. La liste des trackers ne peut pas être vide. - + Ignored: file is not downloaded at all Ignoré : le fichier n'est pas téléchargé du tout @@ -4932,12 +4988,12 @@ Cependant, les greffons en question ont été désactivés. La source - + New url seed: Nouvelle source HTTP : - + This url seed is already in the list. Cette source HTTP est déjà dans la liste. @@ -4951,7 +5007,7 @@ Cependant, les greffons en question ont été désactivés. Aucun - + New url seed New HTTP source Nouvelle source HTTP @@ -4962,12 +5018,12 @@ Cependant, les greffons en question ont été désactivés. Les sources HTTP suivantes sont disponibles pour ce torrent : - + Priorities error Erreur de priorité - + Error, you can't filter all the files in a torrent. Erreur, vous ne pouvez pas filtrer tous les fichiers du torrent. @@ -4992,18 +5048,18 @@ Cependant, les greffons en question ont été désactivés. ... - - + + Choose save path Choix du répertoire de destination - + Save path creation error Erreur lors de la création du répertoire de destination - + Could not create the save path Impossible de créer le répertoire de destination @@ -5150,6 +5206,11 @@ Cependant, les greffons en question ont été désactivés. Seeds / Leechers Sources complètes / partielles + + + Copy magnet link + + Leechers Sources partielles @@ -5254,8 +5315,8 @@ Cependant, les greffons en question ont été désactivés. Oui - - + + Unable to decode torrent file: Impossible de décoder le fichier torrent : @@ -5264,8 +5325,8 @@ Cependant, les greffons en question ont été désactivés. Ce fichier est corrompu ou il ne s'agit pas d'un torrent. - - + + Choose save path Choix du répertoire de destination @@ -5274,53 +5335,70 @@ Cependant, les greffons en question ont été désactivés. Non - + + Unknown + + + + + (%1 left after torrent download) + e.g. (100MiB left after torrent download) + + + + + (%1 more are required to download) + e.g. (100MiB more are required to download) + + + + Empty save path Chemin de destination vide - + Please enter a save path Veuillez entrer un répertoire de destination - + Save path creation error Erreur lors de la création du répertoire de destination - + Could not create the save path Impossible de créer le répertoire de destination - + Invalid file selection Sélection de fichiers invalide - + You must select at least one file in the torrent Veuillez sélectionner au moins un fichier dans le torrent - + File name Nom - + Size Taille - + Progress Progression - - + + Priority Priorité diff --git a/src/lang/qbittorrent_hu.qm b/src/lang/qbittorrent_hu.qm index 20559f0107f8058f74cecbaa146e0bbacdfd5387..2148bcf75374bf9953dfd0bcac2b271a4cd03157 100644 GIT binary patch delta 4420 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 delta 4729 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 UTz$_zN?koC>tMappa megfigyelése - Transfer lists double-click qBittorrent will watch a directory and automatically download torrents present in it - Dupla klikk esetén + Dupla klikk esetén @@ -777,6 +776,12 @@ Copyright © 2006 by Christophe Dumez<br> Bittorrent Bittorrent + + + Transfer lists double-click action + Action executed when doucle-clicking on an item in transfer (download/upload) list + + Connections limit @@ -998,54 +1003,54 @@ Copyright © 2006 by Christophe Dumez<br> DownloadingTorrents - + Name i.e: file name Név - + Size i.e: file size Méret - + Progress i.e: % downloaded Folyamat - + DL Speed i.e: Download speed Letöltés - + UP Speed i.e: Upload speed Feltöltés - + Seeds/Leechs i.e: full/partial sources Feltöltő/Letöltő - + Ratio Arány - + ETA i.e: Estimated Time of Arrival / Time left Idő - + qBittorrent %1 started. e.g: qBittorrent v0.x started. qBittorrent %1 elindítva. @@ -1101,7 +1106,7 @@ Copyright © 2006 by Christophe Dumez<br> Letöltés alatt: '%1', kis türelmet... - + Hide or Show Column Oszlop mutatása vagy rejtése @@ -1114,7 +1119,7 @@ Copyright © 2006 by Christophe Dumez<br> UPnP/NAT-PMP: Port felderítése sikeres, hibaüzenet: %1 - + Priority Elsőbbség @@ -1248,7 +1253,7 @@ Copyright © 2006 by Christophe Dumez<br> Teljes feltöltés - + Hide or Show Column Oszlop mutatása vagy rejtése @@ -1268,7 +1273,7 @@ Copyright © 2006 by Christophe Dumez<br> GUI - + Open Torrent Files Torrent fájl megnyitása @@ -1277,25 +1282,25 @@ Copyright © 2006 by Christophe Dumez<br> Ez a fájl sérült, vagy nem is torrent. - - - - - + + + + + &Yes &Igen - - - - - + + + + + &No &Nem - + Are you sure you want to delete the selected item(s) in download list? Biztos vagy benne, hogy törlöd a felsorlolt elemeket a letöltési listáról? @@ -1308,15 +1313,15 @@ Copyright © 2006 by Christophe Dumez<br> Letöltés... - + Torrent Files Torrentek - - - - + + + + Are you sure? -- qBittorrent Egészen biztos? -- qBittorrent @@ -1343,7 +1348,7 @@ Please close the other one first. Kérlek előbb azt zárd be. - + Download finished Letöltés elkészült @@ -1352,15 +1357,15 @@ Kérlek előbb azt zárd be. Egészen biztos vagy benne, hogy törlöd a felsorlolt elemeket a letöltési listáról ÉS a merevlemezről? - - + + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - - + + Connection status: Kapcsolat állapota: @@ -1413,21 +1418,21 @@ Kérlek előbb azt zárd be. qBittorrent %1 elindítva. - - + + qBittorrent qBittorrent - - + + DL speed: %1 KiB/s e.g: Download speed: 10 KiB/s Letöltés: %1 KiB/s - - + + UP speed: %1 KiB/s e.g: Upload speed: 10 KiB/s Feltöltés: %1 KiB/s @@ -1443,7 +1448,7 @@ Kérlek előbb azt zárd be. Elakadt - + Are you sure you want to quit? Egészen biztos, hogy kilépsz? @@ -1501,14 +1506,14 @@ Kérlek előbb azt zárd be. '%1' elindítva. - - + + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 letöltve. - + I/O Error i.e: Input/Output Error I/O Hiba @@ -1519,12 +1524,12 @@ Kérlek előbb azt zárd be. Hiba történ a(z) %1 írása/olvasása közben. Valószínűleg tele a lemez, így a letöltés megszakítva - + Connection Status: A kapcsolat állapota: - + Online Online @@ -1543,23 +1548,23 @@ Kérlek előbb azt zárd be. Letöltés alatt: '%1', kis türelmet... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Hiba történt (megtelt a merevlemez?), '%1' megállítva. - + Search Keresés - + RSS RSS - + An I/O error occured for torrent %1. Reason: %2 e.g: An error occured for torrent xxx.avi. @@ -1576,13 +1581,13 @@ Kérlek előbb azt zárd be. DHT funkció [ON], port: %1 - - + + DHT support [OFF] DHT funkció [OFF] - + PeX support [ON] PeX [ON] @@ -1591,20 +1596,20 @@ Kérlek előbb azt zárd be. PeX [OFF] - + The download list is not empty. Are you sure you want to quit qBittorrent? Letöltés folyamatban. Mégis leállítod a qBittorrentet? - - + + Downloads Letöltések - + Finished Feltöltések @@ -1613,12 +1618,12 @@ Mégis leállítod a qBittorrentet? Egészen biztos vagy benne, hogy törlöd a felsorolt elemeket a feltöltési listáról ÉS a merevlemezről? - + Are you sure you want to delete the selected item(s) in finished list? Biztos vagy benne, hogy törlöd a felsorolt elemeket a feltöltési listáról? - + UPnP support [ON] UPnP támogatás [ON] @@ -1627,17 +1632,17 @@ Mégis leállítod a qBittorrentet? Csak óvatosan a megosztással. Nehogy megsértsd a szerzői jogokat!. - + Encryption support [ON] Titkosítás [ON] - + Encryption support [FORCED] Titkosítás [KÉNYSZERÍTVE] - + Encryption support [OFF] Titkosítás [OFF] @@ -1651,13 +1656,13 @@ Mégis leállítod a qBittorrentet? Arány - + Alt+1 shortcut to switch to first tab Alt+1 - + Alt+2 shortcut to switch to second tab Alt+2 @@ -1668,18 +1673,18 @@ Mégis leállítod a qBittorrentet? Alt+3, Ctrl+F - + Alt+4 shortcut to switch to fourth tab Alt+4 - + Url download error Url letöltés hiba - + Couldn't download file at url: %1, reason: %2. Nem sikerült letölteni url címről: %1, mert: %2. @@ -1688,12 +1693,12 @@ Mégis leállítod a qBittorrentet? Hibás ellenőrző adat ennél a torrentnél: %1, újraellenőrzés... - + Are you sure you want to delete the selected item(s) from download list and from hard drive? Egészen biztos vagy benne, hogy törlöd a felsorlolt elemeket a letöltési listáról ÉS a merevlemezről? - + Are you sure you want to delete the selected item(s) from finished list and from hard drive? Egészen biztos vagy benne, hogy törlöd a felsorlolt elemeket a feltöltési listáról ÉS a merevlemezről? @@ -1707,50 +1712,50 @@ Mégis leállítod a qBittorrentet? Url forrás meghatározása sikertelen: %1, hibaüzenet: %2 - + Alt+3 shortcut to switch to third tab Alt+3 - + Ctrl+F shortcut to switch to search tab Ctrl+F - + qBittorrent is bound to port: TCP/%1 e.g: qBittorrent is bound to port: 6881 qBittorrent ezen a porton figyel: TCP/%1 - + UPnP support [OFF] UPnP támogatás [OFF] - + NAT-PMP support [ON] NAT-PMP támogatás [ON] - + NAT-PMP support [OFF] NAT-PMP támogatás [OFF] - + DHT support [ON], port: UDP/%1 DHT támogatás [ON], port: UDP/%1 - + Local Peer Discovery [ON] Local Peer Discovery [ON] - + Local Peer Discovery support [OFF] Local Peer Discovery támogatás [OFF] @@ -1760,48 +1765,48 @@ Mégis leállítod a qBittorrentet? '%1' eltávolítva, mivel elérte a kítűzött megosztási arányt. - + qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s) %1 is qBittorrent version qBittorrent %1 (Le: %2KiB/s, Fel: %3KiB/s) - - + + DL: %1 KiB/s Le: %1 KiB/s - - + + UP: %1 KiB/s Fel: %1 KiB/s - - + + Ratio: %1 Arány: %1 - - + + DHT: %1 nodes DHT: %1 csomó - - + + No direct connections. This may indicate network configuration problems. Nincsenek kapcsolatok. Ez lehet hálózat beállítási hiba miatt is. - + Uploads Feltöltések - + Options were saved successfully. Beállítások sikeresen elmentve. @@ -2024,67 +2029,85 @@ Mégis leállítod a qBittorrentet? RSS - + Search Keresés - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Torrents:</span> <span style=" font-style:italic;">(double-click to download)</span></p></body></html> + + + + Delete Törlés - + Rename Átnevezés - + Refresh Frissítés - + + Download torrent + + + + + Open news URL + + + + Delete selected streams Kijelölt csatornák törlése - + Refresh RSS streams RSS csatornák ellenőrzése - + Add a new RSS stream RSS hírcsatorna hozzáadása - <b>News:</b> <i>(double-click to open the link in your web browser)</i> - <b>Hírek:</b> <i>(dupla kattintás a böngészőben való megtekintéshez)</i> + <b>Hírek:</b> <i>(dupla kattintás a böngészőben való megtekintéshez)</i> - + Add RSS stream RSS csatorna hozzádása - + Refresh all streams Összes csatorna ellenőrzése - + RSS streams: Hírcsatornák: - + 2 2 - + Mark all as read Mind megjelölése olvasottnak @@ -2092,27 +2115,27 @@ Mégis leállítod a qBittorrentet? RSSImp - + Please type a rss stream url Kérlek add meg a csatorna url címét - + Stream URL: Csatorna címe: - + Please choose a new name for this stream Kérlek válassz új nevet a csatornának - + New stream name: Az új név: - + Are you sure? -- qBittorrent Egészen biztos? -- qBittorrent @@ -2121,12 +2144,12 @@ Mégis leállítod a qBittorrentet? Egészen biztos, hogy törlöd ezt a hírcsatornát a listáról? - + &Yes &Igen - + &No &Nem @@ -2139,51 +2162,51 @@ Mégis leállítod a qBittorrentet? Nincs leírás - + Are you sure you want to delete this stream from the list? Egészen biztos, hogy törlöd ezt a hírcsatornát a listáról? - - - - + + + + Description: Leírás: - - - - + + + + url: url: - - - - + + + + Last refresh: Utolsó frissítés: - + qBittorrent qBittorrent - + This rss feed is already in the list. Ez a hírcsatorna már felvéve. - + Date: Dátum: - + Author: Szerző: @@ -2191,7 +2214,7 @@ Mégis leállítod a qBittorrentet? RssItem - + No description available Nem található leírás @@ -2199,13 +2222,13 @@ Mégis leállítod a qBittorrentet? RssStream - + %1 ago 10min ago %1 előtt - + Never Soha @@ -2440,67 +2463,87 @@ Changelog: addTorrentDialog - + Torrent addition dialog Torrent hozzáadása - + Save path: Mentés helye: - + ... ... - + + Torrent size: + + + + + + Unknown + Ismeretlen + + + + Free disk space: + + + + Torrent content: Torrent tartalma: - + + Download in sequential order (slower but good for previewing) + + + Download in correct order (slower but good for previewing) - Letöltés sorrendben. Előnézethez kiváló, de lassabb a letöltés + Letöltés sorrendben. Előnézethez kiváló, de lassabb a letöltés - + Add to download list in paused state Letöltés nélkül add a listához - + Add Mehet - + Cancel Mégse - + Ignored Mellőzve - + Normal Átlagos - + High Magas - + Maximum Maximális - + Collapse all Elrejtés @@ -2509,7 +2552,7 @@ Changelog: Kibontás - + Expand all Kibontás @@ -2569,18 +2612,18 @@ Changelog: bittorrent - + %1 reached the maximum ratio you set. %1 elérte a megengedett arányt. - + '%1' was removed permanently. 'xxx.avi' was removed permanently. '%1' véglegesen törölve. - + '%1' was removed. 'xxx.avi' was removed. '%1' eltávolítva. @@ -2596,77 +2639,85 @@ Changelog: '%1' elindítva. - - + + '%1' is not a valid magnet URI. + + + + + + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. '%1' már letöltés alatt. - - + + + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) '%1' visszaállítva. (folytatás) - - + + + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. '%1' felvéve a letöltési listára. - - + + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' Megfejthetetlen torrent: '%1' - + This file is either corrupted or this isn't a torrent. Ez a fájl sérült, vagy nem is torrent. - + <font color='red'>%1</font> <i>was blocked due to your IP filter</i> x.y.z.w was blocked <font color='red'>%1</font> <i>letiltva IP szűrés miatt</i> - + <font color='red'>%1</font> <i>was banned due to corrupt pieces</i> x.y.z.w was banned <font color='red'>%1</font> <i>kitiltva hibás adatküldés miatt</i> - + Couldn't listen on any of the given ports. A megadott porok zártak. - + UPnP/NAT-PMP: Port mapping failure, message: %1 UPnP/NAT-PMP: Port felderítése sikertelen, hibaüzenet: %1 - + UPnP/NAT-PMP: Port mapping successful, message: %1 UPnP/NAT-PMP: Port felderítése sikeres, hibaüzenet: %1 - + Fast resume data was rejected for torrent %1, checking again... Hibás ellenőrző adat ennél a torrentnél: %1, újraellenőrzés... - + Url seed lookup failed for url: %1, message: %2 Url forrás meghatározása sikertelen: %1, hibaüzenet: %2 - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... Letöltés alatt: '%1', kis türelmet... @@ -2935,12 +2986,12 @@ Changelog: Letöltés url címről - + No URL entered Nem lett cím megadva - + Please type at least one URL. Kérlek adj meg legalább egy url címet. @@ -2948,7 +2999,7 @@ Changelog: downloading - + Search Keresés @@ -2977,17 +3028,17 @@ Changelog: IP szűrő - + Start Indítás - + Pause Szünet - + Delete Törlés @@ -2996,100 +3047,105 @@ Changelog: Törlés - + Preview file Minta fájl - + Set upload limit Feltöltési korlát megadása - + Set download limit Letöltési korlát megadása - + Delete Permanently Végleges törlés - + Torrent Properties Torrent tulajdonságai - + Open destination folder Célmappa megnyitása - + Name Név - + Size Méret - + Progress Folyamat - + DLSpeed Letöltési sebesség - + UpSpeed Feltöltési sebesség - + Seeds/Leechs Feltöltők/Letöltők - + Ratio Arány - + ETA Hátramaradt idő - + Buy it Megveszem - + Priority Elsőbbség - + Increase priority Elsőbbség fokozása - + Decrease priority Elsőbbség csökkentése - + Force recheck Kényszerített ellenőrzés + + + Copy magnet link + + engineSelect @@ -3323,31 +3379,31 @@ Viszont azok a modulok kikapcsolhatóak. misc - + B bytes B - + KiB kibibytes (1024 bytes) KiB - + MiB mebibytes (1024 kibibytes) MiB - + GiB gibibytes (1024 mibibytes) GiB - + TiB tebibytes (1024 gibibytes) TiB @@ -3357,31 +3413,31 @@ Viszont azok a modulok kikapcsolhatóak. Ismeretlen - + Unknown Unknown (size) Ismeretlen - + < 1m < 1 minute < 1perc - + %1m e.g: 10minutes %1perc - + %1h%2m e.g: 3hours 5minutes %1óra%2perc - + %1d%2h%3m e.g: 2days 10hours 2minutes %1nap%2óra%3perc @@ -3566,7 +3622,7 @@ Viszont azok a modulok kikapcsolhatóak. Ok - + Unknown Ismeretlen @@ -3576,7 +3632,7 @@ Viszont azok a modulok kikapcsolhatóak. Az aktuális torrent tartalma: - + Size Méret @@ -3590,8 +3646,8 @@ Viszont azok a modulok kikapcsolhatóak. Trackerek: - - + + None - Unreachable? Nincs - Vagy csak elérhetetlen? @@ -3600,7 +3656,7 @@ Viszont azok a modulok kikapcsolhatóak. Hiba: - + Progress Folyamat @@ -3696,49 +3752,49 @@ Viszont azok a modulok kikapcsolhatóak. Új tracker címe: - + Priorities: Prioritások: - + Normal: normal priority. Download order is dependent on availability Normál: Az alap prioritás. A letöltés sorrendje az elérhetőségen múlik - + High: higher than normal priority. Pieces are preferred over pieces with the same availability, but not over pieces with lower availability Magas: Magasabb a normálnál. Azonos elérhetőségnél elsőbbséget élvez, de alacsonyabbnál nem - + Maximum: maximum priority, availability is disregarded, the piece is preferred over any other piece with lower priority Maximális: legmagasabb prioritás. Nem veszi figyelembe az elérhetőséget, elsőbbséget biztosít minden más darabbal szemben - + File name Fájl név - - + + Priority Prioritás - - + + qBittorrent qBittorrent - + Trackers list can't be empty. Nem hagyhatod üresen a trackerek listáját. - + Ignored: file is not downloaded at all Mellőzve: a fájl nem lesz letöltve @@ -3768,12 +3824,12 @@ Viszont azok a modulok kikapcsolhatóak. Url seed - + New url seed: Új url seed: - + This url seed is already in the list. Már letöltés alatt ez az url forrás. @@ -3787,7 +3843,7 @@ Viszont azok a modulok kikapcsolhatóak. Nincs - + New url seed New HTTP source Új url forrás @@ -3798,12 +3854,12 @@ Viszont azok a modulok kikapcsolhatóak. Ehhez a torrenthez az alábbi url seedek elérhetőek: - + Priorities error Priorities error - + Error, you can't filter all the files in a torrent. Error, you can't filter all the files in a torrent. @@ -3828,18 +3884,18 @@ Viszont azok a modulok kikapcsolhatóak. ... - - + + Choose save path Mentés helye - + Save path creation error Járhatatlan ösvény - + Could not create the save path Nem sikerült létrehozni a letöltési könyvtárat. (Írásvédett?) @@ -3986,6 +4042,11 @@ Viszont azok a modulok kikapcsolhatóak. Seeds / Leechers Feltöltők / Letöltők + + + Copy magnet link + + Leechers Letöltők @@ -4086,8 +4147,8 @@ Viszont azok a modulok kikapcsolhatóak. torrentAdditionDialog - - + + Unable to decode torrent file: Hasznavehetetlen torrent fájl: @@ -4096,59 +4157,76 @@ Viszont azok a modulok kikapcsolhatóak. Ez a fájl sérült, vagy nem is torrent. - - + + Unknown + Ismeretlen + + + + (%1 left after torrent download) + e.g. (100MiB left after torrent download) + + + + + (%1 more are required to download) + e.g. (100MiB more are required to download) + + + + + Choose save path Mentés helye - + Empty save path Mentés helye hiányos - + Please enter a save path Kérlek add meg a mentés helyét - + Save path creation error Járhatatlan ösvény - + Could not create the save path Nem sikerült létrehozni a letöltési könyvtárat. (Írásvédett?) - + Invalid file selection Választás hiánya - + You must select at least one file in the torrent Legalább egy fájlt ki kell választanod - + File name Fájlnév - + Size Méret - + Progress Folyamat - - + + Priority Elsőbbség diff --git a/src/lang/qbittorrent_it.qm b/src/lang/qbittorrent_it.qm index 48d9677710f0e5c024a7589fd87f1ea87d6fcbae..eab3066582ddbf12e05612dd23dfd69d325f89d5 100644 GIT binary patch delta 4334 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 delta 4699 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 zyControllo cartella - Transfer lists double-click qBittorrent will watch a directory and automatically download torrents present in it - Doppio clic nella lista trasferimenti + Doppio clic nella lista trasferimenti @@ -833,6 +832,12 @@ Copyright © 2006 by Christophe Dumez<br> Bittorrent Bittorrent + + + Transfer lists double-click action + Action executed when doucle-clicking on an item in transfer (download/upload) list + + Connections limit @@ -1054,54 +1059,54 @@ Copyright © 2006 by Christophe Dumez<br> DownloadingTorrents - + Name i.e: file name Nome - + Size i.e: file size Dimensione - + Progress i.e: % downloaded Avanzamento - + DL Speed i.e: Download speed Velocità DL - + UP Speed i.e: Upload speed Velocità UP - + Seeds/Leechs i.e: full/partial sources Seeds/Leechs - + Ratio Rapporto - + ETA i.e: Estimated Time of Arrival / Time left ETA - + qBittorrent %1 started. e.g: qBittorrent v0.x started. qBittorrent %1 avviato. @@ -1157,7 +1162,7 @@ Copyright © 2006 by Christophe Dumez<br> Download di '%1' in corso... - + Hide or Show Column Mostra o nascondi colonna @@ -1170,7 +1175,7 @@ Copyright © 2006 by Christophe Dumez<br> UPnP/NAT-PMP: mappatura porte riuscita, messaggio: %1 - + Priority Priorità @@ -1289,7 +1294,7 @@ Copyright © 2006 by Christophe Dumez<br> Upload totale - + Hide or Show Column Mostra o nascondi la colonna @@ -1309,7 +1314,7 @@ Copyright © 2006 by Christophe Dumez<br> GUI - + Open Torrent Files Apri file torrent @@ -1322,30 +1327,30 @@ Copyright © 2006 by Christophe Dumez<br> Sei sicuro di voler cancellare tutti i file nella lista di download? - - - - - + + + + + &Yes &Sì - - - - - + + + + + &No &No - + Are you sure you want to delete the selected item(s) in download list? Sei sicuro di voler cancellare gli elementi selezionati dalla lista dei download? - + Finished In Upload @@ -1386,7 +1391,7 @@ Copyright © 2006 by Christophe Dumez<br> Impossibile creare la directory: - + Torrent Files File torrent @@ -1431,10 +1436,10 @@ Copyright © 2006 by Christophe Dumez<br> qBittorrent - - - - + + + + Are you sure? -- qBittorrent Sei sicuro? -- qBittorrent @@ -1628,7 +1633,7 @@ Example: Downloading www.example.com/test.torrent Downloading - + Download finished Download completato @@ -1654,15 +1659,15 @@ Example: Downloading www.example.com/test.torrent Errore I/O - - + + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - - + + Connection status: Stato della connessione: @@ -1725,21 +1730,21 @@ Example: Downloading www.example.com/test.torrent qBittorrent %1 avviato. - - + + qBittorrent qBittorrent - - + + DL speed: %1 KiB/s e.g: Download speed: 10 KiB/s Velocità DL: %1 KiB/s - - + + UP speed: %1 KiB/s e.g: Upload speed: 10 KiB/s Velocità UP: %1 KiB/s @@ -1760,7 +1765,7 @@ Example: Downloading www.example.com/test.torrent In Stallo - + Are you sure you want to quit? Sei sicuro di voler uscire? @@ -1823,14 +1828,14 @@ Example: Downloading www.example.com/test.torrent '%1' ripreso. - - + + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 è stato scaricato. - + I/O Error i.e: Input/Output Error Errore I/O @@ -1841,12 +1846,12 @@ Example: Downloading www.example.com/test.torrent Errore di scrittura o di lettura con %1. Probabilmente il disco è pieno, il download è stato fermato - + Connection Status: Stato della connessione: - + Online Online @@ -1882,23 +1887,23 @@ Example: Downloading www.example.com/test.torrent Download di '%1' in corso... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Si è verificato un errore (disco pieno?), '%1' fermato. - + Search Ricerca - + RSS RSS - + An I/O error occured for torrent %1. Reason: %2 e.g: An error occured for torrent xxx.avi. @@ -1916,13 +1921,13 @@ Motivo: %2 Supporto DHT [ON], porta: %1 - - + + DHT support [OFF] Supporto DHT [OFF] - + PeX support [ON] Supporto PeX [ON] @@ -1931,25 +1936,25 @@ Motivo: %2 Supporto PeX [OFF] - + The download list is not empty. Are you sure you want to quit qBittorrent? La lista dei download non è vuota. Sei sicuro di voler uscire da qBittorrent? - - + + Downloads In Download - + Are you sure you want to delete the selected item(s) in finished list? Sei sicuro di voler cancellare gli elementi selezionati dalla lista dei download completati? - + UPnP support [ON] Supporto UPnP [ON] @@ -1958,17 +1963,17 @@ Sei sicuro di voler uscire da qBittorrent? Attenzione, condividere materiale protetto da copyright senza il permesso è illegale. - + Encryption support [ON] Supporto cifratura [ON] - + Encryption support [FORCED] Supporto cifratura [FORZATO] - + Encryption support [OFF] Supporto cifratura [OFF] @@ -1982,13 +1987,13 @@ Sei sicuro di voler uscire da qBittorrent? Rapporto - + Alt+1 shortcut to switch to first tab Alt+1 - + Alt+2 shortcut to switch to second tab Alt+2 @@ -1999,18 +2004,18 @@ Sei sicuro di voler uscire da qBittorrent? Alt+3, Ctrl+F - + Alt+4 shortcut to switch to fourth tab Alt+4 - + Url download error Errore download da indirizzo web - + Couldn't download file at url: %1, reason: %2. Impossibile scaricare il file all'indirizzo: %1, motivo: %2. @@ -2019,12 +2024,12 @@ Sei sicuro di voler uscire da qBittorrent? Il recupero veloce del torrent %1 è stato rifiutato, altro tentativo in corso... - + Are you sure you want to delete the selected item(s) from download list and from hard drive? Sei sicuro di voler rimuovere gli elementi selezionati dalla lista dei download e dal disco? - + Are you sure you want to delete the selected item(s) from finished list and from hard drive? Sei sicuro di voler rimuovere gli oggetti selezionati dalla lista dei download completati e dal disco? @@ -2038,50 +2043,50 @@ Sei sicuro di voler uscire da qBittorrent? Fallito seed per l'url: %1, messaggio: %2 - + Alt+3 shortcut to switch to third tab Alt+3 - + Ctrl+F shortcut to switch to search tab Ctrl+F - + qBittorrent is bound to port: TCP/%1 e.g: qBittorrent is bound to port: 6881 qBittorrent è in ascolto sulla porta: TCP/%1 - + UPnP support [OFF] Supporto UPnP [OFF] - + NAT-PMP support [ON] Supporto NAT-PMP [ON] - + NAT-PMP support [OFF] Supporto NAT-PMP [OFF] - + DHT support [ON], port: UDP/%1 Supporto DHT [ON], porta: UDP/%1 - + Local Peer Discovery [ON] Supporto scoperta peer locali [ON] - + Local Peer Discovery support [OFF] Supporto scoperta peer locali [OFF] @@ -2091,48 +2096,48 @@ Sei sicuro di voler uscire da qBittorrent? '%1' è stato rimosso perché il suo rapporto di condivisione ha raggiunto il massimo stabilito. - + qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s) %1 is qBittorrent version qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s) - - + + DL: %1 KiB/s DL: %1 KiB/s - - + + UP: %1 KiB/s UP: %1 KiB/s - - + + Ratio: %1 Rapporto: %1 - - + + DHT: %1 nodes DHT: %1 nodi - - + + No direct connections. This may indicate network configuration problems. Nessuna connessione diretta. Questo potrebbe indicare problemi di configurazione della rete. - + Uploads Upload - + Options were saved successfully. Le opzioni sono state salvate. @@ -2415,71 +2420,89 @@ Sei sicuro di voler uscire da qBittorrent? RSS - + Search Ricerca - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Torrents:</span> <span style=" font-style:italic;">(double-click to download)</span></p></body></html> + + + + Delete Cancella - + Rename Rinomina - + Refresh Aggiorna + + + Download torrent + + + + + Open news URL + + Create Crea - + Delete selected streams Cancella i flussi selezionati - + Refresh RSS streams Aggiorna i flussi RSS - + Add a new RSS stream Aggiungi un nuovo flusso RSS - <b>News:</b> <i>(double-click to open the link in your web browser)</i> - <b>News:</b> <i>(doppio-clic per aprire il link nel tuo browser web)</i> + <b>News:</b> <i>(doppio-clic per aprire il link nel tuo browser web)</i> - + Add RSS stream Aggiungi flusso RSS - + Refresh all streams Aggiorna tutti i flussi - + RSS streams: Flussi RSS: - + 2 2 - + Mark all as read Segna tutti come letti @@ -2487,27 +2510,27 @@ Sei sicuro di voler uscire da qBittorrent? RSSImp - + Please type a rss stream url Per favore digitare l'indirizzo di un flusso rss - + Stream URL: Indirizzo del flusso: - + Please choose a new name for this stream Per favore scegliere un nuovo nome per questo flusso - + New stream name: Nuovo nome del flusso: - + Are you sure? -- qBittorrent Sei sicuro? -- qBittorrent @@ -2516,61 +2539,61 @@ Sei sicuro di voler uscire da qBittorrent? Sei sicuro di voler cancellare questo flusso dalla lista ? - + &Yes &Sì - + &No &No - + Are you sure you want to delete this stream from the list? Sei sicuro di voler cancellare questo flusso dalla lista? - - - - + + + + Description: Descrizione: - - - - + + + + url: indirizzo: - - - - + + + + Last refresh: Ultimo aggiornamento: - + qBittorrent qBittorrent - + This rss feed is already in the list. Questo feed rss è già nella lista. - + Date: Data: - + Author: Autore: @@ -2578,7 +2601,7 @@ Sei sicuro di voler uscire da qBittorrent? RssItem - + No description available Descrizione non disponibile @@ -2586,13 +2609,13 @@ Sei sicuro di voler uscire da qBittorrent? RssStream - + %1 ago 10min ago %1 fa - + Never Mai @@ -2878,25 +2901,46 @@ Changelog: addTorrentDialog - + Torrent addition dialog Dialogo per l'aggiunta di un torrent - + Save path: Directory di salvataggio: - + ... ... - + + Torrent size: + + + + + + Unknown + + + + + Free disk space: + + + + Torrent content: Contenuti del torrent: + + + Download in sequential order (slower but good for previewing) + + File name Nome del file @@ -2910,22 +2954,21 @@ Changelog: Selezionato - Download in correct order (slower but good for previewing) - Scarica nell'ordine giusto (più lento ma migliore per le anteprime) + Scarica nell'ordine giusto (più lento ma migliore per le anteprime) - + Add to download list in paused state Aggiungi fra i download mettendolo in pausa - + Add Aggiungi - + Cancel Cancella @@ -2938,27 +2981,27 @@ Changelog: Seleziona - + Ignored Ignora - + Normal Normale - + High Alta - + Maximum Massima - + Collapse all Riduci tutto @@ -2967,7 +3010,7 @@ Changelog: Espandi tutto - + Expand all Espandi tutto @@ -3027,18 +3070,18 @@ Changelog: bittorrent - + %1 reached the maximum ratio you set. %1 ha raggiunto il rapporto massimo impostato. - + '%1' was removed permanently. 'xxx.avi' was removed permanently. '%1' è stato cancellato permanentemente. - + '%1' was removed. 'xxx.avi' was removed. '%1' è stato rimosso. @@ -3054,77 +3097,85 @@ Changelog: '%1' ripreso. - - + + '%1' is not a valid magnet URI. + + + + + + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. '%1' è già nella lista dei download. - - + + + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) '%1' ripreso. (recupero veloce) - - + + + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. '%1' è stato aggiunto alla lista dei download. - - + + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' Impossibile decifrare il file torrent: '%1' - + This file is either corrupted or this isn't a torrent. Questo file è corrotto o non è un torrent. - + <font color='red'>%1</font> <i>was blocked due to your IP filter</i> x.y.z.w was blocked <font color='red'>%1</font> <i>è stato bloccato a causa dei tuoi filtri IP</i> - + <font color='red'>%1</font> <i>was banned due to corrupt pieces</i> x.y.z.w was banned <font color='red'>%1</font> <i>è stato bannato a causa di parti corrotte</i> - + Couldn't listen on any of the given ports. Impossibile mettersi in ascolto sulle porte scelte. - + UPnP/NAT-PMP: Port mapping failure, message: %1 UPnP/NAT-PMP: mappatura porte fallita, messaggio: %1 - + UPnP/NAT-PMP: Port mapping successful, message: %1 UPnP/NAT-PMP: mappatura porte riuscita, messaggio: %1 - + Fast resume data was rejected for torrent %1, checking again... Il recupero veloce del torrent %1 è stato rifiutato, altro tentativo in corso... - + Url seed lookup failed for url: %1, message: %2 Fallito seed web per l'indirizzo: %1, messaggio: %2 - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... Download di '%1' in corso... @@ -3429,12 +3480,12 @@ Changelog: Download da indirizzo web - + No URL entered Nessun indirizzo.web inserito - + Please type at least one URL. Per favore inserire almeno un indirizzo web. @@ -3442,7 +3493,7 @@ Changelog: downloading - + Search Ricerca @@ -3471,17 +3522,17 @@ Changelog: Filtro IP - + Start Avvia - + Pause Ferma - + Delete Cancella @@ -3490,100 +3541,105 @@ Changelog: Pulisci - + Preview file Anteprima file - + Set upload limit Imposta limite di upload - + Set download limit Imposta limite di download - + Delete Permanently Cancella permanentemente - + Torrent Properties Proprietà del torrent - + Open destination folder Apri cartella di destinazione - + Name Nome - + Size Dimensione - + Progress Avanzamento - + DLSpeed Velocità DL - + UpSpeed Velocità UP - + Seeds/Leechs Seeds/Leechs - + Ratio Rapporto - + ETA ETA - + Buy it Acquista - + Priority Priorità - + Increase priority Aumenta priorità - + Decrease priority Diminuisci priorità - + Force recheck Forza ricontrollo + + + Copy magnet link + + engineSelect @@ -3836,31 +3892,31 @@ Comunque, quei plugin sono stati disabilitati. misc - + B bytes B - + KiB kibibytes (1024 bytes) KiB - + MiB mebibytes (1024 kibibytes) MiB - + GiB gibibytes (1024 mibibytes) GiB - + TiB tebibytes (1024 gibibytes) TiB @@ -3890,31 +3946,31 @@ Comunque, quei plugin sono stati disabilitati. h - + Unknown Unknown (size) Sconosciuta - + < 1m < 1 minute < 1m - + %1m e.g: 10minutes %1m - + %1h%2m e.g: 3hours 5minutes %1h%2m - + %1d%2h%3m e.g: 2days 10hours 2minutes %1d%2h%3m @@ -4191,7 +4247,7 @@ Comunque, quei plugin sono stati disabilitati. Allocando - + Unknown Sconosciuto @@ -4209,7 +4265,7 @@ Comunque, quei plugin sono stati disabilitati. File contenuti nel torrent selezionato: - + Size Dimensione @@ -4239,8 +4295,8 @@ Comunque, quei plugin sono stati disabilitati. Tracker: - - + + None - Unreachable? Nessuno - Irraggiungibile? @@ -4249,7 +4305,7 @@ Comunque, quei plugin sono stati disabilitati. Errori: - + Progress Avanzamento @@ -4365,49 +4421,49 @@ Comunque, quei plugin sono stati disabilitati. URL del nuovo tracker: - + Priorities: Priorità: - + Normal: normal priority. Download order is dependent on availability Normale: priorità normale. L'ordine dei download dipende dalla disponibilità - + High: higher than normal priority. Pieces are preferred over pieces with the same availability, but not over pieces with lower availability Alta: più alta della priorità normale. Le parti sono preferite alle altre con la stessa disponibilità, ma non a quelle con minore disponibilità - + Maximum: maximum priority, availability is disregarded, the piece is preferred over any other piece with lower priority Massima: priorità massima, la disponibilità è ignorata, le parti sono preferite su tutte le altre con minore priorità - + File name Nome del file - - + + Priority Priorità - - + + qBittorrent qBittorrent - + Trackers list can't be empty. La lista dei tracker non può essere vuota. - + Ignored: file is not downloaded at all Ignora: il file non viene scaricato @@ -4447,18 +4503,18 @@ Comunque, quei plugin sono stati disabilitati. Nessuno - + New url seed New HTTP source Nuovo seed web - + New url seed: Nuovo seed web: - + This url seed is already in the list. Questo seed web è già nella lista. @@ -4467,12 +4523,12 @@ Comunque, quei plugin sono stati disabilitati. Gli url seed codificati non possono essere cancellati. - + Priorities error Errore di priorità - + Error, you can't filter all the files in a torrent. Errore, non è possibile filtrare tutti i file in un torrent. @@ -4497,18 +4553,18 @@ Comunque, quei plugin sono stati disabilitati. ... - - + + Choose save path Scegliere una directory di salvataggio - + Save path creation error Errore nella creazione della directory di salvataggio - + Could not create the save path Impossibile creare la directory di salvataggio @@ -4655,6 +4711,11 @@ Comunque, quei plugin sono stati disabilitati. Seeds / Leechers Seeds / Leechs + + + Copy magnet link + + Leechers Leechers @@ -4759,8 +4820,8 @@ Comunque, quei plugin sono stati disabilitati. Vero - - + + Unable to decode torrent file: Impossibile decodificare il file torrent: @@ -4769,8 +4830,8 @@ Comunque, quei plugin sono stati disabilitati. Questo file è corrotto o non è un torrent. - - + + Choose save path Scegliere una directory di salvataggio @@ -4779,53 +4840,70 @@ Comunque, quei plugin sono stati disabilitati. Falso - + + Unknown + + + + + (%1 left after torrent download) + e.g. (100MiB left after torrent download) + + + + + (%1 more are required to download) + e.g. (100MiB more are required to download) + + + + Empty save path Directory di salvataggio vuota - + Please enter a save path Inserire per favore una directory di salvataggio - + Save path creation error Errore nella creazione della directory di salvataggio - + Could not create the save path Impossibile creare la directory di salvataggio - + Invalid file selection Selezione file non valida - + You must select at least one file in the torrent Devi selezionare almeno un file nel torrent - + File name Nome del file - + Size Dimensione - + Progress Avanzamento - - + + Priority Priorità diff --git a/src/lang/qbittorrent_ja.qm b/src/lang/qbittorrent_ja.qm index 12a688f0b4af0e7b5c449449eb1c66f0e6e64ab2..ddfe9f181f94dd63adf2e45056374ca4b6fc13da 100644 GIT binary patch delta 3580 zcmXAsd3;RQ8^)iRxp(f|xifPK4Gkt*Lc|hF7Lv#!dqfb~WEoos2_Yg85t*zABg#b3 zk`^sN8m*L6Vy(4WYH!hxU2FF#C2jg6zjt!}`re$m=bZPv@AE$A=F&msPff~CdYR|^ z4)ET<;=Oih0g-lK-q+tpML;+DiLR)*M?LvCU;__mEvdR1D($zzWQHEaTXFn z%Yo%zB4I@v&|^5G<1@zOTa4uskXTy<47Tnj!73oPBOTqwEI3E~-7tW=gv@dG{{ zrz}moO(mJCTvoe^L~2s5Zy{wndH69r4 zr~LOMWlCvLad8g-?v1KHw;Jf>pz^Rz;`C+*Rl<4)%H&;DayA8M@1sh7)CkP0R;Ajy zYD~DQIG>~ds4U7LVB`$dYVJ8D%*Ytn$e4Fu^@$y2dSOphb^E*))n*gLxiniQbJfLuWq@mo>T$p_!1|QyU|#$y$DgH_y7lE;o$~3WD9$tBH83%f8`(&k zcFf@7!UqAVncT!+8(X-<@%N|;HgMSm^j^+l&MZ(BW`uLa+sJNa{LL+ktpoCAa+W<) z0fj5KA^ac^*o!gPnQ^RrJIzSQVFUBhxlN56mH9iy(s$g}TGFM{4dO1KkAd4-=L<}` z$<@{#1x93YyDQ()_zkXZz*oRvFGde%#w3}stQU7=D(O^u%bi%{1WcOFotpIn&?(2p z-ayhRHc<8zcmC8168t9a!U8&Bhlkv?A_`!{dTS50(d-@0e-P{iWcl-Mo2vkijl6sH zdure$J|J={FmMMSBvL{;zv4%Kdjc4`i7_ROkF!#rxkoVu{>hmC2S0sqFyLb0Gn*)3 zX;1mAwL2*;M}E=Vv((@ldGi_*$=bk|7EOm4_RV~GSL*!fjr?+31;*%ji_P^szvDk! zzJUz9kf{8 zT5FErVV+}DufF0*J~>>yckE%hIL4??9!e*LTvT7YP4Y}|QD4420Elr`-!7tQ%6saE zLnx66I~j`$)PH4@Pw0PBx2Ba)dmR^)!$?`7)~`tp)crJ@4N<%M;=kIC6)30u}aq2G52+gfIkF{KN8j1+*kUie07C8J4W zOmP(&QcUD{B|U^gMbtyaPQu0BG_iBFaR0x3w4h0NkVpY3%7jM?gQ#(z3h!#qQKs%| zdUUM>($h5qUe6`txT6{6lu5=_s0lRN-fz_ewJV`XGrED^i>T2=>*+dInKaQyNQ$0= zG}G*D%+ln4XeJLXa-;{^IK*31u)vXe%UM%xq-)ttsoAriO8#Mj=KH;^Xnm#{3=ns z?nk=7&oU+#iE6WLpdg41tjrZV4jVyt<#W*?<8NyETVg*8Eoi}2@h&xG>}fG&wwCs>6HOJD zsRUq5t{2Vi1M?TKfr2c?mGxrIW76zQe=)DTo=(*P@6n zk$$VS{2wiVyisd-od>LR(Ap1uK(|(t*7@`xs`Wc8mj2Og7l{q{+RyN{#?#`($6U~DFY$WofE!P$sDOg z+eB{lPHKCSL(S4bClA<2Hu1I2$OqAP%RHU$FEqbG){T;BAN2uUVDvMx$@9A4apq~{ zM|X9hYe}<))r^y>b>p?9O)pPfbR3<~uYxh?AI75J87;4Li5YZ4Q?)LuoaV>I=(6Ko z$Y&FExf8FD0t$6`-ADnUj=Hk4^FTm~Zuy*2pl_(I%FlsHzDQSPv^|8()2+9wqff-6 zx;<0;N&JDj#yRV#WU;_1LHW=A05y`-#h6R zRi;hvRCyd2u%0n)x8CFGd&)TUz7Ji2;j#KK*H-$D%GW2=_olCq>w1&dS(3h0pK6P1 zz!m-UZCR!MF%+D7YmgNt403Pa*tH~Ol%V_5X(FrZj%U1czS9JJf8BZ7uw z-WVDJNHdeIhKAiHI-0kk*_)0!S!X?GFq%Cs8``G7qkoaAWqB1_@Hc(2j+8^cEvFmDMNYVxP8#N9b3z-?yG*XXAW}tJ|y%TDCu*PocX8mq+&Hn+0fB^*n delta 3742 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 diff --git a/src/lang/qbittorrent_ja.ts b/src/lang/qbittorrent_ja.ts index 2852772573..5f99af9f91 100644 --- a/src/lang/qbittorrent_ja.ts +++ b/src/lang/qbittorrent_ja.ts @@ -697,12 +697,6 @@ Copyright © 2006 by Christophe Dumez<br> qBittorrent will watch a directory and automatically download torrents present in it フォルダの監視 - - - Transfer lists double-click - qBittorrent will watch a directory and automatically download torrents present in it - - Download list: @@ -809,6 +803,12 @@ Copyright © 2006 by Christophe Dumez<br> Bittorrent Bittorrent + + + Transfer lists double-click action + Action executed when doucle-clicking on an item in transfer (download/upload) list + + Connections limit @@ -1018,54 +1018,54 @@ Copyright © 2006 by Christophe Dumez<br> DownloadingTorrents - + Name i.e: file name 名前 - + Size i.e: file size サイズ - + Progress i.e: % downloaded 進行状況 - + DL Speed i.e: Download speed DL 速度 - + UP Speed i.e: Upload speed UP 速度 - + Seeds/Leechs i.e: full/partial sources 速度/リーチ - + Ratio - + ETA i.e: Estimated Time of Arrival / Time left ETA - + qBittorrent %1 started. e.g: qBittorrent v0.x started. qBittorrent %1 が開始されました。 @@ -1121,12 +1121,12 @@ Copyright © 2006 by Christophe Dumez<br> '%1' をダウンロードしています、お待ちください... - + Hide or Show Column 列の非表示または表示 - + Priority 優先度 @@ -1260,7 +1260,7 @@ Copyright © 2006 by Christophe Dumez<br> - + Hide or Show Column 列の非表示または表示 @@ -1272,7 +1272,7 @@ Copyright © 2006 by Christophe Dumez<br> GUI - + Open Torrent Files Torrent ファイルを開く @@ -1281,25 +1281,25 @@ Copyright © 2006 by Christophe Dumez<br> このファイルは壊れているかこれは torrent ではないかのどちらかです。 - - - - - + + + + + &Yes はい(&Y) - - - - - + + + + + &No いいえ(&N) - + Are you sure you want to delete the selected item(s) in download list? ダウンロードの一覧にある選択されたアイテムを削除してもよろしいですか? @@ -1312,15 +1312,15 @@ Copyright © 2006 by Christophe Dumez<br> ダウンロードしています.... - + Torrent Files Torrent ファイル - - - - + + + + Are you sure? -- qBittorrent よろしいですか? -- qBittorrent @@ -1347,7 +1347,7 @@ Please close the other one first. まず他の 1 つを閉じてください。 - + Download finished ダウンロードが完了しました @@ -1356,15 +1356,15 @@ Please close the other one first. ダウンロードの一覧およびハード ドライブにある選択されたアイテムを削除してもよろしいですか? - - + + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - - + + Connection status: 接続状態: @@ -1417,21 +1417,21 @@ Please close the other one first. qBittorrent %1 が開始されました。 - - + + qBittorrent qBittorrent - - + + DL speed: %1 KiB/s e.g: Download speed: 10 KiB/s DL 速度: %1 KiB/s - - + + UP speed: %1 KiB/s e.g: Upload speed: 10 KiB/s UP 速度: %1 KiB/s @@ -1447,7 +1447,7 @@ Please close the other one first. 失速しました - + Are you sure you want to quit? 終了してもよろしいですか? @@ -1505,14 +1505,14 @@ Please close the other one first. '%1' が再開されました。 - - + + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 はダウンロードが完了しました。 - + I/O Error i.e: Input/Output Error I/O エラー @@ -1523,12 +1523,12 @@ Please close the other one first. %1 の読み込みまたは書き込みを試行にエラーが発生しました。ディスクはおそらくいっぱいです、ダウンロードは一時停止されました - + Connection Status: 接続状態: - + Online オンライン @@ -1547,18 +1547,18 @@ Please close the other one first. '%1' をダウンロードしています、お待ちください... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. エラーが発生しました (ディスクいっぱい?)、'%1' が停止されました。 - + Search 検索 - + RSS RSS @@ -1580,8 +1580,8 @@ Please close the other one first. DHT サポート [オン]、ポート: %1 - - + + DHT support [OFF] DHT サポート [オフ] @@ -1590,12 +1590,12 @@ Please close the other one first. UPnP サポート [オン]、ポート: %1 - + UPnP support [OFF] UPnP サポート [オフ] - + PeX support [ON] PeX サポート [オン] @@ -1604,20 +1604,20 @@ Please close the other one first. PeX サポート [オフ] - + The download list is not empty. Are you sure you want to quit qBittorrent? ダウンロードの一覧は空ではありません。 qBittorrent を終了してもよろしいですか? - - + + Downloads ダウンロード - + Finished 完了しました @@ -1626,12 +1626,12 @@ qBittorrent を終了してもよろしいですか? 完了済みの一覧およびハード ドライブにある選択されたアイテムを削除してもよろしいですか? - + Are you sure you want to delete the selected item(s) in finished list? ダウンロードの一覧にある選択されたアイテムを削除してもよろしいですか? - + UPnP support [ON] UPnP サポート [オン] @@ -1640,17 +1640,17 @@ qBittorrent を終了してもよろしいですか? ご用心ください、許可なしの著作権のある材料の共有は法律に違反しています。 - + Encryption support [ON] 暗号化サポート [オン] - + Encryption support [FORCED] 暗号化サポート [強制済み] - + Encryption support [OFF] 暗号化サポート [オフ] @@ -1664,13 +1664,13 @@ qBittorrent を終了してもよろしいですか? - + Alt+1 shortcut to switch to first tab Alt+1 - + Alt+2 shortcut to switch to second tab Alt+2 @@ -1681,18 +1681,18 @@ qBittorrent を終了してもよろしいですか? Alt+3、Ctrl+F - + Alt+4 shortcut to switch to fourth tab Alt+4 - + Url download error Url のダウンロード エラー - + Couldn't download file at url: %1, reason: %2. 次の url にあるファイルをダウンロードできませんでした: %1、理由: %2。 @@ -1701,12 +1701,12 @@ qBittorrent を終了してもよろしいですか? 高速再開データは torrent %1 を拒絶しました、再びチェックしています... - + Are you sure you want to delete the selected item(s) from download list and from hard drive? ダウンロードの一覧とハード ドライブから選択されたアイテムを削除してもよろしいですか? - + Are you sure you want to delete the selected item(s) from finished list and from hard drive? 完了済みの一覧とハード ドライブから選択されたアイテムを削除してもよろしいですか? @@ -1720,13 +1720,13 @@ qBittorrent を終了してもよろしいですか? 次の url の url シードの参照に失敗しました: %1、メッセージ: %2 - + Alt+3 shortcut to switch to third tab Alt+3 - + Ctrl+F shortcut to switch to search tab Ctrl+F @@ -1737,73 +1737,73 @@ qBittorrent を終了してもよろしいですか? '%1' はその率が設定した最大値を達成したので削除されました。 - + NAT-PMP support [ON] NAT-PMP サポート [オン] - + NAT-PMP support [OFF] NAT-PMP サポート [オフ] - + DHT support [ON], port: UDP/%1 - + Local Peer Discovery [ON] ローカル ピア ディスカバリ [オン] - + Local Peer Discovery support [OFF] ローカル ピア ディスカバリ [オフ] - + qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s) %1 is qBittorrent version qBittorrent %1 (DL: %2KiB/s、UP: %3KiB/s) - - + + DL: %1 KiB/s - - + + UP: %1 KiB/s - - + + Ratio: %1 - - + + DHT: %1 nodes - - + + No direct connections. This may indicate network configuration problems. - + Uploads - + An I/O error occured for torrent %1. Reason: %2 e.g: An error occured for torrent xxx.avi. @@ -1811,13 +1811,13 @@ qBittorrent を終了してもよろしいですか? - + qBittorrent is bound to port: TCP/%1 e.g: qBittorrent is bound to port: 6881 - + Options were saved successfully. オプションの保存に成功しました。 @@ -2048,12 +2048,12 @@ qBittorrent を終了してもよろしいですか? RSS - + Search 検索 - + RSS streams: RSS ストリーム: @@ -2062,20 +2062,30 @@ qBittorrent を終了してもよろしいですか? ニュース: - + Delete 削除 - + Rename 名前の変更 - + Refresh 更新 + + + Download torrent + + + + + Open news URL + + Create 作成 @@ -2085,42 +2095,50 @@ qBittorrent を終了してもよろしいですか? RSS ストリーム : - + Delete selected streams 選択されたストリームを削除します - + Refresh RSS streams RSS ストリームの更新 - + Add a new RSS stream 新しい RSS ストリームを追加します - <b>News:</b> <i>(double-click to open the link in your web browser)</i> - <b>ニュース:</b> <i>(お使いの web ブラウザでリンクを開くにはダブルクリックします)</i> + <b>ニュース:</b> <i>(お使いの web ブラウザでリンクを開くにはダブルクリックします)</i> - + Add RSS stream RSS ストリームの追加 - + Refresh all streams すべてのストリームの更新 - + 2 2 - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Torrents:</span> <span style=" font-style:italic;">(double-click to download)</span></p></body></html> + + + + Mark all as read すべてを既読にする @@ -2128,22 +2146,22 @@ qBittorrent を終了してもよろしいですか? RSSImp - + Please type a rss stream url rss ストリームの url を入力してください - + Stream URL: ストリームの URL: - + Please choose a new name for this stream このストリームの新しい名前を選択してください - + New stream name: 新しいストリーム名: @@ -2152,7 +2170,7 @@ qBittorrent を終了してもよろしいですか? 利用可能な説明がありません - + Are you sure? -- qBittorrent よろしいですか? -- qBittorrent @@ -2161,12 +2179,12 @@ qBittorrent を終了してもよろしいですか? 一覧からこのストリームを削除してもよろしいですか ? - + &Yes はい(&Y) - + &No いいえ(&N) @@ -2175,51 +2193,51 @@ qBittorrent を終了してもよろしいですか? 更新なし - + Are you sure you want to delete this stream from the list? 一覧からこのストリームを削除してもよろしいですか ? - - - - + + + + Description: 説明: - - - - + + + + url: url: - - - - + + + + Last refresh: 最後の更新: - + qBittorrent qBittorrent - + This rss feed is already in the list. この rss フィードはすでに一覧にあります。 - + Date: 日付: - + Author: 作者: @@ -2227,7 +2245,7 @@ qBittorrent を終了してもよろしいですか? RssItem - + No description available 説明が利用できません @@ -2235,13 +2253,13 @@ qBittorrent を終了してもよろしいですか? RssStream - + %1 ago 10min ago %1 前 - + Never しない @@ -2519,25 +2537,46 @@ Changelog: addTorrentDialog - + Torrent addition dialog Torrent の追加ダイアログ - + Save path: 保存パス: - + ... ... - + + Torrent size: + + + + + + Unknown + 不明 + + + + Free disk space: + + + + Torrent content: Torrent の内容: + + + Download in sequential order (slower but good for previewing) + + File name ファイル名 @@ -2551,22 +2590,21 @@ Changelog: 選択済み - Download in correct order (slower but good for previewing) - 正しい順にダウンロードする (より遅いがプレビューにはふさわしい) + 正しい順にダウンロードする (より遅いがプレビューにはふさわしい) - + Add to download list in paused state 一時停止済み状態でダウンロードの一覧に追加する - + Add 追加 - + Cancel キャンセル @@ -2579,32 +2617,32 @@ Changelog: 選択 - + Ignored 無視済み - + Normal 通常 - + High - + Maximum 最大 - + Collapse all - + Expand all @@ -2664,18 +2702,18 @@ Changelog: bittorrent - + %1 reached the maximum ratio you set. - + '%1' was removed permanently. 'xxx.avi' was removed permanently. '%1' は永久に削除されました。 - + '%1' was removed. 'xxx.avi' was removed. '%1' は削除されました。 @@ -2691,77 +2729,85 @@ Changelog: '%1' が再開されました。 - - + + '%1' is not a valid magnet URI. + + + + + + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. '%1' はすでにダウンロードの一覧にあります。 - - + + + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) '%1' が再開されました。 (高速再開) - - + + + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. '%1' がダウンロードの一覧に追加されました。 - - + + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' Torrent ファイルをデコードすることができません: '%1' - + This file is either corrupted or this isn't a torrent. このファイルは壊れているかこれは torrent ではないかのどちらかです。 - + <font color='red'>%1</font> <i>was blocked due to your IP filter</i> x.y.z.w was blocked - + <font color='red'>%1</font> <i>was banned due to corrupt pieces</i> x.y.z.w was banned - + Couldn't listen on any of the given ports. 所定のポートで記入できませんでした。 - + UPnP/NAT-PMP: Port mapping failure, message: %1 - + UPnP/NAT-PMP: Port mapping successful, message: %1 - + Fast resume data was rejected for torrent %1, checking again... 高速再開データは torrent %1 を拒絶しました、再びチェックしています... - + Url seed lookup failed for url: %1, message: %2 次の url の url シードの参照に失敗しました: %1、メッセージ: %2 - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... '%1' をダウンロードしています、お待ちください... @@ -3082,12 +3128,12 @@ Changelog: Url からダウンロード - + No URL entered URL が入力されていません - + Please type at least one URL. 少なくとも 1 つの URL を入力してください。 @@ -3095,7 +3141,7 @@ Changelog: downloading - + Search 検索 @@ -3124,17 +3170,17 @@ Changelog: IP フィルタ - + Start 開始 - + Pause 一時停止 - + Delete 削除 @@ -3143,100 +3189,105 @@ Changelog: クリア - + Preview file ファイルのプレビュー - + Set upload limit アップロード制限の設定 - + Set download limit ダウンロード制限の設定 - + Delete Permanently 永久に削除 - + Torrent Properties Torrent のプロパティ - + Open destination folder 作成先のフォルダを開く - + Name 名前 - + Size サイズ - + Progress 進行状況 - + DLSpeed DL 速度 - + UpSpeed Up 速度 - + Seeds/Leechs 速度/リーチ - + Ratio - + ETA ETA - + Buy it 購入 - + Priority 優先度 - + Increase priority - + Decrease priority - + Force recheck + + + Copy magnet link + + engineSelect @@ -3484,31 +3535,31 @@ However, those plugins were disabled. misc - + B bytes B - + KiB kibibytes (1024 bytes) KiB - + MiB mebibytes (1024 kibibytes) MiB - + GiB gibibytes (1024 mibibytes) GiB - + TiB tebibytes (1024 gibibytes) TiB @@ -3518,31 +3569,31 @@ However, those plugins were disabled. 不明 - + Unknown Unknown (size) 不明 - + < 1m < 1 minute < 1 分 - + %1m e.g: 10minutes %1 分 - + %1h%2m e.g: 3hours 5minutes %1 時間 %2 分 - + %1d%2h%3m e.g: 2days 10hours 2minutes %1 日 %2 時間 %3 分 @@ -3731,7 +3782,7 @@ However, those plugins were disabled. OK - + Unknown 不明 @@ -3741,7 +3792,7 @@ However, those plugins were disabled. 現在の torrent に含まれているファイル: - + Size サイズ @@ -3771,8 +3822,8 @@ However, those plugins were disabled. トラッカ: - - + + None - Unreachable? なし - アンリーチ可能ですか? @@ -3781,7 +3832,7 @@ However, those plugins were disabled. エラー: - + Progress 進行状況 @@ -3877,7 +3928,7 @@ However, those plugins were disabled. 新しいトラッカの url: - + Priorities: 優先度: @@ -3886,44 +3937,44 @@ However, those plugins were disabled. 無視済み: ファイルはとにかくダウンロードされません - + Normal: normal priority. Download order is dependent on availability 通常: 通常の優先度です。ダウンロードの順序は利用性に依存します - + High: higher than normal priority. Pieces are preferred over pieces with the same availability, but not over pieces with lower availability 高: 通常より高い優先度です。部分は同じ利用性での部分を超えて優先されますが、より低い利用性での部分は超えません - + Maximum: maximum priority, availability is disregarded, the piece is preferred over any other piece with lower priority 最大: 最大の優先度です、利用性は無視され、部分はすべてのより低い優先度でのその他の部分を超えて優先されます - + File name ファイル名 - - + + Priority 優先度 - - + + qBittorrent qBittorrent - + Trackers list can't be empty. トラッカの一覧を空にできません。 - + Ignored: file is not downloaded at all 無視済み: ファイルは全くダウンロードされませんでした @@ -3953,12 +4004,12 @@ However, those plugins were disabled. Url シード - + New url seed: 新しい url シード: - + This url seed is already in the list. この url シードはすでに一覧にあります。 @@ -3972,7 +4023,7 @@ However, those plugins were disabled. なし - + New url seed New HTTP source 新しい url シード @@ -3983,12 +4034,12 @@ However, those plugins were disabled. 以下の url シードはこの torrent に利用可能です: - + Priorities error 優先度エラー - + Error, you can't filter all the files in a torrent. エラーです、torrent のすべてのファイルをフィルタできません。 @@ -4013,18 +4064,18 @@ However, those plugins were disabled. ... - - + + Choose save path 保存パスの選択 - + Save path creation error 保存パスの作成エラー - + Could not create the save path 保存パスを作成できませんでした @@ -4167,6 +4218,11 @@ However, those plugins were disabled. Seeds / Leechers + + + Copy magnet link + + Leechers リーチャ @@ -4263,8 +4319,8 @@ However, those plugins were disabled. True - - + + Unable to decode torrent file: Torrent ファイルをデコードすることができません: @@ -4273,8 +4329,8 @@ However, those plugins were disabled. このファイルは壊れているかこれは torrent ではないかのどちらかです。 - - + + Choose save path 保存パスの選択 @@ -4283,53 +4339,70 @@ However, those plugins were disabled. False - + + Unknown + 不明 + + + + (%1 left after torrent download) + e.g. (100MiB left after torrent download) + + + + + (%1 more are required to download) + e.g. (100MiB more are required to download) + + + + Empty save path 空の保存パス - + Please enter a save path 保存パスを入力してください - + Save path creation error 保存パスの作成エラー - + Could not create the save path 保存パスを作成できませんでした - + Invalid file selection 不正なファイル選択 - + You must select at least one file in the torrent Torrent では少なくとも 1 つのファイルを選択する必要があります - + File name ファイル名 - + Size サイズ - + Progress 進行状況 - - + + Priority 優先度 diff --git a/src/lang/qbittorrent_ko.qm b/src/lang/qbittorrent_ko.qm index 18c4a5c037db7475ad1b1f21518853a358393c47..c08295728e8d72c589cffb0b86d3c276645519d4 100644 GIT binary patch delta 4367 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 폴더 감시 (Folder watching) - Transfer lists double-click qBittorrent will watch a directory and automatically download torrents present in it - 현재 진행중인 파일 더블클릭 + 현재 진행중인 파일 더블클릭 @@ -900,6 +899,12 @@ list: Bittorrent 비트토렌트 + + + Transfer lists double-click action + Action executed when doucle-clicking on an item in transfer (download/upload) list + + Connections limit @@ -1121,54 +1126,54 @@ list: DownloadingTorrents - + Name i.e: file name 파일 이름 - + Size i.e: file size 크기 - + Progress i.e: % downloaded 진행상황 - + DL Speed i.e: Download speed 다운로드 속도 - + UP Speed i.e: Upload speed 업로드 속도 - + Seeds/Leechs i.e: full/partial sources 완전체 공유/부분 공유 - + Ratio 비율 - + ETA i.e: Estimated Time of Arrival / Time left 남은시간 - + qBittorrent %1 started. e.g: qBittorrent v0.x started. 큐비토런트 %1가 시작되었습니다. @@ -1224,7 +1229,7 @@ list: '%1'을 다운 중입니다, 잠시 기다려 주세요... - + Hide or Show Column 열(Column) 숨기기/보이기 @@ -1237,7 +1242,7 @@ list: UPnP/NAT-PMP: Port mapping 성공, 메세지: %1 - + Priority 우선순위 @@ -1366,7 +1371,7 @@ list: 총 업로드 - + Hide or Show Column Column 숨기기/보이기 @@ -1402,12 +1407,12 @@ list: 업로딩 속도: - + Open Torrent Files 토런트 파일 열기 - + Torrent Files 토런트 파일 @@ -1461,20 +1466,20 @@ list? 파일을 지우고 싶으세요? - - - - - + + + + + &Yes &예 - - - - - + + + + + &No &아니요 @@ -1529,7 +1534,7 @@ download list? 다시 시작됨. - + Finished 완료 @@ -1569,7 +1574,7 @@ download list? 다운로드 목록에 있는 모든 파일을 지우고 싶으세요? - + Are you sure you want to delete the selected item(s) in download list? 다운로딩 목록에서 선택하신 모든 아이템을 삭제하시겠습니까? @@ -1582,16 +1587,16 @@ download list? 개발자: 크리스토프 두메스 :: Copyright (c) 2006 - - + + qBittorrent 큐비토런트 - - - - + + + + Are you sure? -- qBittorrent 재확인해주십시요? -- 큐비토런트 @@ -1850,7 +1855,7 @@ Please close the other one first. 정말로 지금 선택하신 파일들을 다운로드 목록과 하드 드라이브에서 삭제하시겠습니까? - + Download finished 다운로드 완료 @@ -1864,15 +1869,15 @@ Please close the other one first. 검색 엔진 - - + + qBittorrent %1 e.g: qBittorrent v0.x 큐비토런트 %1 - - + + Connection status: 연결 상태: @@ -1935,15 +1940,15 @@ Please close the other one first. 큐비토런트 %1가 시작되었습니다. - - + + DL speed: %1 KiB/s e.g: Download speed: 10 KiB/s 다운로딩 속도: %1 KiB/s - - + + UP speed: %1 KiB/s e.g: Upload speed: 10 KiB/s 업로딩 속도: %1 KiB/s @@ -1964,7 +1969,7 @@ Please close the other one first. 대기중 - + Are you sure you want to quit? 정말로 종료하시겠습니까? @@ -2027,14 +2032,14 @@ Please close the other one first. '%1' 가 다운로드를 다시 시작되었습니다. - - + + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1가 다운로드를 완료하였습니다. - + I/O Error i.e: Input/Output Error I/O 에러 @@ -2050,12 +2055,12 @@ Please close the other one first. 오류 발생 (디스크가 꽉찼습니까?), '%1'가 정지 되었습니다. - + Connection Status: 연결 상태: - + Online 온라인 @@ -2091,23 +2096,23 @@ Please close the other one first. '%1'을 다운 중입니다, 잠시 기다려 주세요... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. 오류 발생 (디스크가 꽉찼습니까?), '%1'가 정지 되었습니다. - + Search 검색 - + RSS - + An I/O error occured for torrent %1. Reason: %2 e.g: An error occured for torrent xxx.avi. @@ -2125,13 +2130,13 @@ Please close the other one first. DHT 지원 [사용함], 포트: %1 - - + + DHT support [OFF] DHT 지원 [사용안함] - + PeX support [ON] Pes 지원 [사용함] @@ -2140,25 +2145,25 @@ Please close the other one first. Pes 지원 [사용안함] - + The download list is not empty. Are you sure you want to quit qBittorrent? 다운로드 리스트가 파일이 있습니다. 큐비토런트를 종료하시겠습니까? - - + + Downloads 다운로드 - + Are you sure you want to delete the selected item(s) in finished list? 현재 완료목록에서 선택된 파일을 지우시겠습니까? - + UPnP support [ON] UPnp 지원 [사용함] @@ -2167,17 +2172,17 @@ Are you sure you want to quit qBittorrent? 허락없이 저작권이 있는 자료를 공유하는 것은 법에 저촉됩니다. - + Encryption support [ON] 암호화(Encryption) 지원 [사용함] - + Encryption support [FORCED] 암호화(Encryption) 지원 [강압적으로 사용] - + Encryption support [OFF] 암호화(Encryption) 지원 [사용안함] @@ -2191,30 +2196,30 @@ Are you sure you want to quit qBittorrent? 비율 - + Alt+1 shortcut to switch to first tab - + Alt+2 shortcut to switch to second tab - + Alt+4 shortcut to switch to fourth tab - + Url download error Url 다운로드 오류 - + Couldn't download file at url: %1, reason: %2. 다음 주소(Url)에서 파일을 다운로드할수 없습니다: %1, 이유:%2. @@ -2223,12 +2228,12 @@ Are you sure you want to quit qBittorrent? 토렌트 %1는 빨리 이어받기가 사용될수 없습니다, 확인중입니다... - + Are you sure you want to delete the selected item(s) from download list and from hard drive? 다운로드 목록에서 선택된 파일을 하드 드라이버에서도 지우시겠습니까? - + Are you sure you want to delete the selected item(s) from finished list and from hard drive? 완료 목록에서 선택된 파일을 하드 드라이버에서도 지우시겠습니까? @@ -2242,50 +2247,50 @@ Are you sure you want to quit qBittorrent? 다음 Url 완전체(Url seed)의 검색이 실패하였습니다: %1, 관련내용: %2 - + Alt+3 shortcut to switch to third tab - + Ctrl+F shortcut to switch to search tab - + qBittorrent is bound to port: TCP/%1 e.g: qBittorrent is bound to port: 6881 큐비토런트는 다음 포트을 사용하고 있습니다: TCP/%1 - + UPnP support [OFF] UPnP 지원 [사용안함] - + NAT-PMP support [ON] NAT-PMP 지원 [사용함] - + NAT-PMP support [OFF] NAT-PMP 지원 [사용안함] - + DHT support [ON], port: UDP/%1 DHT 지원 [사용함], 포트:'UDP/%1 - + Local Peer Discovery [ON] Local Peer Discovery (로컬 네트웍크내 공유자 찾기) [사용함] - + Local Peer Discovery support [OFF] Local Peer Discovery (로컬 네트웍크내 공유자 찾기) [사용안함] @@ -2295,48 +2300,48 @@ Are you sure you want to quit qBittorrent? 사용자께거 지정하신 할당율에 도달하였기에 '%1'는(은) 목록에서 삭제되었습니다. - + qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s) %1 is qBittorrent version 큐비토런트 버젼: %1 (DL: %2KiB/s, UP: %3KiB/s) - - + + DL: %1 KiB/s 다운로딩 속도: %1 KiB/s - - + + UP: %1 KiB/s 업로딩 속도: %1 KiB/s - - + + Ratio: %1 비율: %1 - - + + DHT: %1 nodes DHT: %1 노드(nodes) - - + + No direct connections. This may indicate network configuration problems. 직접적으로 연결된 네트워크를 찾지 못했습니다. 네트워크 설정에 의해 발생된 오류일 가능성이 있습니다. - + Uploads 업로드 - + Options were saved successfully. 설정이 성공적으로 저장되었습니다. @@ -2678,71 +2683,89 @@ Are you sure you want to quit qBittorrent? RSS - + Search 검색 - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Torrents:</span> <span style=" font-style:italic;">(double-click to download)</span></p></body></html> + + + + Delete 삭제 - + Rename 이름 바꾸기 - + Refresh 새로 고침 + + + Download torrent + + + + + Open news URL + + Create 생성하기 - + Delete selected streams 선택된 스트림 삭제하기 - + Refresh RSS streams RSS 스트림 새로고침 - + Add a new RSS stream 새 RSS 스트림 추가 - <b>News:</b> <i>(double-click to open the link in your web browser)</i> - <b>뉴스:</b> <i>(링크를 웹브라우저에서 열려면 더블 클릭하세요)</i> + <b>뉴스:</b> <i>(링크를 웹브라우저에서 열려면 더블 클릭하세요)</i> - + Add RSS stream RSS 스트림 추가 - + Refresh all streams 모든 스트림 새로고침 - + RSS streams: RSS 스트림: - + 2 2 - + Mark all as read 읽은 아이템 표식하기 @@ -2750,86 +2773,86 @@ Are you sure you want to quit qBittorrent? RSSImp - + Please type a rss stream url RSS 스트림 주소(url)를 입력하세요 - + Stream URL: 스트림 URL: - + Please choose a new name for this stream 이 스트림의 이름을 입력하세요 - + New stream name: 새 스트림 이름: - + Are you sure? -- qBittorrent 재확인 해주십시요? -- 큐비토런트 - + &Yes &예 - + &No &아니요 - + Are you sure you want to delete this stream from the list? 이 스트림을 리스트에서 지우시겠습니까? - - - - + + + + Description: 설명: - - - - + + + + url: - - - - + + + + Last refresh: 최근 새로고침: - + qBittorrent 큐비토런트 - + This rss feed is already in the list. 이 RSS 피드는 이미 리스트에 포함되어 있습니다. - + Date: 날짜: - + Author: 작성자: @@ -2837,7 +2860,7 @@ Are you sure you want to quit qBittorrent? RssItem - + No description available 관련 자료가 없습니다 @@ -2845,13 +2868,13 @@ Are you sure you want to quit qBittorrent? RssStream - + %1 ago 10min ago %1분전 - + Never 전혀 사용안함 @@ -3153,25 +3176,46 @@ Changelog: addTorrentDialog - + Torrent addition dialog 토렌트 추가 다이얼로그 - + Save path: 저장 경로: - + ... ... - + + Torrent size: + + + + + + Unknown + + + + + Free disk space: + + + + Torrent content: 토렌트 내용: + + + Download in sequential order (slower but good for previewing) + + File name 파일 이름 @@ -3185,22 +3229,21 @@ Changelog: 선택됨 - Download in correct order (slower but good for previewing) - 순차적으로 다운받기(느리지만 미리보기에 편합니다) + 순차적으로 다운받기(느리지만 미리보기에 편합니다) - + Add to download list in paused state 정지 상태로 다운로드 목록에 추가하기 - + Add 추가 - + Cancel 취소 @@ -3217,32 +3260,32 @@ Changelog: 선택 - + Ignored 무시 - + Normal 보통 - + High 높음 - + Maximum 최고 - + Collapse all 모두 접어서 간단하게 보여주기 - + Expand all 다 펼쳐서 보여주기 @@ -3302,18 +3345,18 @@ Changelog: bittorrent - + %1 reached the maximum ratio you set. '%1' 는 설정된 최대 공유 비율에 도달했습니다. - + '%1' was removed permanently. 'xxx.avi' was removed permanently. '%1' 는 영구삭제 되었습니다. - + '%1' was removed. 'xxx.avi' was removed. '%1' 가 삭제되었습니다. @@ -3329,77 +3372,85 @@ Changelog: '%1' 가 다운로드를 다시 시작되었습니다. - - + + '%1' is not a valid magnet URI. + + + + + + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. '%1'는/은 이미 다운로드 목록에 포함되어 있습니다. - - + + + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) '%1'가 다시 시작되었습니다. (빠른 재개) - - + + + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. '%1'가 다운로드 목록에 추가되었습니다. - - + + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' 다음 파일은 해독 할수가 없습니다: '%1' - + This file is either corrupted or this isn't a torrent. 이 파일은 오류가 있거나 토런트 파일이 아닙니다. - + <font color='red'>%1</font> <i>was blocked due to your IP filter</i> x.y.z.w was blocked <font color='red'>%1</font> <i>은/는 IP 필터에 의해 접속이 금지되었습니다</i> - + <font color='red'>%1</font> <i>was banned due to corrupt pieces</i> x.y.z.w was banned <font color='red'>%1</font> <i>은/는 유효하지 않은 파일 공유에 의해 접속이 금지되었습니다</i> - + Couldn't listen on any of the given ports. 설정하신 포트에 연결할수 없습니다. - + UPnP/NAT-PMP: Port mapping failure, message: %1 UPnP/NAT-PMP: Port mapping 실패, 메세지: %1 - + UPnP/NAT-PMP: Port mapping successful, message: %1 UPnP/NAT-PMP: Port mapping 성공, 메세지: %1 - + Fast resume data was rejected for torrent %1, checking again... 토렌트 %1는 빨리 이어받기가 사용될수 없습니다, 확인중입니다... - + Url seed lookup failed for url: %1, message: %2 다음 Url 완전체(Url seed)의 검색이 실패하였습니다: %1, 관련내용: %2 - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... '%1'을 다운 중입니다, 잠시 기다려 주세요... @@ -3716,12 +3767,12 @@ Changelog: URL로 부터 다운로드 받기 - + No URL entered 주소(URL)가 포함되지 않았습니다 - + Please type at least one URL. 적어도 하나의 주소(URL)를 적어주십시오. @@ -3729,7 +3780,7 @@ Changelog: downloading - + Search 검색 @@ -3754,17 +3805,17 @@ Changelog: IP 필터 - + Start 시작 - + Pause 정지 - + Delete 삭제 @@ -3773,100 +3824,105 @@ Changelog: 모두 지우기 - + Preview file 미리보기 - + Set upload limit 업로드 속도 제한하기 - + Set download limit 다운로드 속도 제한하기 - + Delete Permanently 영구 삭제 - + Torrent Properties 토렌트 구성요소 - + Open destination folder 저장 폴더 열기 - + Name 이름 - + Size 크기 - + Progress 진행 - + DLSpeed 다운로드 속도 - + UpSpeed 업로드 속도 - + Seeds/Leechs - + Ratio 비율 - + ETA 남은시간 - + Buy it 구입하기 - + Priority 우선순위 - + Increase priority 우선순위(priority)를 높이기 - + Decrease priority 우선순위(priority)를 낮추기 - + Force recheck 강제로 재확인하기 + + + Copy magnet link + + engineSelect @@ -4101,31 +4157,31 @@ However, those plugins were disabled. misc - + B bytes - + KiB kibibytes (1024 bytes) - + MiB mebibytes (1024 kibibytes) - + GiB gibibytes (1024 mibibytes) - + TiB tebibytes (1024 gibibytes) @@ -4160,31 +4216,31 @@ However, those plugins were disabled. - + Unknown Unknown (size) 알수 없음 - + < 1m < 1 minute < 1분 - + %1m e.g: 10minutes %1분 - + %1h%2m e.g: 3hours 5minutes %1시간%2분 - + %1d%2h%3m e.g: 2days 10hours 2minutes %1일%2시간%3분 @@ -4498,7 +4554,7 @@ However, those plugins were disabled. MB - + Unknown 알수 없음 @@ -4516,7 +4572,7 @@ However, those plugins were disabled. 현 토렌트에 있는 파일들: - + Size 크기 @@ -4554,8 +4610,8 @@ However, those plugins were disabled. 서버목록: - - + + None - Unreachable? 없음 - 접근할수 없습니까? @@ -4564,7 +4620,7 @@ However, those plugins were disabled. 에러: - + Progress 진행상황 @@ -4680,49 +4736,49 @@ However, those plugins were disabled. 새 트렉커 주소 (url): - + Priorities: 구성요소: - + Normal: normal priority. Download order is dependent on availability 보통: 보통 우선순위로 다운로드 순서는 자료의 유효성에 의 해 정해집니다 - + High: higher than normal priority. Pieces are preferred over pieces with the same availability, but not over pieces with lower availability 높음: 보통보다 높은 우선순위로 동등한 유효성을 지닌 우선순위 보통의 자료들보다 우선적으로 다운로드 됩니다. - + Maximum: maximum priority, availability is disregarded, the piece is preferred over any other piece with lower priority 최고: 최고의 우선순위로 유효성에 상관없이 무조건 다른 우선순위 자료들보다 우선적으로 다운로드 됩니다. - + File name 파일 이름 - - + + Priority 우선순위 - - + + qBittorrent 큐비토런트 - + Trackers list can't be empty. 트렉커 리스트(Trackers List)를 비울수 없습니다. - + Ignored: file is not downloaded at all 무시: 무시된 파일은 전혀 다운로드 되지 않습니다 @@ -4752,12 +4808,12 @@ However, those plugins were disabled. Url 완전체(Url seeds) - + New url seed: 새 Url 완전체 (Url seed): - + This url seed is already in the list. 이 Url 완전체(Url seed)는 이미 리스트에 포함되어 있습니다. @@ -4771,7 +4827,7 @@ However, those plugins were disabled. 없음 - + New url seed New HTTP source 새 Url 완전체(seed) @@ -4782,12 +4838,12 @@ However, those plugins were disabled. 다음 Url 완전체(seed)가 이 토렌트에 사용될수 있습니다. - + Priorities error 우선순위 설정 에러 - + Error, you can't filter all the files in a torrent. 에러, 모든 파일을 필터할수는 없습니다. @@ -4812,18 +4868,18 @@ However, those plugins were disabled. ... - - + + Choose save path 저장 경로 선택 - + Save path creation error 저장 경로 설정이 잘못되었습니다 - + Could not create the save path 저장 경로를 생성할수가 없습니다 @@ -4970,6 +5026,11 @@ However, those plugins were disabled. Seeds / Leechers 완전체 공유자/부분파일 공유자 + + + Copy magnet link + + Leechers Leechers @@ -5074,8 +5135,8 @@ However, those plugins were disabled. 맞음 - - + + Unable to decode torrent file: 토런트 파일을 해독 할 수가 없습니다: @@ -5084,8 +5145,8 @@ However, those plugins were disabled. 이 파일은 오류가 있거나 토런트 파일이 아닙니다. - - + + Choose save path 저장 경로 선택 @@ -5094,53 +5155,70 @@ However, those plugins were disabled. 틀림 - + + Unknown + + + + + (%1 left after torrent download) + e.g. (100MiB left after torrent download) + + + + + (%1 more are required to download) + e.g. (100MiB more are required to download) + + + + Empty save path 저장 경로 지우기 - + Please enter a save path 저장 경로를 지정해주십시오 - + Save path creation error 저장 경로 설정이 잘못되었습니다 - + Could not create the save path 저장 경로를 생성할수가 없습니다 - + Invalid file selection 부적당한 파일 선택 - + You must select at least one file in the torrent 토렌트에서 적어도 하나 이상의 파일을 선택해야 합니다 - + File name 파일 이름 - + Size 크기 - + Progress 진행상황 - - + + Priority 우선순위 diff --git a/src/lang/qbittorrent_nb.qm b/src/lang/qbittorrent_nb.qm index cee81cf95a87d69e9939d57bdadd8545ace4403e..e39f961cd68fb44a0e2d1d8c7c54b900f33f521f 100644 GIT binary patch delta 1514 zcmXApeNa?Y7{;HyyLXp+ckiwOimbSbuq&*5ET1YU%d&haNGYNYC^dm&I;2jZ7$ZUf zg@h(70+BVLA|wbUp=qLlLXG1PBcW!QV#;W0HJUX#4fQVPuiw4roH^%tpZ7WE%3;~f zX4!ss|7`$50ncz^91yV?;G=;he*>y6z~w&RS4`ucHA@UDqt*aPM*!~vVAEt7D=Pv+KJ)>tIqf@-e8!|3;M-p%@jrq;-2;Ss!2GoWa5uv|Y$RsG{K!JALYPxe z+_+O(QSBijI5iL zg%{_e$ZV5rj;);j1zGCoTtNMuto4IJVD2^9DP0;6+#nkou>o%PWe-|c0oLc-biYiZ zfwK;pfn+_Gxy2n23nrNY%~`HcO^z=9lQA)Zd#`OTdGj;Z@DJ6j>tXa9=f-lWr~bv< z^ML`X>q~j$*4=<|xqRLIQ^0~m#{d@;8kDK1?s^T7%~CWjJxjV07=0=k%@Si^4&#Cu z4x@Zth(^&7&;rYe8HI*R3nl8`+9 zqsm6=Q!rzE3g02$14L^16W@FWOgqSESp|s$@lVJ^tJ2IncYAiW*biDy4PuDav~x7mpAohSte~;=}G^~2_{WDZYp(@|Ch}_u47&D-%{=R`sYf{z8pOfHrRdelcfGt|} zIp?6ua+@)v(NV036#Y)P6nWCL?*m7#!VtQoQSh%OIk69g;AdJI&J)59WdQU0g*g2t z+AUeg-ZKKk%oMgiNT8UGIV7HLhe7yVF-lRB2~Tp3bTd1Ii4p1`?;>iS?gSEVi+ zo1*seq7B@-81)&9-fG5hJEN_~At_Dzn3d|mwNL1^S*O0d{&gVX2lefXG4vL_?PoA12O^StjFX;9oe zr8wl`w;Mnx;1)(q1R~Z0d<+ox08qCB4vzs-5$y}rOAM=Gk^y@YFn<@2_Awx4GluK{ zmffUNxxmV49syQQvkS)||sUQ5sP9R(b^S3I%#SHVHFEI<|r@_Pnu!R3a z=h9%i-3Ywa0()&QscvI*xrFpms@rlBE9!ITeIZuf%7$E{m~S?|h1Ho;fX^t_lpX-M zhgerZXI<|yhWx>pd`%uv7>X?-GFlD;wi@g%*$xC`qT`ElVD1<$4i^BiNAUDCS?9S4 zlUJh2Y-h#1gfd!-iu7CFfaV89^TB*zL9e1qzZ?iIQw$6x0M3sU%Ur&O99=TPX!qv!wp5ZgKXOO^CC&OyMz=9;G=~y5Z{=R~ z^^vZxl@U8W0)%DCHy=}Wkrug+3k(git18;x1{9vEy41^nw~f&!kI_8I7`TEll9zpz z3qxM1TKzub{Kuca`Xw;?GsX}<#^jBH`*JdKuFM#}UsybLf=sjuNj<*-F*k&y zffs;Nu#i9hG-*2|>??UjUgQaV-CIf2sBpK0&M9XJk3xEpjlexK4@kVP<}9RkQJC6w zZ5oj9iQ4@U>51-E@BH)<>Bv{-Iu%e#TNth9)fG36l4*O@hn25@#dYe2n!jkOOzLx- zOv7@IF|=GRQbkC9Cmjmh=(X={xm#rjjVl-ZDyW=g$HXqJm{XpMwu6k?pCX&f5QZjlB)SR^F3f`kLF%)9N-r#+XSOi;P;NJ)=^c7 z?>p{(ovJj}$VGyIGkVF#1%r1$pVni2C*V<__1W|%1#ngCTSb2xXGg{WS9wG*6ek30 zx7GU4U@y>?icOU3MeVQ`S!IgR-f^OaiYe&ScRK#HyRvMw~sW*H@CHR9QdAF_#*xUq4fpVT<1WRXJuMdXE0= bphy>qBittorrent will watch a directory and automatically download torrents present in it - - - Transfer lists double-click - qBittorrent will watch a directory and automatically download torrents present in it - - Download list: @@ -753,6 +747,12 @@ Copyright © 2006 av Christophe Dumez<br> Bittorrent + + + Transfer lists double-click action + Action executed when doucle-clicking on an item in transfer (download/upload) list + + Connections limit @@ -941,54 +941,54 @@ Copyright © 2006 av Christophe Dumez<br> DownloadingTorrents - + Name i.e: file name Navn - + Size i.e: file size Størrelse - + Progress i.e: % downloaded - + DL Speed i.e: Download speed Nedlastingshastighet - + UP Speed i.e: Upload speed Opplastingshastighet - + Seeds/Leechs i.e: full/partial sources Delere/Nedlastere - + Ratio - + ETA i.e: Estimated Time of Arrival / Time left Gjenværende tid - + qBittorrent %1 started. e.g: qBittorrent v0.x started. qBittorrent %1 er startet. @@ -1027,12 +1027,12 @@ Copyright © 2006 av Christophe Dumez<br> Laster ned '%1'... - + Hide or Show Column - + Priority @@ -1161,7 +1161,7 @@ Copyright © 2006 av Christophe Dumez<br> - + Hide or Show Column @@ -1169,7 +1169,7 @@ Copyright © 2006 av Christophe Dumez<br> GUI - + Open Torrent Files Åpne torrentfiler @@ -1182,30 +1182,30 @@ Copyright © 2006 av Christophe Dumez<br> Ønsker du å slette alle filene in nedlastingslisten? - - - - - + + + + + &Yes &Ja - - - - - + + + + + &No &Nei - + Are you sure you want to delete the selected item(s) in download list? Ønsker du å slette valgt(e) element(er) i nedlastingslisten? - + Finished Ferdig @@ -1246,7 +1246,7 @@ Copyright © 2006 av Christophe Dumez<br> Klarte ikke å opprette mappen: - + Torrent Files Torrentfiler @@ -1291,10 +1291,10 @@ Copyright © 2006 av Christophe Dumez<br> qBittorrent - - - - + + + + Are you sure? -- qBittorrent Er du sikker? -- qBittorrent @@ -1490,7 +1490,7 @@ Vennligst avslutt denne først. Ønsker du å slette valgte element(er) i nedlastningslisten, og fra lagringsenheten? - + Download finished Nedlastingen er fullført @@ -1508,15 +1508,15 @@ Vennligst avslutt denne først. Lese/Skrive feil - - + + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - - + + Connection status: Tilkoblingsstatus: @@ -1579,21 +1579,21 @@ Vennligst avslutt denne først. qBittorrent %1 er startet. - - + + qBittorrent qBittorrent - - + + DL speed: %1 KiB/s e.g: Download speed: 10 KiB/s Nedlastingshastighet: %1 KiB/s - - + + UP speed: %1 KiB/s e.g: Upload speed: 10 KiB/s Opplastingshastighet: %1 KiB/s @@ -1614,7 +1614,7 @@ Vennligst avslutt denne først. Laster ikke ned - + Are you sure you want to quit? Ønsker du å avslutte qBittorrent? @@ -1677,14 +1677,14 @@ Vennligst avslutt denne først. '%1' gjenopptatt. - - + + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 er ferdig nedlastet. - + I/O Error i.e: Input/Output Error Lese/Skrive feil @@ -1700,12 +1700,12 @@ Vennligst avslutt denne først. Det har oppstått en feil (full disk?), '%1' er pauset. - + Connection Status: Tilkoblingsstatus: - + Online Tilkoblet @@ -1741,115 +1741,115 @@ Vennligst avslutt denne først. Laster ned '%1'... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Det har oppstått en feil (full disk?), '%1' er pauset. - + Search Søk - + RSS - - + + DHT support [OFF] - + PeX support [ON] - + The download list is not empty. Are you sure you want to quit qBittorrent? - - + + Downloads - + Are you sure you want to delete the selected item(s) in finished list? - + UPnP support [ON] - + Encryption support [ON] - + Encryption support [FORCED] - + Encryption support [OFF] - + Alt+1 shortcut to switch to first tab - + Alt+2 shortcut to switch to second tab - + Alt+4 shortcut to switch to fourth tab - + Url download error - + Couldn't download file at url: %1, reason: %2. - + Are you sure you want to delete the selected item(s) from download list and from hard drive? - + Are you sure you want to delete the selected item(s) from finished list and from hard drive? - + Alt+3 shortcut to switch to third tab - + An I/O error occured for torrent %1. Reason: %2 e.g: An error occured for torrent xxx.avi. @@ -1857,90 +1857,90 @@ Are you sure you want to quit qBittorrent? - + Ctrl+F shortcut to switch to search tab - + qBittorrent is bound to port: TCP/%1 e.g: qBittorrent is bound to port: 6881 - + UPnP support [OFF] - + NAT-PMP support [ON] - + NAT-PMP support [OFF] - + DHT support [ON], port: UDP/%1 - + Local Peer Discovery [ON] - + Local Peer Discovery support [OFF] - + qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s) %1 is qBittorrent version - - + + DL: %1 KiB/s - - + + UP: %1 KiB/s - - + + Ratio: %1 - - + + DHT: %1 nodes - - + + No direct connections. This may indicate network configuration problems. - + Uploads - + Options were saved successfully. Innstillingene ble lagret. @@ -2211,71 +2211,85 @@ Are you sure you want to quit qBittorrent? RSS - + Search Søk - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Torrents:</span> <span style=" font-style:italic;">(double-click to download)</span></p></body></html> + + + + Delete Slett - + Rename - + Refresh + + + Download torrent + + + + + Open news URL + + Create Opprett - + Delete selected streams - + Refresh RSS streams - + Add a new RSS stream - - <b>News:</b> <i>(double-click to open the link in your web browser)</i> - - - - + Add RSS stream - + Refresh all streams - + RSS streams: - + 2 2 - + Mark all as read @@ -2283,86 +2297,86 @@ Are you sure you want to quit qBittorrent? RSSImp - + Please type a rss stream url - + Stream URL: - + Please choose a new name for this stream - + New stream name: - + Are you sure? -- qBittorrent Er du sikker? -- qBittorrent - + &Yes &Ja - + &No &Nei - + Are you sure you want to delete this stream from the list? - - - - + + + + Description: - - - - + + + + url: - - - - + + + + Last refresh: - + qBittorrent qBittorrent - + This rss feed is already in the list. - + Date: - + Author: @@ -2370,7 +2384,7 @@ Are you sure you want to quit qBittorrent? RssItem - + No description available @@ -2378,13 +2392,13 @@ Are you sure you want to quit qBittorrent? RssStream - + %1 ago 10min ago - + Never @@ -2661,25 +2675,46 @@ Endringer: addTorrentDialog - + Torrent addition dialog Legg til torrent - + Save path: Filsti for nedlasting: - + ... ... - + + Torrent size: + + + + + + Unknown + + + + + Free disk space: + + + + Torrent content: Torrent innhold: + + + Download in sequential order (slower but good for previewing) + + File name Filnavn @@ -2693,22 +2728,21 @@ Endringer: Valgt for nedlasting - Download in correct order (slower but good for previewing) - Last ned i riktig rekkefølge (tregere, men tilpasset forhåndsvisningen) + Last ned i riktig rekkefølge (tregere, men tilpasset forhåndsvisningen) - + Add to download list in paused state Legg til i nedlastningslisten som pauset - + Add Legg til - + Cancel Avbryt @@ -2725,32 +2759,32 @@ Endringer: velg - + Ignored - + Normal - + High - + Maximum - + Collapse all - + Expand all @@ -2810,18 +2844,18 @@ Endringer: bittorrent - + %1 reached the maximum ratio you set. - + '%1' was removed permanently. 'xxx.avi' was removed permanently. - + '%1' was removed. 'xxx.avi' was removed. '%1' ble fjernet. @@ -2837,77 +2871,85 @@ Endringer: '%1' gjenopptatt. - - + + '%1' is not a valid magnet URI. + + + + + + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. '%1' finnes allerede i nedlastingslisten. - - + + + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) '%1' ble gjenopptatt (hurtig gjenopptaging) - - + + + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. '%1' ble lagt til i nedlastingslisten. - - + + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' Klarte ikke å dekode torrentfilen: '%1' - + This file is either corrupted or this isn't a torrent. Denne filen er enten ødelagt, eller det er ikke en torrent. - + <font color='red'>%1</font> <i>was blocked due to your IP filter</i> x.y.z.w was blocked - + <font color='red'>%1</font> <i>was banned due to corrupt pieces</i> x.y.z.w was banned - + Couldn't listen on any of the given ports. Klarte ikke å lytte på noen av de oppgitte portene. - + UPnP/NAT-PMP: Port mapping failure, message: %1 - + UPnP/NAT-PMP: Port mapping successful, message: %1 - + Fast resume data was rejected for torrent %1, checking again... - + Url seed lookup failed for url: %1, message: %2 - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... Laster ned '%1'... @@ -3196,12 +3238,12 @@ Endringer: Last ned fra nettadresser - + No URL entered Ingen nettadresse oppgitt - + Please type at least one URL. Angi minst en nettadresse. @@ -3209,7 +3251,7 @@ Endringer: downloading - + Search Søk @@ -3230,17 +3272,17 @@ Endringer: Total opplastingshatighet: - + Start Start - + Pause Pause - + Delete Slett @@ -3249,100 +3291,105 @@ Endringer: Nullstill - + Preview file Forhåndsvis filen - + Set upload limit - + Set download limit - + Delete Permanently Slett data - + Torrent Properties - + Open destination folder - + Name Navn - + Size Størrelse - + Progress - + DLSpeed - + UpSpeed - + Seeds/Leechs Delere/Nedlastere - + Ratio - + ETA Gjenværende tid - + Buy it - + Priority - + Increase priority - + Decrease priority - + Force recheck + + + Copy magnet link + + engineSelect @@ -3564,31 +3611,31 @@ However, those plugins were disabled. misc - + B bytes B - + KiB kibibytes (1024 bytes) KiB - + MiB mebibytes (1024 kibibytes) MiB - + GiB gibibytes (1024 mibibytes) GiB - + TiB tebibytes (1024 gibibytes) TiB @@ -3618,31 +3665,31 @@ However, those plugins were disabled. dager - + Unknown Unknown (size) Ukjent - + < 1m < 1 minute < 1 min - + %1m e.g: 10minutes %1min - + %1h%2m e.g: 3hours 5minutes %1time(r) %2min - + %1d%2h%3m e.g: 2days 10hours 2minutes %1dag(er) %2time(r) %3min @@ -3919,7 +3966,7 @@ However, those plugins were disabled. Tildeler - + Unknown Ukjent @@ -3937,7 +3984,7 @@ However, those plugins were disabled. Filer i denne torrenten: - + Size Størrelse @@ -3967,8 +4014,8 @@ However, those plugins were disabled. Sporingstjenere: - - + + None - Unreachable? Ingen - Utilgjengelig? @@ -3977,7 +4024,7 @@ However, those plugins were disabled. Feil: - + Progress Fremgang @@ -4081,49 +4128,49 @@ However, those plugins were disabled. - + Priorities: - + Normal: normal priority. Download order is dependent on availability - + High: higher than normal priority. Pieces are preferred over pieces with the same availability, but not over pieces with lower availability - + Maximum: maximum priority, availability is disregarded, the piece is preferred over any other piece with lower priority - + File name Filnavn - - + + Priority - - + + qBittorrent qBittorrent - + Trackers list can't be empty. - + Ignored: file is not downloaded at all @@ -4153,12 +4200,12 @@ However, those plugins were disabled. - + New url seed: - + This url seed is already in the list. @@ -4168,7 +4215,7 @@ However, those plugins were disabled. Ingen - + New url seed New HTTP source @@ -4179,12 +4226,12 @@ However, those plugins were disabled. - + Priorities error - + Error, you can't filter all the files in a torrent. @@ -4209,18 +4256,18 @@ However, those plugins were disabled. ... - - + + Choose save path Velg filsti for nedlasting - + Save path creation error Feil ved oprettelsen av filsti - + Could not create the save path Kunne ikke opprette nedlastingsfilstien @@ -4359,6 +4406,11 @@ However, those plugins were disabled. Seeds / Leechers + + + Copy magnet link + + Leechers Nedlastere @@ -4439,8 +4491,8 @@ However, those plugins were disabled. Ja - - + + Unable to decode torrent file: Klarte ikke å dekode torrentfilen: @@ -4449,8 +4501,8 @@ However, those plugins were disabled. Denne filen er enten ødelagt, eller det er ikke en torrent. - - + + Choose save path Velg filsti for nedlasting @@ -4459,53 +4511,70 @@ However, those plugins were disabled. Nei - + + Unknown + + + + + (%1 left after torrent download) + e.g. (100MiB left after torrent download) + + + + + (%1 more are required to download) + e.g. (100MiB more are required to download) + + + + Empty save path Ingen filsti oppgitt - + Please enter a save path Velg en filsti for nedlasting - + Save path creation error Feil ved oprettelsen av filsti - + Could not create the save path Kunne ikke opprette nedlastingsfilstien - + Invalid file selection Ugyldig valg av filer - + You must select at least one file in the torrent Du må velge minst en fil fra torrenten - + File name Filnavn - + Size Størrelse - + Progress - - + + Priority diff --git a/src/lang/qbittorrent_nl.qm b/src/lang/qbittorrent_nl.qm index 1aa8ad81b60392cca95f0b9c9498e321ec664636..769ee4cb8354ec83173a8530f88f484fd38f30f2 100644 GIT binary patch delta 3896 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 a+fr+@OTs9rDSX2K^W|kB;igZnHUAGNHMO7s diff --git a/src/lang/qbittorrent_nl.ts b/src/lang/qbittorrent_nl.ts index c4480cc1ca..f76f284642 100644 --- a/src/lang/qbittorrent_nl.ts +++ b/src/lang/qbittorrent_nl.ts @@ -828,12 +828,6 @@ p, li { white-space: pre-wrap; } qBittorrent will watch a directory and automatically download torrents present in it Map in de gaten houden - - - Transfer lists double-click - qBittorrent will watch a directory and automatically download torrents present in it - - Download list: @@ -940,6 +934,12 @@ p, li { white-space: pre-wrap; } Bittorrent Bittorrent + + + Transfer lists double-click action + Action executed when doucle-clicking on an item in transfer (download/upload) list + + Connections limit @@ -1161,54 +1161,54 @@ p, li { white-space: pre-wrap; } DownloadingTorrents - + Name i.e: file name Naam - + Size i.e: file size Grootte - + Progress i.e: % downloaded Voortgang - + DL Speed i.e: Download speed DL snelheid - + UP Speed i.e: Upload speed UP snelheid - + Seeds/Leechs i.e: full/partial sources Up-/Downloaders - + Ratio Verhouding - + ETA i.e: Estimated Time of Arrival / Time left Geschatte resterende tijd - + qBittorrent %1 started. e.g: qBittorrent v0.x started. qBittorrent %1 gestart. @@ -1264,7 +1264,7 @@ p, li { white-space: pre-wrap; } Bezig met downloaden van '%1', even geduld alstublieft... - + Hide or Show Column Verberg of Toon Kolom @@ -1277,7 +1277,7 @@ p, li { white-space: pre-wrap; } UPnP/NAT-PMP: Port mapping succesvol, bericht: %1 - + Priority Prioriteit @@ -1402,7 +1402,7 @@ p, li { white-space: pre-wrap; } - + Hide or Show Column Verberg of Toon Kolom @@ -1434,8 +1434,8 @@ p, li { white-space: pre-wrap; } gestart. - - + + qBittorrent qBittorrent @@ -1452,12 +1452,12 @@ p, li { white-space: pre-wrap; } UP snelheid: - + Open Torrent Files Open Torrent bestanden - + Torrent Files Torrent bestanden @@ -1495,10 +1495,10 @@ p, li { white-space: pre-wrap; } Dit bestand is corrupt of is geen torrent. - - - - + + + + Are you sure? -- qBittorrent Weet u het zeker? -- qBittorrent @@ -1507,20 +1507,20 @@ p, li { white-space: pre-wrap; } Weet u zeker dat u alle bestanden uit de downloadlijst wilt verwijderen? - - - - - + + + + + &Yes &Ja - - - - - + + + + + &No &Nee @@ -1529,7 +1529,7 @@ p, li { white-space: pre-wrap; } Downloadlijst leeg gemaakt. - + Are you sure you want to delete the selected item(s) in download list? Weet u zeker dat u de geselecteerde bestanden uit de downloadlijst wilt verwijderen? @@ -1598,7 +1598,7 @@ p, li { white-space: pre-wrap; } /s - + Finished Klaar @@ -1815,7 +1815,7 @@ Stop het eerste proccess eerst. Overdrachten - + Download finished Download afgerond @@ -1837,15 +1837,15 @@ Stop het eerste proccess eerst. Weet u zeker dat u de geselecteerde onderdelen in de download lijst en van harde schijf wil verwijderen? - - + + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - - + + Connection status: Verbindingsstatus: @@ -1908,15 +1908,15 @@ Stop het eerste proccess eerst. qBittorrent %1 gestart. - - + + DL speed: %1 KiB/s e.g: Download speed: 10 KiB/s DL snelheid: %1 KiB/s - - + + UP speed: %1 KiB/s e.g: Upload speed: 10 KiB/s UP snelheid: %1 KiB/s @@ -1937,7 +1937,7 @@ Stop het eerste proccess eerst. Stilstaand - + Are you sure you want to quit? Weet u zeker dat u wilt afsluiten? @@ -2000,14 +2000,14 @@ Stop het eerste proccess eerst. '%1' hervat. - - + + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 is klaar met downloaden. - + I/O Error i.e: Input/Output Error I/O Fout @@ -2018,12 +2018,12 @@ Stop het eerste proccess eerst. Een fout is opgetreden tijdens het lezen of schrijven van %1. De schijf is waarschijnlijk vol, de download is gepauzeerd - + Connection Status: Verbindingsstatus: - + Online Online @@ -2059,18 +2059,18 @@ Stop het eerste proccess eerst. Bezig met downloaden van '%1', even geduld alstublieft... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Er is een fout opgetreden (schijf vol?), '%1' gepauzeerd. - + Search Zoeken - + RSS RSS @@ -2084,13 +2084,13 @@ Stop het eerste proccess eerst. DHT ondersteuning [AAN], poort: %1 - - + + DHT support [OFF] DHT ondersteuning [UIT] - + PeX support [ON] PeX ondersteuning [AAN] @@ -2099,51 +2099,51 @@ Stop het eerste proccess eerst. PeX ondersteuning [UIT] - + The download list is not empty. Are you sure you want to quit qBittorrent? De downloadlijst is niet leeg. Weet u zeker dat u qBittorrent wilt afsluiten? - - + + Downloads Downloads - + Are you sure you want to delete the selected item(s) in finished list? Weet u zeker dat u de geselecteerde item(s) wilt verwijderen van de voltooidlijst? - + UPnP support [ON] UPnP ondersteuning [AAN] - + Encryption support [ON] Encryptie ondersteuning [AAN] - + Encryption support [FORCED] Encryptie ondersteuning [GEFORCEERD] - + Encryption support [OFF] Encryptie ondersteuning [UIT] - + Alt+1 shortcut to switch to first tab Alt+1 - + An I/O error occured for torrent %1. Reason: %2 e.g: An error occured for torrent xxx.avi. @@ -2151,34 +2151,34 @@ Weet u zeker dat u qBittorrent wilt afsluiten? - + Alt+2 shortcut to switch to second tab Alt+2 - + Alt+4 shortcut to switch to fourth tab Alt+4 - + Url download error Url download fout - + Couldn't download file at url: %1, reason: %2. Kon bestand niet downloaden vanaf url: %1, reden: %2. - + Are you sure you want to delete the selected item(s) from download list and from hard drive? Weet u zeker dat u de geselecteerde item(s) wilt verwijderen van de downloadlijst en de harde schijf? - + Are you sure you want to delete the selected item(s) from finished list and from hard drive? Weet u zeker dat u de geselecteerde item(s) wilt verwijderen van de voltooidlijst en de harde schijf? @@ -2188,50 +2188,50 @@ Weet u zeker dat u qBittorrent wilt afsluiten? '%1' is permanent verwijderd. - + Alt+3 shortcut to switch to third tab Alt+3 - + Ctrl+F shortcut to switch to search tab Ctrl+F - + qBittorrent is bound to port: TCP/%1 e.g: qBittorrent is bound to port: 6881 - + UPnP support [OFF] UPnP ondersteuning [UIT] - + NAT-PMP support [ON] NAT-PMP ondersteuning [AAN] - + NAT-PMP support [OFF] NAT-PMP ondersteuning [UIT] - + DHT support [ON], port: UDP/%1 - + Local Peer Discovery [ON] Local Peer Discovery [AAN] - + Local Peer Discovery support [OFF] Local Peer Discovery ondersteuning [UIT] @@ -2241,48 +2241,48 @@ Weet u zeker dat u qBittorrent wilt afsluiten? '%1' is verwijderd omdat de ratio de maximale ingestelde waarde heeft bereikt. - + qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s) %1 is qBittorrent version qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s) - - + + DL: %1 KiB/s DL: %1 KiB/s - - + + UP: %1 KiB/s UP: %1 KiB/s - - + + Ratio: %1 Verhouding: %1 - - + + DHT: %1 nodes DHT: %1 nodes - - + + No direct connections. This may indicate network configuration problems. Geen directe verbindingen. Dit kan komen door netwerk configuratie problemen. - + Uploads Uploads - + Options were saved successfully. Opties zijn succesvol opgeslagen. @@ -2620,71 +2620,89 @@ Weet u zeker dat u qBittorrent wilt afsluiten? RSS - + Search Zoeken - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Torrents:</span> <span style=" font-style:italic;">(double-click to download)</span></p></body></html> + + + + Delete Verwijderen - + Rename Hernoemen - + Refresh Vernieuwen + + + Download torrent + + + + + Open news URL + + Create Maken - + Delete selected streams Geselecteerde stream verwijderen - + Refresh RSS streams Vernieuw RRS streams - + Add a new RSS stream Voeg een nieuwe RSS stream toe - <b>News:</b> <i>(double-click to open the link in your web browser)</i> - <b>Nieuws:</b> <i>(dubbel-klik om de link in uw webbrowser te openen)</i> + <b>Nieuws:</b> <i>(dubbel-klik om de link in uw webbrowser te openen)</i> - + Add RSS stream RSS stream toevoegen - + Refresh all streams Alle streams vernieuwen - + RSS streams: RSS streams: - + 2 2 - + Mark all as read Alles markeren als gelezen @@ -2692,86 +2710,86 @@ Weet u zeker dat u qBittorrent wilt afsluiten? RSSImp - + Please type a rss stream url Geef alstublieft een rss stream url - + Stream URL: Stream URL: - + Please choose a new name for this stream Kies een nieuwe naam voor deze stream - + New stream name: Nieuwe stream naam: - + Are you sure? -- qBittorrent Weet u het zeker? -- qBittorrent - + &Yes &Ja - + &No &Nee - + Are you sure you want to delete this stream from the list? Weet u zeker dat u deze stream van de lijst wilt verwijderen? - - - - + + + + Description: Omschrijving: - - - - + + + + url: url: - - - - + + + + Last refresh: Laatste vernieuwing: - + qBittorrent qBittorrent - + This rss feed is already in the list. Deze rss feed staat al in de lijst. - + Date: Datum: - + Author: Auteur: @@ -2779,7 +2797,7 @@ Weet u zeker dat u qBittorrent wilt afsluiten? RssItem - + No description available Geen omschrijving beschikbaar @@ -2787,13 +2805,13 @@ Weet u zeker dat u qBittorrent wilt afsluiten? RssStream - + %1 ago 10min ago %1 geleden - + Never Nooit @@ -3087,25 +3105,46 @@ Changelog: addTorrentDialog - + Torrent addition dialog Torrent toevoegen dialoog - + Save path: Opslag pad: - + ... ... - + + Torrent size: + + + + + + Unknown + Onbekend + + + + Free disk space: + + + + Torrent content: Torrent inhoud: + + + Download in sequential order (slower but good for previewing) + + File name Bestandsnaam @@ -3119,22 +3158,21 @@ Changelog: Geselecteerd - Download in correct order (slower but good for previewing) - Download in juiste volgorde (langzamer maar goed voor vooruitblikken) + Download in juiste volgorde (langzamer maar goed voor vooruitblikken) - + Add to download list in paused state Aan download lijst toevoegen in pauze stand - + Add Toevoegen - + Cancel Annuleren @@ -3147,32 +3185,32 @@ Changelog: Selecteren - + Ignored Genegeerd - + Normal Normaal - + High Hoog - + Maximum Maximum - + Collapse all Alles inklappen - + Expand all Alles uitklappen @@ -3232,18 +3270,18 @@ Changelog: bittorrent - + %1 reached the maximum ratio you set. %1 heeft de maximum ingestelde verhouding bereikt. - + '%1' was removed permanently. 'xxx.avi' was removed permanently. '%1' is permanent verwijderd. - + '%1' was removed. 'xxx.avi' was removed. '%1' is verwijderd. @@ -3259,77 +3297,85 @@ Changelog: '%1' hervat. - - + + '%1' is not a valid magnet URI. + + + + + + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. '%1' staat al in de downloadlijst. - - + + + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) '%1' hervat. (snelle hervatting) - - + + + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. '%1' toegevoegd aan de downloadlijst. - - + + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' Torrentbestand kan niet worden gedecodeerd: '%1' - + This file is either corrupted or this isn't a torrent. Dit bestand is beschadigd of is geen torrent. - + <font color='red'>%1</font> <i>was blocked due to your IP filter</i> x.y.z.w was blocked <font color='red'>%1</font> <i>is geblokkeerd door de IP filter</i> - + <font color='red'>%1</font> <i>was banned due to corrupt pieces</i> x.y.z.w was banned <font color='red'>%1</font> <i>is verbannen door verkeerde stukjes</i> - + Couldn't listen on any of the given ports. Kan niet luisteren op de aangegeven poorten. - + UPnP/NAT-PMP: Port mapping failure, message: %1 UPnP/NAT-PMP: Port mapping fout, bericht: %1 - + UPnP/NAT-PMP: Port mapping successful, message: %1 UPnP/NAT-PMP: Port mapping succesvol, bericht: %1 - + Fast resume data was rejected for torrent %1, checking again... Snelle vervatting voor torrent %1 mislukt. Bezig opnieuw te controleren... - + Url seed lookup failed for url: %1, message: %2 Url seed raadpleging mislukt voor url: %1, bericht: %2 - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... Bezig met downloaden van '%1', even geduld alstublieft... @@ -3634,12 +3680,12 @@ Changelog: Download uit urls - + No URL entered Geen URL ingevoerd - + Please type at least one URL. Typ op zijn minst één URL. @@ -3647,7 +3693,7 @@ Changelog: downloading - + Search Zoeken @@ -3676,17 +3722,17 @@ Changelog: IP filter - + Start Start - + Pause Pauze - + Delete Verwijderen @@ -3695,100 +3741,105 @@ Changelog: Wissen - + Preview file Kijk vooruit op bestand - + Set upload limit Uploadlimiet instellen - + Set download limit Downloadlimiet instellen - + Delete Permanently Permanent verwijderen - + Torrent Properties Torrent eigenschappen - + Open destination folder Open doel map - + Name Naam - + Size Grootte - + Progress Voortgang - + DLSpeed DLSnelheid - + UpSpeed UpSnelheid - + Seeds/Leechs Up-/Downloaders - + Ratio Verhouding - + ETA Geschatte resterende tijd - + Buy it Koop het - + Priority Prioriteit - + Increase priority Prioriteit verhogen - + Decrease priority Prioriteit verlagen - + Force recheck + + + Copy magnet link + + engineSelect @@ -4041,31 +4092,31 @@ De plugins zijn uitgeschakeld. misc - + B bytes B - + KiB kibibytes (1024 bytes) KiB - + MiB mebibytes (1024 kibibytes) MiB - + GiB gibibytes (1024 mibibytes) GiB - + TiB tebibytes (1024 gibibytes) TiB @@ -4100,31 +4151,31 @@ De plugins zijn uitgeschakeld. d - + Unknown Unknown (size) Onbekend - + < 1m < 1 minute < 1m - + %1m e.g: 10minutes %1m - + %1h%2m e.g: 3hours 5minutes %1u%2m - + %1d%2h%3m e.g: 2days 10hours 2minutes %1d%2u%3m @@ -4428,7 +4479,7 @@ selecteer alstublieft een er van: U kan hier precies selecteren welke bestanden uit de huidige torrent u wilt downloaden. - + Size Grootte @@ -4469,13 +4520,13 @@ selecteer alstublieft een er van: Locatie toekennen - - + + None - Unreachable? Geen - Onbereikbaar? - + Unknown Onbekend @@ -4496,7 +4547,7 @@ selecteer alstublieft een er van: Waar - + Progress Voortgang @@ -4612,49 +4663,49 @@ selecteer alstublieft een er van: Nieuwe tracker url: - + Priorities: Prioriteiten: - + Normal: normal priority. Download order is dependent on availability Normaal: normale prioriteit. Downloadvolgorde is afhankelijk van beschikbaarheid - + High: higher than normal priority. Pieces are preferred over pieces with the same availability, but not over pieces with lower availability Hoog: hoger dan normale prioriteit. Stukken worden geprefereerd over stukken met dezelfde beschikbaarheid maar niet over stukken met lagere beschikbaarheid - + Maximum: maximum priority, availability is disregarded, the piece is preferred over any other piece with lower priority Maximum: maximale prioriteit, beschikbaarheid doet er niet toe, het stuk wordt geprefereerd over elk ander stuk met lagere prioriteit - + File name Bestandsnaam - - + + Priority Prioriteit - - + + qBittorrent qBittorrent - + Trackers list can't be empty. Trackerlijst kan niet leeg zijn. - + Ignored: file is not downloaded at all Genegeerd: bestand wordt niet gedownload @@ -4684,12 +4735,12 @@ selecteer alstublieft een er van: Url seeds - + New url seed: Nieuwe url seed: - + This url seed is already in the list. Deze url seed staat al in de lijst. @@ -4699,7 +4750,7 @@ selecteer alstublieft een er van: Geen - + New url seed New HTTP source Nieuwe url seed @@ -4710,12 +4761,12 @@ selecteer alstublieft een er van: De volgende url seeds zijn beschikbaar voor deze torrent: - + Priorities error Prioriteitsfout - + Error, you can't filter all the files in a torrent. Fout: je kan niet alle bestanden filteren in een torrent. @@ -4740,18 +4791,18 @@ selecteer alstublieft een er van: ... - - + + Choose save path Kies opslag pad - + Save path creation error Opslag pad aanmaak fout - + Could not create the save path Kon het opslag pad niet aanmaken @@ -4894,6 +4945,11 @@ selecteer alstublieft een er van: Seeds / Leechers + + + Copy magnet link + + Leechers Downloaders @@ -4998,8 +5054,8 @@ selecteer alstublieft een er van: Waar - - + + Unable to decode torrent file: Torrentfile kan niet gedecodeerd worden: @@ -5008,8 +5064,8 @@ selecteer alstublieft een er van: Dit bestand is corrupt of is geen torrent. - - + + Choose save path Kies opslag pad @@ -5018,53 +5074,70 @@ selecteer alstublieft een er van: Onwaar - + + Unknown + Onbekend + + + + (%1 left after torrent download) + e.g. (100MiB left after torrent download) + + + + + (%1 more are required to download) + e.g. (100MiB more are required to download) + + + + Empty save path Leeg opslag pad - + Please enter a save path Geef alstublieft een opslag pad - + Save path creation error Opslag pad aanmaak fout - + Could not create the save path Kon het opslag pad niet aanmaken - + Invalid file selection Ongeldige bestand selectie - + You must select at least one file in the torrent U moet tenminste een bestand in de torrent selecteren - + File name Bestandsnaam - + Size Grootte - + Progress Voortgang - - + + Priority Prioriteit diff --git a/src/lang/qbittorrent_pl.qm b/src/lang/qbittorrent_pl.qm index 7fdd670d9ae6dc80aa6f10d1330b3b7fe64f1f38..90f655ce27d441aa4fe7b77976c3542435d8ff8a 100644 GIT binary patch delta 3881 zcmXY!d0b8T8^=HQ-gEA`=bpQelnKQUNkYjIBCRTWkyN%4qBO~p>P8C5)@?yz$`%sU zkjk#IZ(|w5?`0ciWDGx<`28C6d#>;AulK#@o^!s>_jx|g=lk5;LPg$o#pZ4XV?4kQ z1@<-of(Kwb4X{fFj1EBWaezY>qkkaKUk6O3draKE3-H-P-{Szkl|T=AkBLcMz?h%u z`AxtC6U%`~Cf)(2qye3y7>AkzAwR1v+i=<75{LBSf@Cc)SA{4)w0vQYLCI^g~ z1@70)fJJw3?;gmigK|oqAka^zdB6l=Q?}|xb zUxBbF1g2#I@)roacAmm|h{;)Wn};W3@G z$j_s^Xs4rcA1&nFjOt$~fE`gdWmga6sqy9@F+^7VfP^u)Np|CoJK&ZlyBEER0?d)!_oC}NwX(+j)D{OG$y!%XApAda zjdKdnWw+eIE(F+LDj(rw4XjU=k7zL112vE3zD<7tW)I{cF|@E<3S;m0@+EdbK&4T> zRC1vgUu8TIFJCot1mM_4o)-0lN>w6XQ?h|tLMC6k;}2l+W_kXnI>2cdV?emP#+Q0C z-9~;Zpb3b+E58@998i9dKT}3b0p>0^YPSaXb<>P1|e z#Dz?FP94{~z#U-R=rxM~p;zzEy)D6gZ%axRz1p>Zuhc0 z4toK2Z($tni^Q#O!=0Tu7U(sEt6OdhtenL)%sUTQon%aU$5`H; zyV3BLw8(L{7Sm2G)^PVzDUdO}jmb)D!#IDwy_YLh?%(`?LTbj*@w`jkS8D!#yn8?~ zNmmx`R->dnnv+PL;!TfFh zxpA9d<`)~TG+Rn3X@68{HI`EAy@S#4595JVj1}*dy=!R?9VRH9j?*5aH!27HzLQGu zSm|-@AyCl6*etjivac&Q-5o^DYpJXlcN&N-RMwxGPttj$y#0hUy!4Us&Jzb9zK`-r zDm|t!Q@-p^sa+Prc$ibZk0;k@8?0=y{0$f`C|jadkw%q*+?k}esH>p8M3ql}C0GRc z0SD^^tCysd?VQkGvZ9p6xCnzwr&H>(g)tcefR28`59@2l$QKInW{G5Hn;7>;3JDe| zKzO~7;1os2!d_uXi5qZetB`iEg;I1^SZ~oEh_V#2ZswCl76~~DDphV5A=j;ud~=;p zl>HhgwGwuJnnzl>FC4M<>jaFGgrjmJIsbncQ+5iKVc~RMT{Vsotqr+#!ix}!N48OT zwbYZ`tWo$e&!7*!`KXu}1sRJE(fr;ndj)jkg+Ki{c3m34_;)J}Ef0##z-O4Y+Us^pk5 z)%#kqOZ9tEVWR-LbrzNDDdBrOMP=?~+P4Q|@=eBlDU8+I#kS5v$W@NnidNBo11q|U zy|U`cl1|%8;?!r7aeI9a#9CB;>ozLt3!9u0t*MIBlks;@yDy9zJ5n%{R!hK$ z1-j2smz*S)xv9(CsFEG67{j)yk6t_o>~2vXUqY`h+pVrTz7sfcQvG71FZIkt#ww-y z&-?YX?@$T5SJSdll6O4FB602}s53u!^9Pe{uWhR`f?S6VUFm87(&SxWYyotyWR483S) zf#K5XA>y8cW$-Dx;!+DEF}N}3%oRcZ)sA|+1w+E^m$AVH*&Wp|R#YX^0x7al08wFE}2j8KtKMRkj+B ziEn5+R%^V*&n7#|(fDMO#@qE_TxrxyP?MI&@|ua0X{Uh)7(>r6mIgA`F4BZV(@s-^ zG;!(l{NfG9Q(9}+>8~`aSKk1Ftu$*FrcwM`H8~@!sPfi~;R%|2vr?K)6E#O>j-&(i zx~6JjE>-NRvAxdGuynrWt@%2@CSCKTUn2>mSgR~hcLAsmeuI)7C z7^UsAw)?clQ{6qV|jLye`nT%D7v@IEwpR%XA zwrewK^68?pwkf0gqICo9zLF_V5Oh8T8|nYo9!C4Wbbg&FfkBPNFntfhjM=)7*a7r& zAKmgloXONPb!#)olwFSMvS*um12;F`^x__~muF{?Kwd#tl z@=!P>V5qKkC?#Z7N8Pp7FM#V6-OHcb(GXv#Yg$0RyEo`QI8%Z~-`2H8((eP;==B>+ zom5+{x71K#+C9>Lt3Z&4zQ?TyD)2A*o+Z}6^ojZ*TmPmZe5&53JRR8Pqz`^Xfrw3d zLvSmd60h`Sw?tq@qyBPV`med9UVrVi1L-YCe<$rVjf7?TmviZPpC1@Q?lKm+>R)X< z&=x2jqW|bknI70}9&j?DGP_NHZ{^jgQ_PI@*;sJ%qgG$ZaZV8323ed z|ItZW;34>3WWA#gk&chf^DEXi74iu7o+zMGc&ukXxr*fUA24(BuMFtIJaI;P!@H7;k0j z=NNyb6?iKa69*Ophc)oMSqpq%2jBbTTC*H}#ZQ49cg-(l3)TXCo?>Nw z8nDtCTdK(~+E}#grG@-n;@B-RVCQh0a6Aia>A;iyv|tGDAlo$4HeWEw5(n8!HsnS6y~ z7;tEgJWFz?os}`Ry2=aVrT}C5$cvKhQmCrrt1as(H@}vz+5S7_QLcQ;t9D?VC*#Z+ z^40*#(bBu}E5TjBl1llF#B4zMT7FNNI1gAn!EEHbOnGAzzR`ie)Go%{F^Y&h@_4AX zB4UdjuyueUDue8`_fbSWIzsnP6^YhdPW?zxkV8@d6ysS^H^tFQPI zaJ|npjQRrb_9I5qMc|KYAh(FIc`SD-p2V&1!<~)`0Y*&Z+Or*iqIbD-$!7q&*d@9P14dXRV9LCF}jkaw@{0b>5m zdk5E&l(oE%NRAn_l%MfsJ2`qCV}30kZl)ad?_!Mpka2GeZ*=hmCO+cRTFGw}a(?ON zIx=e^pPk-8#leF&Z6YP?Kh78B8!5u}oqWkasv2b;{2FT{Qb+LR*6KXtSH5P=R$$U1 z#^3>r`J)&c|Hs(!J-@4z6p`^?zCl4nqUsjke3};Y&SK0x#Mm6mpG_oXysPH_5${Aw zh~TgC_syRQHbG16l{Q)AlKuykb|K_izwL|#ZH)EP7{B^bIkJuRFfdd(?lA3fNr>`; z-*!?6?kJ~!{S&bLH}gxu%T&2ux#9Z{D0v4cn`fN_mPRYjo>)xMxvjiymQa3q3u(kfs8mp>s(%rx zygI3Ft`&A|eoXU!5_Z2zCav5Qn(TuH0ki%i9F&`>^8d~J7@;LPhR&-p^Gwm+w53>h z5J~pPDuhQ_K2*)>gx8ku=(yUU>iZ%TNG?$g9#{cvic^hxo({O!tEM@m(Sh%#nr^c0 zL#^_8Bb8gK87(w#k-ciRmbwVV9@Xqqq}3UtRSC9M=Bskvrn-J$D3R=p?N+T?K7<@J z_OPnjo;nG?5LMG*t0v58Z@eM^{PMYec zc8X+3jp|t&l}q(A)$^@nKtO<~7@`1%4HlJUvXZJwTcp_6 zbs`zPCKb-kG1OA8)eDXyMG5lpfZ8}D^c=)%RehHrrI z4Dn1$1|0x0@u$Q))SCs0Pq`aZCX|e(zwcX;#I8gKYUDPGJ?2_QZ!#MvX zqq&2zu~>2(`WVohkes8);Xw+?eZn|8$c9M%BWviSTqOm4L5|&PmV)IZAy*$Mw6~7x zq*jW~3ZfR_b18NO8L%NyT0#p#eNm5z0`(D)_kKk8H9V?T{O??cU#v&QRk7=7UASj{v&EvRzPOrQOP zx?;7)_rnA#V{b^?K+G1XpMSoV%%2>(MS~e2*HNd)gQeN`!gOw24+T zJr8M(yFEx44X)bMYMS8gsLidU%&63Bi^M&2K9y?A11K|&%+uCumXk6wwC(3Tspax! z?ANWm^oraR=&rq<)}K;*mG;(kg-sQ8Ay(D~O?(C@50j81>(f(DZV!*80S_3xYFhv_2I-RSXXUH0#;Kx2?@ zO(_*$_k+643H?a0Q*@QeTq-r2blWl)QzNiYw=an1XI|5_c$1!r*Xdg7W5@xMbZwK! zAw{=!7kgg=9v!-e*WRLLeTS|qm7aT_(>-@32L+wf^&08<_|>4_s!kV;o6NTdIYVL&3yj3X|i z|2fE}t2lbY%5*HJXX*5W#$^JHSl>*ecMUXdz{hW%7?Ffj8BgDdi=%-AT6)BrWobDT zc^FFi^Y@JR3NdD7cz8O;dl@{Fy&MzMGviZ@qZ3k-6H*Mz(+%k#8`BKS7a0wy$!RHu zqBittorrent will watch a directory and automatically download torrents present in it Folder obserwacji - - - Transfer lists double-click - qBittorrent will watch a directory and automatically download torrents present in it - - Download list: @@ -939,6 +933,12 @@ Wszystkie prawa zastrżeżone © 2006 Christophe Dumez<br>(new line) Bittorrent Bittorrent + + + Transfer lists double-click action + Action executed when doucle-clicking on an item in transfer (download/upload) list + + Connections limit @@ -1160,54 +1160,54 @@ Wszystkie prawa zastrżeżone © 2006 Christophe Dumez<br>(new line) DownloadingTorrents - + Name i.e: file name Nazwa - + Size i.e: file size Rozmiar - + Progress i.e: % downloaded Postęp - + DL Speed i.e: Download speed Prędkość DL - + UP Speed i.e: Upload speed Prędkość UP - + Seeds/Leechs i.e: full/partial sources Seeds/Leechs - + Ratio Ratio - + ETA i.e: Estimated Time of Arrival / Time left ETA - + qBittorrent %1 started. e.g: qBittorrent v0.x started. qBittorrent %1 uruchomiony. @@ -1263,7 +1263,7 @@ Wszystkie prawa zastrżeżone © 2006 Christophe Dumez<br>(new line) Pobieranie '%1', proszę czekać... - + Hide or Show Column Pokaż lub ukryj kolumny @@ -1276,7 +1276,7 @@ Wszystkie prawa zastrżeżone © 2006 Christophe Dumez<br>(new line) UPnP/NAT-PMP: Udane mapowanie portu, wiadomość %1 - + Priority Priorytet @@ -1410,7 +1410,7 @@ Wszystkie prawa zastrżeżone © 2006 Christophe Dumez<br>(new line) - + Hide or Show Column Ukryj lub pokaż kolumny @@ -1446,12 +1446,12 @@ Wszystkie prawa zastrżeżone © 2006 Christophe Dumez<br>(new line) Prędkość UP: - + Open Torrent Files Otwórz pliki Torrent - + Torrent Files Pliki Torrent @@ -1493,20 +1493,20 @@ Wszystkie prawa zastrżeżone © 2006 Christophe Dumez<br>(new line) Czy chcesz usunać wszystkie pliki z listy pobierania? - - - - - + + + + + &Yes &Tak - - - - - + + + + + &No &Nie @@ -1515,7 +1515,7 @@ Wszystkie prawa zastrżeżone © 2006 Christophe Dumez<br>(new line) List pobierania wyczyszczona. - + Are you sure you want to delete the selected item(s) in download list? Czy chcesz usunąć wybrane elementy z listy pobierania? @@ -1555,7 +1555,7 @@ Wszystkie prawa zastrżeżone © 2006 Christophe Dumez<br>(new line) wznowiony. - + Finished Ukończone @@ -1591,16 +1591,16 @@ Wszystkie prawa zastrżeżone © 2006 Christophe Dumez<br>(new line) qBittorrent - - + + qBittorrent qBittorrent - - - - + + + + Are you sure? -- qBittorrent Jesteś pewny? -- qBittorrent @@ -1863,7 +1863,7 @@ Zamknij najpierw okno podglądu. Czy na pewno chcesz usunąć wybrany element z listy i z dysku? - + Download finished Pobieranie zakończone @@ -1877,15 +1877,15 @@ Zamknij najpierw okno podglądu. Wyszukiwarka - - + + qBittorrent %1 e.g: qBittorrent v0.x qBittorent %1 - - + + Connection status: Status połączenia: @@ -1948,15 +1948,15 @@ Zamknij najpierw okno podglądu. qBittorrent %1 uruchomiony. - - + + DL speed: %1 KiB/s e.g: Download speed: 10 KiB/s Prędkość DL: %1 KiB/s - - + + UP speed: %1 KiB/s e.g: Upload speed: 10 KiB/s Prędkość UP: %1 KiB/ @@ -1977,7 +1977,7 @@ Zamknij najpierw okno podglądu. Zablokowany - + Are you sure you want to quit? Czy na pewno chcesz zakończyć aplikację? @@ -2040,14 +2040,14 @@ Zamknij najpierw okno podglądu. '%1' wznowiony. - - + + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 został pobrany. - + I/O Error i.e: Input/Output Error Błąd We/Wy @@ -2063,12 +2063,12 @@ Zamknij najpierw okno podglądu. Wystąpił błąd (brak miejsca?), '%1' wstrzymany. - + Connection Status: Status połączenia: - + Online Połączony @@ -2104,23 +2104,23 @@ Zamknij najpierw okno podglądu. Pobieranie '%1', proszę czekać... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Wystąpił błąd (brak miejsca?), '%1' wstrzymany. - + Search Szukaj - + RSS RSS - + An I/O error occured for torrent %1. Reason: %2 e.g: An error occured for torrent xxx.avi. @@ -2137,13 +2137,13 @@ Zamknij najpierw okno podglądu. Wsparcie DHT [WŁ], port: %1 - - + + DHT support [OFF] Wsparcie DHT [WYŁ] - + PeX support [ON] Wsparcie PeX [WŁ] @@ -2152,15 +2152,15 @@ Zamknij najpierw okno podglądu. Wsparcie pEx [WYŁ] - + The download list is not empty. Are you sure you want to quit qBittorrent? Lista pobierania nie jest pusta. Czy napewno zamknąć qBittorrent? - - + + Downloads Pobieranie @@ -2169,12 +2169,12 @@ Czy napewno zamknąć qBittorrent? Czy napewno usunąć wybrane pozycje z listy zakończonych z twardego dysku? - + Are you sure you want to delete the selected item(s) in finished list? Czy napewno usunąć wybrane pozycje z listy zakończonych? - + UPnP support [ON] Wsparcie UPnP [WŁ] @@ -2183,17 +2183,17 @@ Czy napewno zamknąć qBittorrent? Bądź ostrożny, wymiana plików chronionych prawami autorskimi jest niezgodna z prawem. - + Encryption support [ON] Wsparcie szyfrowania [WŁ] - + Encryption support [FORCED] Wsparcie szyfrowania [WYMUSZONE] - + Encryption support [OFF] Wsparcie szyfrowania [WYŁ] @@ -2207,13 +2207,13 @@ Czy napewno zamknąć qBittorrent? Ratio - + Alt+1 shortcut to switch to first tab Alt+1 - + Alt+2 shortcut to switch to second tab Alt+2 @@ -2224,18 +2224,18 @@ Czy napewno zamknąć qBittorrent? Alt+3, Ctrl+F - + Alt+4 shortcut to switch to fourth tab Alt+4 - + Url download error Błąd pobierania URL - + Couldn't download file at url: %1, reason: %2. Nie można pobrać pliku z url: %1, powód: %2. @@ -2244,12 +2244,12 @@ Czy napewno zamknąć qBittorrent? Szybkie wznowienie danych zostało odrzucone przez torrent %1, sprawdzam ponownie... - + Are you sure you want to delete the selected item(s) from download list and from hard drive? Czy chcesz usunąć wybrane elementy z listy pobierania i z twardego dysku? - + Are you sure you want to delete the selected item(s) from finished list and from hard drive? Czy chcesz usunąć wybrane elementy z listy ukończonych i z twardego dysku? @@ -2263,50 +2263,50 @@ Czy napewno zamknąć qBittorrent? Błąd wyszukiwania url seeda dla url:%1, wiadomość: %2 - + Alt+3 shortcut to switch to third tab Alt+3 - + Ctrl+F shortcut to switch to search tab Ctrl+F - + qBittorrent is bound to port: TCP/%1 e.g: qBittorrent is bound to port: 6881 - + UPnP support [OFF] Obsługa UPnP [WYŁ] - + NAT-PMP support [ON] Obsługa NAT-PMP [WŁ] - + NAT-PMP support [OFF] Obsługa NAT-PMP [WYŁ] - + DHT support [ON], port: UDP/%1 - + Local Peer Discovery [ON] Local Peer Discovery [WŁ] - + Local Peer Discovery support [OFF] Obsługa Local Peer Discovery [WYŁ] @@ -2316,48 +2316,48 @@ Czy napewno zamknąć qBittorrent? '%1' został usunięty ponieważ ratio osiągnęło ustawioną wartość. - + qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s) %1 is qBittorrent version qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s) - - + + DL: %1 KiB/s DL: %1 KiB/s - - + + UP: %1 KiB/s UP: %1 KiB/s - - + + Ratio: %1 Ratio: %1 - - + + DHT: %1 nodes DHT: %1 węzły - - + + No direct connections. This may indicate network configuration problems. Brak bezposrednich połączeń. Może to oznaczać problem z konfiguracją sieci. - + Uploads Wysyłane - + Options were saved successfully. Ustawienia zapisane. @@ -2703,71 +2703,89 @@ Czy napewno zamknąć qBittorrent? RSS - + Search Szukaj - + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Torrents:</span> <span style=" font-style:italic;">(double-click to download)</span></p></body></html> + + + + Delete Skasuj - + Rename Zmień nazwę - + Refresh Odśwież + + + Download torrent + + + + + Open news URL + + Create Utwórz - + Delete selected streams Usuń wybrane strumienie - + Refresh RSS streams Odśwież strumień RSS - + Add a new RSS stream Dodaj nowy strumień RSS - <b>News:</b> <i>(double-click to open the link in your web browser)</i> - <b>News:</b> <i>(kliknij dwa razy aby otworzyć link w przeglądarce)</i> + <b>News:</b> <i>(kliknij dwa razy aby otworzyć link w przeglądarce)</i> - + Add RSS stream Dodaj strumień RSS - + Refresh all streams Odśwież wszystkie strumienie - + RSS streams: Strumienie RSS: - + 2 2 - + Mark all as read Zaznacz wszystko do odczytu @@ -2775,27 +2793,27 @@ Czy napewno zamknąć qBittorrent? RSSImp - + Please type a rss stream url Sprecyzuj typ url strumienia rss - + Stream URL: Strumień URL: - + Please choose a new name for this stream Wybierz nową nazwę dla tego strumienia - + New stream name: Nowa nazwa strumienia: - + Are you sure? -- qBittorrent Jesteś pewny? -- qBittorrent @@ -2804,12 +2822,12 @@ Czy napewno zamknąć qBittorrent? Jesteś pewien że chcesz usunąć ten strumień z listy? - + &Yes &Tak - + &No &Nie @@ -2822,51 +2840,51 @@ Czy napewno zamknąć qBittorrent? żaden opis niedostępny - + Are you sure you want to delete this stream from the list? Jesteś pewien że chcesz usunąć ten strumień z listy? - - - - + + + + Description: Opis: - - - - + + + + url: url: - - - - + + + + Last refresh: Ostatnie odświeżanie: - + qBittorrent qBittorrent - + This rss feed is already in the list. Ten kanał informacyjny rss feed już jest na liście. - + Date: Data: - + Author: Autor: @@ -2874,7 +2892,7 @@ Czy napewno zamknąć qBittorrent? RssItem - + No description available Opis niedostępny @@ -2882,13 +2900,13 @@ Czy napewno zamknąć qBittorrent? RssStream - + %1 ago 10min ago %1 temu - + Never Nigdy @@ -3191,25 +3209,46 @@ Zmiany: addTorrentDialog - + Torrent addition dialog Dodatkowe informacje o pliku torrent - + Save path: Katalog docelowy: - + ... ... - + + Torrent size: + + + + + + Unknown + Nieznany + + + + Free disk space: + + + + Torrent content: Zawartość torrenta: + + + Download in sequential order (slower but good for previewing) + + File name Nazwa pliku @@ -3223,22 +3262,21 @@ Zmiany: Zaznaczony - Download in correct order (slower but good for previewing) - Pobierz w ustalonej kolejności (wolniejsze ale lepsze przy korzystaniu z opcji podglądu) + Pobierz w ustalonej kolejności (wolniejsze ale lepsze przy korzystaniu z opcji podglądu) - + Add to download list in paused state Dodaj tylko do listy pobierania (bez rozpoczynania pobierania) - + Add Dodaj - + Cancel Anuluj @@ -3255,32 +3293,32 @@ Zmiany: Wybierz - + Ignored Ignorowany - + Normal Normalny - + High Wysoki - + Maximum Maksymalny - + Collapse all - + Expand all @@ -3340,18 +3378,18 @@ Zmiany: bittorrent - + %1 reached the maximum ratio you set. %1 osiagnął ustawione przez ciebie ratio. - + '%1' was removed permanently. 'xxx.avi' was removed permanently. '%1' został całkowicie usunięty. - + '%1' was removed. 'xxx.avi' was removed. '%1' został usunięty. @@ -3367,77 +3405,85 @@ Zmiany: '%1' wznowiony. - - + + '%1' is not a valid magnet URI. + + + + + + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. '%1' jest już na liście pobierania. - - + + + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) '%1' wznowiony. (szybkie wznawianie) - - + + + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. '%1' dodany do listy pobierania. - - + + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' Problem z odczytem pliku torrent: '%1' - + This file is either corrupted or this isn't a torrent. Plik jest uszkodzony lub nie jest plikiem torrent. - + <font color='red'>%1</font> <i>was blocked due to your IP filter</i> x.y.z.w was blocked <font color='red'>%1</font> <i>był zablokowany dzięki filtrowi IP</i> - + <font color='red'>%1</font> <i>was banned due to corrupt pieces</i> x.y.z.w was banned <font color='red'>%1</font> <i>był zablokowany dzięki uszkodzonym częściom</i> - + Couldn't listen on any of the given ports. Nie można nasłuchiwać na żadnym z podanych portów. - + UPnP/NAT-PMP: Port mapping failure, message: %1 UPnP/NAT-PMP: Błąd mapowania portu, wiadomość %1 - + UPnP/NAT-PMP: Port mapping successful, message: %1 UPnP/NAT-PMP: Udane mapowanie portu, wiadomość %1 - + Fast resume data was rejected for torrent %1, checking again... Szybkie wznowienie danych zostało odrzucone przez torrent %1, sprawdzam ponownie... - + Url seed lookup failed for url: %1, message: %2 Błąd wyszukiwania url seeda dla url:%1, wiadomość: %2 - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... Pobieranie '%1', proszę czekać... @@ -3754,12 +3800,12 @@ Zmiany: Pobierz z adresów - + No URL entered Nie wprowadzono adresu URL - + Please type at least one URL. Proszę podać przynajmniej jeden adres URL. @@ -3767,7 +3813,7 @@ Zmiany: downloading - + Search Szukaj @@ -3796,17 +3842,17 @@ Zmiany: Filtr IP - + Start Start - + Pause Wstrzymaj - + Delete Skasuj @@ -3815,100 +3861,105 @@ Zmiany: Wyczyść - + Preview file Podgląd pliku - + Set upload limit Ustaw limit wysyłania - + Set download limit Ustaw limit pobierania - + Delete Permanently Usuń całkowicie - + Torrent Properties Właściwości Torrenta - + Open destination folder Otwórz folder pobierań - + Name Nazwa - + Size Rozmiar - + Progress Postęp - + DLSpeed Prędkość pobierania - + UpSpeed Prędkość wysyłania - + Seeds/Leechs Seeds/Leechs - + Ratio Ratio - + ETA ETA - + Buy it Kup to - + Priority Priorytet - + Increase priority Zwiększ priorytet - + Decrease priority Zmniejsz priorytet - + Force recheck + + + Copy magnet link + + engineSelect @@ -4156,31 +4207,31 @@ Jednak tamte wtyczki były wyłączone. misc - + B bytes B - + KiB kibibytes (1024 bytes) KiB - + MiB mebibytes (1024 kibibytes) MiB - + GiB gibibytes (1024 mibibytes) GiB - + TiB tebibytes (1024 gibibytes) TiB @@ -4215,31 +4266,31 @@ Jednak tamte wtyczki były wyłączone. d - + Unknown Unknown (size) Nieznany - + < 1m < 1 minute < 1m - + %1m e.g: 10minutes %1m - + %1h%2m e.g: 3hours 5minutes %1h%2m - + %1d%2h%3m e.g: 2days 10hours 2minutes %1d%2h%3m @@ -4548,7 +4599,7 @@ Jednak tamte wtyczki były wyłączone. Uzyskiwanie - + Unknown Nieznany @@ -4566,7 +4617,7 @@ Jednak tamte wtyczki były wyłączone. Pliki w torrencie: - + Size Rozmiar @@ -4604,8 +4655,8 @@ Jednak tamte wtyczki były wyłączone. Trackery: - - + + None - Unreachable? Brak - Nieosiągalny? @@ -4614,7 +4665,7 @@ Jednak tamte wtyczki były wyłączone. Błędy: - + Progress Postęp @@ -4730,49 +4781,49 @@ Jednak tamte wtyczki były wyłączone. URL nowego trackera: - + Priorities: Pierwszeństwa: - + Normal: normal priority. Download order is dependent on availability Normalny: normalny priorytet. Kolejność pobierania zależy od dostępności - + High: higher than normal priority. Pieces are preferred over pieces with the same availability, but not over pieces with lower availability Wysoki: wysoki priorytet. Części są ważniejsze od tych z taką samą dostępnością, lecz nie od części z niższą dostępnością - + Maximum: maximum priority, availability is disregarded, the piece is preferred over any other piece with lower priority Maksymalny: maksymalny priorytet. Dostępność jest zlekceważona, części są ważniejsze od tych z niższym priorytetem - + File name Nazwa pliku - - + + Priority Priorytet - - + + qBittorrent qBittorrent - + Trackers list can't be empty. Lista trackerów nie może być pusta. - + Ignored: file is not downloaded at all Ignorowany: plik nie jest pobierany @@ -4802,12 +4853,12 @@ Jednak tamte wtyczki były wyłączone. Url seeda - + New url seed: Nowy url seeda: - + This url seed is already in the list. Ten url seeda już jest na liście. @@ -4821,7 +4872,7 @@ Jednak tamte wtyczki były wyłączone. Brak - + New url seed New HTTP source Nowy url seeda @@ -4832,12 +4883,12 @@ Jednak tamte wtyczki były wyłączone. Dla tego torrenta dostępne są następujące url seeda: - + Priorities error Błąd priorytetu - + Error, you can't filter all the files in a torrent. Błąd, nie można filtrować wszystkich plików torrencie. @@ -4862,18 +4913,18 @@ Jednak tamte wtyczki były wyłączone. ... - - + + Choose save path Wybierz katalog docelowy - + Save path creation error Błąd tworzenia katalogu docelowego - + Could not create the save path Nie można założyć katalogu docelowego @@ -5020,6 +5071,11 @@ Jednak tamte wtyczki były wyłączone. Seeds / Leechers + + + Copy magnet link + + Leechers Leechers @@ -5124,8 +5180,8 @@ Jednak tamte wtyczki były wyłączone. Tak - - + + Unable to decode torrent file: Problem z odkodowaniem pliku torrent: @@ -5134,8 +5190,8 @@ Jednak tamte wtyczki były wyłączone. Plik jest uszkodzony lub nie jest plikiem torrent. - - + + Choose save path Wybierz katalog docelowy @@ -5144,53 +5200,70 @@ Jednak tamte wtyczki były wyłączone. Nie - + + Unknown + Nieznany + + + + (%1 left after torrent download) + e.g. (100MiB left after torrent download) + + + + + (%1 more are required to download) + e.g. (100MiB more are required to download) + + + + Empty save path Niepoprawny katalog docelowy - + Please enter a save path Podaj katalog docelowy - + Save path creation error Błąd tworzenia katalogu docelowego - + Could not create the save path Nie można założyć katalogu docelowego - + Invalid file selection Wybrano niepoprawny plik - + You must select at least one file in the torrent Musisz wybrać przynajmniej jeden plik z pliku torrent - + File name Nazwa pliku - + Size Rozmiar - + Progress Postęp - - + + Priority Priorytet diff --git a/src/lang/qbittorrent_pt.qm b/src/lang/qbittorrent_pt.qm index 3575f4caba98c77f4a97da8f7ed2042d6dc0b36b..4dcc84abc001a8d0c80f467744020c893961c8ff 100644 GIT binary patch delta 4440 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 M_ozjt*RO~EAM}YLod5s; delta 4822 zcmYk9dt8m_+Q)xuJ?mNL1BN6dMy8yS$SE}>CFdjwQCjGrW=bbyp(s=+Vi;rOR3S4O zqJ*IgId3wv%{vE%F>J#gX11*vyua1`e%{agu|D5t-Rpkt`#N9ODy@_L^`*3-tt}5g ze;{NGIT9#!0pwx8v4w!fALuoYJWS>SZdt&tD}0^^42TvCn+ABA0qbMI@(V!V9$=m$ z5WE8Dy<2c?9a#^|@&U&GgZGe=Nn2?oFvY&G9GI33xC|E@l?+7K*Gqw!`9M(&l&8<} z;#GoSS&)9R3-k=CeVIJi1l2VaFfIeCe{KLA6QO$c4KGV1_FKjTWCZ7 zcf>+ewBWiz!Hs2tWnO}3n<39T#S30R-X#NlmkIX2Bp5wFu&_X|TqAh=vS5QOc%=dI zzGh%&9pnRZY`|%5IB}E(*_oESTkCxu~D@Nyx ze+nEpfWQ*^2IYdmT@mDcm!>W!?~&KZpU9WwePEz7g1t8b>)&ErHu;eOleWe1;C{uk zl+HHKj+op;xf9l7%B(j)+%tq`uLYFX5qkM7Fk?T$*6yXpE+QTv=vbySR#-=zU}DaJK*1Nzk|!q0SO9&Aw*ZLJ5ql!6VX6nlF2r@;dh``4!fu}2ig z#EbAK<-6nLYmp`aDIMTUNkqEmh`y z{1BLHQf_%kO@}@foHkZj*>sMkY@@6RVmaC5sJuSzIgqJUHpMWzHG`CQV_0fZZz*3j z&=ty0Bvsgbma6rVA&Kj*{iI&1^}wJE$>te$5SZUhYGK7}$vcUf>1Ap7On=s>DS}_# zk^HW(=8fAexNeXXFpJ;Ess-2Fmco}Y24-la@GVZj-e75F3N6vKuQc9?h)@JA%@!A@ztil&=}y4$qKE z><49JNIN2Fk@G64Y+@B)sgsWP;l+#Vr5o-!ES{&OMhJ}(9B)=c@1val&m6e@gwSTBOQ1~CfCtr22_g=bS zreLT-aBUyKv#zSs(M+>eL8>!R695mJsy@>d*pQ?;AA1()yt0J`tg8_V=eiZYRy!-h z+Z1=!INKt6$n64#0{i>O19ofzLW|^qC2v@sPRb+3(U5^#p-X@~_Vaog_zS^; zYjRjIt4By1!B`i;qa$Q%zW~7BTTZN@owh~E9~PAZotov$q((NfRoRoW0!2 zvefl~yvp$vu;r4R*JAh`a=yJ2g(>9id0T-|^@3p@f(26qPgM)n50rPU&HV0`5w!X<7WBB(gVQSp9RkzlD`dL zHR!op{$)oqurx;9CY_FI|3vLHfrg&cC|LMhux7eoL$tbM=}o|}Q{AhUnmT=_?thGy z$f#5g`uP)Ns3jKu9_pnT>@z{H z)p^UABD)gR>u(KWm9eOgOgu$-%GC{Zag4n0)Hi-`0#+|k-~6FBuwuIUhvht1`Iq{E zCq0$xD0nJM{aZ>p@XlcM^Y%XhqqEh`^H;JlCTf&kjNGi@8q4_(r@v8>_&aE`b>uPw>LQP7W#jL;61dlsuQXQ7D!wu4; z_MZ=Y8lp)nqrxYfG}#r+G>D^Sor5Q^XqqPf+7=dzT+Jqlp5G&DHv2xJCybwKb`?Da z>gH>9zl@~?;xvbyDbV!Cn$MKQtgrnA3$is;vm!Yn4As;vXU=-G(%k6I_nezF-`h3x z?Ven}t2B2uP#U3P`7|DW2{zfWe_Y^Uw)SP1O6ukHQ9mIMqg z(vEaZWJ`y3WcfH?K|jID&RTz)U1Otmls!f>{Ip}M_+rYZ+7J_G6X}>XJzpEKjsZra9k)F`q@d#64Q2;Z*#tu~XE>ZpCOl>&ss=%g+Z4=T{9*U?2^ zJkY5(U*s^5E|~wBV70s833N^veR_4 z67;OU4|S1iZc>n1!TcwJWtRl2V+1e1(xpCPl5D$W(`BrxWP^y)W%(>-L4T%O{+1Vh zm7>cXMqeji&{f`Tq%T8swFl1uQQzv$R;93>JkZ^V`JPiuq3)@wiS!Nq)f1k~Mvfk~hzQ8BD^#P95 zz%X1N{;kX@B33_hCofvOKyTe=W#?I^pZ}%XKbA%TPyeN_KK2QRiE@3@eVW=SOMkyGi0S%o!Hd`Q|GM2kK}rnR zokPJb2IV#d)3?|l9XiFa>1%^7lL~C`G?<_AzU~hV4jYd!|Ccu!I(6a&fzJdZ_6S-J z3w~N9cxt%8tt&M${c7--NehMcG7KEddCU@T2<)|;L%~r)@Lsy^XtH6Pk{S;Cw_)b|@ zoFS}W!4nPp?)fttt{P4}s$vZ24W~K{r!O}e>bEirhOaQ359fGPy+iQIaKq(U3xLK) zh9B#F8AAbvm--sIVvgbM<5Z^YV56n?M=Wp^MrYYJiW6y)(f1k;xY*M;(!vY1nMVJR zCme_R8UrTLXStJ%fkjN4c2>a+WyZ;RW=Hr_V@Mb^ozo~-S8j}mr)KLzj32Jz{*_I} zlxaOVVqYSEqJ`s(Y141f^pY{7BV%M?q%p^qa}|g=Y|LAjO-)W3H~BfS2lWz+|I@go z%|Z5tJmcZ0_ch#zlxYWk)P$AyX?1RKYgnpe}JXFScV z^QduVwAr~!C6M^Q?CnN@XWTLeZZG6N@&BWzZofIWGff^HQ#`Acv(5LgdFq$Wbj@9J zMA8863p8gw^kQ#%XwF;B9^!k?Tr{^WlfY`;q|TyC+ncwg#&K@yVcs9i{VRjbRU;Uq z8=K5k2O?>RVdmOlG|WbC^X0d%nT_4d5B~8EL*h^K^924r_Obbe7Y!Bqv-z#{HM7yL z!J?_?#Th=!Vkx-KKO5UE?TxgQ!@HIik3{8LdR&iTh}^NfS4Ke-&RB+Q{hcmfX9@g# z6;Kvs3ICP?=|@{^;ctNzTIvT)gx#;mBLtu>M^5foYu1hS}wnQ=HOqQG3k2x{# zvpiVvyE{koPwWqDf(HdZ_p|&`Sk6D<+bsVXO%M1@i3P5WsoK_hg=>eW7==`PfCMDL z1#`(*e8?4Raa3@};shTjg}zuZ-yw)U#v&Pa$q&dRZcQbl_;EpE%gZq>JFHlQ7hH{P zS+nxjXzq$dM$6v2#lLkN>8hn!q2{M!XmV6y$~5AekpUNVnI4&`@`mK7I1#qt-oze|lii20j7AGBN=MIoa2j$J6bxOPqL zdL|;CPeS+ Transfer lists double-click qBittorrent will watch a directory and automatically download torrents present in it - Duplo clique na lista de transferência + Duplo clique na lista de transferência qBittorrent irá procurar no diretório e baixará automaticamente torrents present @@ -910,6 +910,11 @@ qBittorrent irá procurar no diretório e baixará automaticamente torrents pres Spoof µtorrent to avoid ban (requires restart) + + Transfer lists double-click action + Action executed when doucle-clicking on an item in transfer (download/upload) list + + DownloadingTorrents @@ -2252,7 +2257,7 @@ Deseja mesmo sair do qBittorrent? <b>News:</b> <i>(double-click to open the link in your web browser)</i> - <b>Info:</b> <i>(clique-duplo para abrir o link no seu browser)</i> + <b>Info:</b> <i>(clique-duplo para abrir o link no seu browser)</i> Add RSS stream @@ -2274,6 +2279,22 @@ Deseja mesmo sair do qBittorrent? Mark all as read Marcar todos como lido + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Torrents:</span> <span style=" font-style:italic;">(double-click to download)</span></p></body></html> + + + + Download torrent + + + + Open news URL + + RSSImp @@ -2729,7 +2750,7 @@ Log de mudanças: Download in correct order (slower but good for previewing) - Baixar em ordem (lento mas bom para pré-visualizar) + Baixar em ordem (lento mas bom para pré-visualizar) Add to download list in paused state @@ -2775,6 +2796,22 @@ Log de mudanças: Expand all Expandir todos + + Torrent size: + + + + Unknown + Desconhecido + + + Free disk space: + + + + Download in sequential order (slower but good for previewing) + + authentication @@ -2903,6 +2940,10 @@ Log de mudanças: e.g: Downloading 'xxx.torrent', please wait... baixando '%1', por favor espere... + + '%1' is not a valid magnet URI. + + createTorrentDialog @@ -3300,6 +3341,10 @@ Log de mudanças: Force recheck Forçar re-checagem + + Copy magnet link + + engineSelect @@ -4218,6 +4263,10 @@ Portanto os plugins foram desabilitados. Force recheck Forçar re-checagem + + Copy magnet link + + subDownloadThread @@ -4332,5 +4381,19 @@ Portanto os plugins foram desabilitados. Priority Prioridade + + Unknown + Desconhecido + + + (%1 left after torrent download) + e.g. (100MiB left after torrent download) + + + + (%1 more are required to download) + e.g. (100MiB more are required to download) + + diff --git a/src/lang/qbittorrent_pt_BR.qm b/src/lang/qbittorrent_pt_BR.qm index 3575f4caba98c77f4a97da8f7ed2042d6dc0b36b..4dcc84abc001a8d0c80f467744020c893961c8ff 100644 GIT binary patch delta 4440 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 M_ozjt*RO~EAM}YLod5s; delta 4822 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 Transfer lists double-click qBittorrent will watch a directory and automatically download torrents present in it - Duplo clique na lista de transferência + Duplo clique na lista de transferência qBittorrent irá procurar no diretório e baixará automaticamente torrents present @@ -910,6 +910,11 @@ qBittorrent irá procurar no diretório e baixará automaticamente torrents pres Spoof µtorrent to avoid ban (requires restart) + + Transfer lists double-click action + Action executed when doucle-clicking on an item in transfer (download/upload) list + + DownloadingTorrents @@ -2252,7 +2257,7 @@ Deseja mesmo sair do qBittorrent? <b>News:</b> <i>(double-click to open the link in your web browser)</i> - <b>Info:</b> <i>(clique-duplo para abrir o link no seu browser)</i> + <b>Info:</b> <i>(clique-duplo para abrir o link no seu browser)</i> Add RSS stream @@ -2274,6 +2279,22 @@ Deseja mesmo sair do qBittorrent? Mark all as read Marcar todos como lido + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Torrents:</span> <span style=" font-style:italic;">(double-click to download)</span></p></body></html> + + + + Download torrent + + + + Open news URL + + RSSImp @@ -2729,7 +2750,7 @@ Log de mudanças: Download in correct order (slower but good for previewing) - Baixar em ordem (lento mas bom para pré-visualizar) + Baixar em ordem (lento mas bom para pré-visualizar) Add to download list in paused state @@ -2775,6 +2796,22 @@ Log de mudanças: Expand all Expandir todos + + Torrent size: + + + + Unknown + Desconhecido + + + Free disk space: + + + + Download in sequential order (slower but good for previewing) + + authentication @@ -2903,6 +2940,10 @@ Log de mudanças: e.g: Downloading 'xxx.torrent', please wait... baixando '%1', por favor espere... + + '%1' is not a valid magnet URI. + + createTorrentDialog @@ -3300,6 +3341,10 @@ Log de mudanças: Force recheck Forçar re-checagem + + Copy magnet link + + engineSelect @@ -4218,6 +4263,10 @@ Portanto os plugins foram desabilitados. Force recheck Forçar re-checagem + + Copy magnet link + + subDownloadThread @@ -4332,5 +4381,19 @@ Portanto os plugins foram desabilitados. Priority Prioridade + + Unknown + Desconhecido + + + (%1 left after torrent download) + e.g. (100MiB left after torrent download) + + + + (%1 more are required to download) + e.g. (100MiB more are required to download) + + diff --git a/src/lang/qbittorrent_ro.qm b/src/lang/qbittorrent_ro.qm index b194bda9d05bf44ab2043219de95f39d3d7b85b1..43629b7757f1763ea14e85765c0182eab73946d5 100644 GIT binary patch delta 4436 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 rO3h4*U*tZ@Bhkm^8FQp_gE+h_j+w$6F8 diff --git a/src/lang/qbittorrent_ro.ts b/src/lang/qbittorrent_ro.ts index 25d04d0f50..28bdfd40d6 100644 --- a/src/lang/qbittorrent_ro.ts +++ b/src/lang/qbittorrent_ro.ts @@ -657,7 +657,7 @@ p, li { white-space: pre-wrap; } Transfer lists double-click qBittorrent will watch a directory and automatically download torrents present in it - Lista cu transferuri dublu-click + Lista cu transferuri dublu-click qBittorrent va monitoriza directoriul și va adăuga în lista de descărcare a torentelor din directoriu @@ -918,6 +918,11 @@ qBittorrent va monitoriza directoriul și va adăuga în lista de descărcare a Spoof µtorrent to avoid ban (requires restart) + + Transfer lists double-click action + Action executed when doucle-clicking on an item in transfer (download/upload) list + + DownloadingTorrents @@ -2181,7 +2186,7 @@ Motivul : %2 <b>News:</b> <i>(double-click to open the link in your web browser)</i> - <b>Noutăţi:</b> <i>(dubli click pentru a deschide)</i> + <b>Noutăţi:</b> <i>(dubli click pentru a deschide)</i> Add RSS stream @@ -2203,6 +2208,22 @@ Motivul : %2 Mark all as read Marchează toate ca citite + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Torrents:</span> <span style=" font-style:italic;">(double-click to download)</span></p></body></html> + + + + Download torrent + + + + Open news URL + + RSSImp @@ -2568,7 +2589,7 @@ Changelog: Download in correct order (slower but good for previewing) - Descarcă în ordine corectă (mai încet dar bun pentru preview) + Descarcă în ordine corectă (mai încet dar bun pentru preview) Add to download list in paused state @@ -2614,6 +2635,22 @@ Changelog: Expand all Deschide toate + + Torrent size: + + + + Unknown + Necunoscut + + + Free disk space: + + + + Download in sequential order (slower but good for previewing) + + authentication @@ -2742,6 +2779,10 @@ Changelog: e.g: Downloading 'xxx.torrent', please wait... Descarc '%1', vă rugăm să aşteptaţi... + + '%1' is not a valid magnet URI. + + createTorrentDialog @@ -3139,6 +3180,10 @@ Changelog: Force recheck Reverificarea forţată + + Copy magnet link + + engineSelect @@ -4065,6 +4110,10 @@ Numai acele adăugate de dvs. pot fi dezinstalate. Force recheck Reverificarea forţată + + Copy magnet link + + subDownloadThread @@ -4179,5 +4228,19 @@ Numai acele adăugate de dvs. pot fi dezinstalate. Priority Prioritate + + Unknown + Necunoscut + + + (%1 left after torrent download) + e.g. (100MiB left after torrent download) + + + + (%1 more are required to download) + e.g. (100MiB more are required to download) + + diff --git a/src/lang/qbittorrent_ru.qm b/src/lang/qbittorrent_ru.qm index 5050ca50d857e0e22da9d2c89e6f3c30e1a55602..caf2d8dbaaa526861997573b04269b933502ab08 100644 GIT binary patch delta 4422 zcmXY!c|eWn9>>4uyyrdpV$EK*>}%P#B9UaNQIbNGEYT3kdZH|GWGVY(NeGG2Rg_2z ziLoWixR;S-FveVQxzh~YZ=U-ZgB+JxObdJ1{;LXu-v6IP?n;Q1e0<5NHFo)`jw7Avazn=(ilwvl@f) zp*p;n@7#y#rV8--4XTHmfrcNU`r`rM;~^NG>a^^K3v>sAh6*B5;o#sS41aKD!VxaPvWf)U-fMa(se7iey zgQL74J#Fyl^^~DbB`e5l< zn-~w&jYf3LTp;cac5GJxmciKBpYf{Wip;~@(7Ouf?$eOtO_A5G7)VXR(`6E?b;+hcTi@^e&O><24OY*AP&Wq{5>(R^?mA0#Q7msSBQ9w=ILJqMVUD!k-Y zjNc4}S9wd;O)Z6gelym=A;s36MSydtVBxQd)J{%}x2xjFrYK;BRgpEa9xygXFu^QX z@K}*;84ax4p*Z*80+lr6lHx|$V8COWqI~u$dbUV$&z;guAFHTnzl*ifNAdc|INX<|voKQmXE9TutddlI&)K1# zO8No+W+!?t86x<+%~+|URkaD|eOv18mkvx%6+D_G^@^Z}dS7W^pc_NJSMcI{$>paJ z6k$Wb4UpV}_dmMQpSU1@V2Y9eEtw7q7b=rL0A zBu1vFvy?U_6R0&?I@_5WFF7OKZXZX(`bn<`uLV?b(jN|Ofzj`zKgXm1XG|)&l<#*; zwW`|OPGyd_sJc2X0Tw@2^&b2ISUX=eFq;N7`c36Gq6@HnplX794L_;^yerr}{;i5! z#`lhYRarF`fSoa_l?VSx4UAN+^<^YaxvFd@rvi%hs+}XwGqQ68XW9f8rwXpIZW0%V zR;hl-Rsr$$f)@)_DQPUf{(0mvV1P!Il0FF77Nbf_%V*R7tU8|XiT6LN(mNfZr{#j< z6oT2~+)wWaR2al#0D^x{`9f8f=RF`KKuzc;q#l;4z;HAEaU)1(W|CWi( zH1^g2JGs7lKj83sxkqvmFwQ3T-2Rnq>XJOzi-GijJXFUxG!jd0USH&GO~N5v81G&1LHr3gE0!j*SUrcW7BH zuWtA!u;ZS*t|stNA+oJzAo+fl_pI9qxCaUPbrsxbFL-{xU_qdKU`-ql6DOxjY-1_$ z^67kT=%p20-&inzu3Q{KMYR21zBZMTZQM`3EmyERG-@K>UUnQ)6{S3im2vXa00MRz7@O|jtl z8S3|uQEcy@)RhgM0mI&@tHM@M;5v=cnZjK@MPn+VZmdah8arQ4AjeVD_yq-*_PwUN zfg3FK(ez25%tWl#j9SwJaDZn1h8!AjQWIHc3EOZt!K~Gqg?1}A=sYzGox*_qEi{Wb z^pR7ki9J@ufM;no*mVaYD>b&8JJ>7!)+9+x{K1`?ZG&D@2_~K9z}7cF?gGuh&oe2# z`w*SXy4~928^LP$wA@***f(GrY3WWPQC3a4{>(|ZSw@r z>=!IOt*h!Fr3ntKW99fbk{#m z@L;d#DOh6E|8}pKiu=WYgK;d{wa*R8-3k_`y+Jy0foG$?4Z6iNbJHh-`5iZOtTxzf zInD0)(9pCgH}D7)3`h_RZ6LURz2NzFhITFJka>=wYaqiguCt+MA1BUTi(z=jJuKQG z2G2vxPv&n1FJ%IYc7V6RyZR{m`y4}1lqb(lPKL>gXvm&l40CEWG|VtWFQoKzD-26V z)1VcehULS_1{#C4Jw2T=#t_$+?aA}9;c$f;rJi9p_d1jJOAHs94rD3l4MjUC^?`2< zm;Ebw7ON$At&ib)&ev zBaMS@a)B$;j6*EkP+M$t^LfiTk!*Ay%apBE7>93VZP;l9H-{O$^(+DZDx;4dQ#r*Z zIMYioH=VTd!Sy&}z-)TDsjYF|YA&#12Ys=9TL3`uf$@Fl{G2_1qB#!DV!O=m+iWTdD)i;gr>cvx(;l?lBUb9bz zo1}E+HnqM`kKuA8bO57)O7qArr?XI^~A?K67)7XCKPgF_zK3wn|hUh<-~Yu z8uX$o;Fn^udUUMwk8-x9ZKmVK1;FWCQ&GtPYUr6@g9oM?pXup$6HR4v>vK{#neIER z0Op=IJ*dN@!7)2maZ$3!RJDd7z0k#6dmTMq>}a-k$l!~k&Ar;u;)$os!}lbxKXw=F z{?Y8&j3E#HXJSw-2dkag_mVv@r-wNpq6fdx)69#1b>$!^(f&OAPeVd!tp?a#1mes8{B{e_?IC(SSJ z)TJQan=8Zl+-rjQgEPZ4?yb2xl+UfMZ7i0J !VmIg+~$1d0MEfK+;ENyOu@Fe14 zX`4m^!!?$^J3sP+$H_AM$JM}*{TBa6G(^AKV)d`){QA?9aZ5)>3M^N<&ST=+S+2k7 z!~q&*xw#{likWXIi+w`}TUlPr;5t6mZ)}dR2yx@&SIese7W0oIET4uk@Gki?fuA;I zrqoVulX<33L8r_q)3?@5yqw=N({5=8W#X2|4vFPU?J`}L|99%QAF6*fN$m5>-TwjH CV< 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 D{|ao- diff --git a/src/lang/qbittorrent_ru.ts b/src/lang/qbittorrent_ru.ts index 864d000a48..ab380a043e 100644 --- a/src/lang/qbittorrent_ru.ts +++ b/src/lang/qbittorrent_ru.ts @@ -704,7 +704,7 @@ p, li { white-space: pre-wrap; } Transfer lists double-click qBittorrent will watch a directory and automatically download torrents present in it - Двойной щелчок по списку закачек + Двойной щелчок по списку закачек Download list: @@ -964,6 +964,11 @@ p, li { white-space: pre-wrap; } Spoof µtorrent to avoid ban (requires restart) + + Transfer lists double-click action + Action executed when doucle-clicking on an item in transfer (download/upload) list + + DownloadingTorrents @@ -2354,7 +2359,7 @@ Are you sure you want to quit qBittorrent? <b>News:</b> <i>(double-click to open the link in your web browser)</i> - <b>Новости:</b> <i>(двойной клик откроет ссылку в вашем браузере)</i> + <b>Новости:</b> <i>(двойной клик откроет ссылку в вашем браузере)</i> Add RSS stream @@ -2376,6 +2381,22 @@ Are you sure you want to quit qBittorrent? Mark all as read Отметить все как прочитанное + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Torrents:</span> <span style=" font-style:italic;">(double-click to download)</span></p></body></html> + + + + Download torrent + + + + Open news URL + + RSSImp @@ -2753,7 +2774,7 @@ Changelog: Download in correct order (slower but good for previewing) - Загрузить в правильном порядке (медленнее, но удобнее для предпросмотра) + Загрузить в правильном порядке (медленнее, но удобнее для предпросмотра) Add to download list in paused state @@ -2803,6 +2824,22 @@ Changelog: Expand all Развернуть все + + Torrent size: + + + + Unknown + Неизвестно + + + Free disk space: + + + + Download in sequential order (slower but good for previewing) + + authentication @@ -2931,6 +2968,10 @@ Changelog: e.g: Downloading 'xxx.torrent', please wait... Скачивание '%1', подождите... + + '%1' is not a valid magnet URI. + + createTorrentDialog @@ -3320,6 +3361,10 @@ Changelog: Force recheck Проверить принудительно + + Copy magnet link + + engineSelect @@ -4275,6 +4320,10 @@ However, those plugins were disabled. Force recheck Проверить принудительно + + Copy magnet link + + subDownloadThread @@ -4389,5 +4438,19 @@ However, those plugins were disabled. Priority Приоритет + + Unknown + Неизвестно + + + (%1 left after torrent download) + e.g. (100MiB left after torrent download) + + + + (%1 more are required to download) + e.g. (100MiB more are required to download) + + diff --git a/src/lang/qbittorrent_sk.qm b/src/lang/qbittorrent_sk.qm index 581babf444914b8fee81d795da0f8d4779871c87..9d2f9e8d3c8d12af887b08b7b2fa070bed5eb4e6 100644 GIT binary patch delta 4398 zcmXY!d0dTY|HnV)oclie^4LN{F~cBP6S7AsWGPytWvC>(CrO4*6eSfBVlWCRQbt1( zl`ZPAPBO*}M&iLNUSk zn9&08=V$g;1xH^7f_Rp7<6hKSTOq6VSF1 z(u+I5fIa zJ>b$V2{_*X_uIL^h-|nwFvPoGU~JOwKtVPT>Zi2NGU5>o+X z6Q*4`2TY#>ztjWNKoR`Xc+Va@eWr{xIMZ`) z!OPCdH8V#711gk>kq?;j-pb_sboPyEWy-Gq0$=1Rx4)&MF8u|4C1p|ldEnE|o0O+K z&A?`@@`l$-V40h;KAd&08K-<0?hpL?{+1(>oz?kgRX@K%Abf{let>G=B08Y^K{Y&R z3?urRU`3f~}-DR&A6Rpef;k5qW|~+p0FT zWXg|BQf>QqP?c(T2pvCHugagyW@xEYo$SSnm+MtGdnC~?7u7S@WI!6IdSTxU@Vc)0 zdvY%Dtx1w=`Mv|B&u{MM{ef9hpROx_*fG)|*H=K&C24pm4QltjgTS+L?ysd82r@UKZy)yzpiZ)fR3TvxWEMN+j*)H$G|R;q4h z$~nQxKepUc+bMl-Zh5D+v-n{VO=f6a^SA8QcC&`6zf`MO zf}7MUmvi2DM5$8}SSep;syE&m1hlGCADdhOtmvV>cxEnz_dRI%P^Qt?KBnLfI%@hEc){}Xn!$ykOoW$a;<^FU(=N@wH=N>}O4mfUT)}2*FL->l zCdMWnh>|ri{Ud=rL7HXx^tbGeCh<@c1D>YYVABs+5~E4GzMVbez9vh>#OH=8CfG|0bLb5yy7^Q=KIb*-i(IE1T03(c7XmTs?V&CM?S zo?V#cezS+e!ZnZnInE}f)-(pvP(`lhX{;NYZ>;8B{#9-O5!x27z1bssXgjvc0Cq`Q z$5)G}gh5K}=&lPn;sOsGU&4FD^cz^)YcrQC-mb zR5Fo1Pqbk+l*~~ssz8S5v)0;i+RS{$iAVAwX)XsPS;tNuPx%77^hn`Yz6!J zFS>*ey!b+(E_o<(z38N_=wU5$Ia^m=cpeB{r#n{?%>fjpyBmI=JIhYp?@~SIK&s&S zaKWk#x|iWyxnP&--q*!*KCaLsfdh8rWWD_4EnqWIZ+^8LxcuCzx9Q&qe0Esh{Zem= z;-=oc9X&DV^Z`H0Tp3pDgTCfPvHALlya={qSs(enJ#ffLAKjfHl%S8Ef0sLvi$3u^ zzwi29pFHz9@JXaT-Jy&gZq;uJVOwiGLZ6uv#tA-7zq>;QurNuV<2!`i#%iz6Kg~Z* zf1xiL(Zn*FFBo}GfArEJ=D3Ug#4;Lqx<+4mVh=4&(APII`4IV)H$8M=3-XQtzZK0%C-_c?>}U@l)4Z-YnAuUOX(hVciOx?}$syp;5C zNOyzxhXPIjiy=66Jon*7L+COZvg3Qhg68}5Hw?>TTv-3w_l7Sg(V{Om8diCbZQdBH zJ?Lr3d_$58JD6vsA+KQ!tD(S9_N;`@9~&w<3}-GM8!lwC8it-VR0nVu`u4qG%}c|T z;5oph%Z8sXjG%^`4R7_Q*qDDZe0UzivYlscj!`;0z*^faVc@YFVA;5>SkHqE$X zE#FUQZ;bYL;6gove8j4{ZCp0}7PaPUT>c5QGS|+Slw`dI%<5!JS&+yM24mJpTmFRn zL2yo~aeK=`s#|F+o;ixU!4hNXg00Nq9pmK_6Zuo4!FaQYh74&k-uiSB7w9R*TcK_o z*0IKW=TscJ!vwv&j1BRroEb*r@2%HUghj@8eVqFvLHdjq)p7s1qGr@G&xD@#2f$75KVcf)%1#P}FU3*K z-D%0~A^*1ErT(U-b&T*C$=o7^5m=UOwzDq+=3O)o>`n)!Z*6Dx_$q@xgx3l7buy3d z$P|P=+YT%_XkXY(|Z_{-$={MS|`_m_8!{6GF@7)1a8 delta 4789 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 Transfer lists double-click qBittorrent will watch a directory and automatically download torrents present in it - Dvojité kliknutie v zozname prenosov + Dvojité kliknutie v zozname prenosov Download list: @@ -925,6 +925,11 @@ p, li { white-space: pre-wrap; } Spoof µtorrent to avoid ban (requires restart) + + Transfer lists double-click action + Action executed when doucle-clicking on an item in transfer (download/upload) list + + DownloadingTorrents @@ -2256,7 +2261,7 @@ Ste si istý, že chcete ukončiť qBittorrent? <b>News:</b> <i>(double-click to open the link in your web browser)</i> - <b>Novinky:</b> <i>(dvojitým kliknutím otvoríte odkaz vo webovom prehliadači)</i> + <b>Novinky:</b> <i>(dvojitým kliknutím otvoríte odkaz vo webovom prehliadači)</i> Delete @@ -2290,6 +2295,22 @@ Ste si istý, že chcete ukončiť qBittorrent? Mark all as read Označiť všetky ako prečítané + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Torrents:</span> <span style=" font-style:italic;">(double-click to download)</span></p></body></html> + + + + Download torrent + + + + Open news URL + + RSSImp @@ -2666,7 +2687,7 @@ Záznam zmien: Download in correct order (slower but good for previewing) - Stiahnuť v správnom poradí (pomalšie ale lepšie pre náhľad) + Stiahnuť v správnom poradí (pomalšie ale lepšie pre náhľad) Add to download list in paused state @@ -2720,6 +2741,22 @@ Záznam zmien: Expand all Rozbaliť všetko + + Torrent size: + + + + Unknown + + + + Free disk space: + + + + Download in sequential order (slower but good for previewing) + + authentication @@ -2848,6 +2885,10 @@ Záznam zmien: e.g: Downloading 'xxx.torrent', please wait... Sťahuje sa „%1“, čakajte prosím... + + '%1' is not a valid magnet URI. + + createTorrentDialog @@ -3249,6 +3290,10 @@ Záznam zmien: Force recheck Vynútiť opätovnú kontrolu + + Copy magnet link + + engineSelect @@ -4243,6 +4288,10 @@ Tieto moduly však boli vypnuté. Force recheck Vynútiť opätovnú kontrolu + + Copy magnet link + + subDownloadThread @@ -4357,5 +4406,19 @@ Tieto moduly však boli vypnuté. Priority Priorita + + Unknown + + + + (%1 left after torrent download) + e.g. (100MiB left after torrent download) + + + + (%1 more are required to download) + e.g. (100MiB more are required to download) + + diff --git a/src/lang/qbittorrent_sv.qm b/src/lang/qbittorrent_sv.qm index f6e10c525531b70d13fbbc3e42e14a7010698188..4f36aeacfc57e039179ca8537dd89d164d7b9f7e 100644 GIT binary patch delta 4362 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 S-Ld>icE3e7)`G>R@c#gH$Aq5% diff --git a/src/lang/qbittorrent_sv.ts b/src/lang/qbittorrent_sv.ts index 02823036bb..3666905afe 100644 --- a/src/lang/qbittorrent_sv.ts +++ b/src/lang/qbittorrent_sv.ts @@ -339,7 +339,7 @@ p, li { white-space: pre-wrap; } Transfer lists double-click qBittorrent will watch a directory and automatically download torrents present in it - Dubbelklick i överföringslistan + Dubbelklick i överföringslistan Download list: @@ -607,6 +607,11 @@ p, li { white-space: pre-wrap; } Spoof µtorrent to avoid ban (requires restart) Simulera µtorrent för att undvika bannlysning (kräver omstart) + + Transfer lists double-click action + Action executed when doucle-clicking on an item in transfer (download/upload) list + + DownloadingTorrents @@ -1175,7 +1180,7 @@ Are you sure you want to quit qBittorrent? <b>News:</b> <i>(double-click to open the link in your web browser)</i> - <b>Nyheter:</b> <i>(dubbelklicka för att öppna länken i din webbläsare)</i> + <b>Nyheter:</b> <i>(dubbelklicka för att öppna länken i din webbläsare)</i> Add RSS stream @@ -1197,6 +1202,22 @@ Are you sure you want to quit qBittorrent? Mark all as read Markera alla som lästa + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Torrents:</span> <span style=" font-style:italic;">(double-click to download)</span></p></body></html> + + + + Download torrent + + + + Open news URL + + RSSImp @@ -1421,7 +1442,7 @@ Are you sure you want to quit qBittorrent? Download in correct order (slower but good for previewing) - Hämta i korrekt ordning (långsammare men bra för förhandsvisning) + Hämta i korrekt ordning (långsammare men bra för förhandsvisning) Add to download list in paused state @@ -1463,6 +1484,22 @@ Are you sure you want to quit qBittorrent? Expand all Fäll ut alla + + Torrent size: + + + + Unknown + + + + Free disk space: + + + + Download in sequential order (slower but good for previewing) + + authentication @@ -1591,6 +1628,10 @@ Are you sure you want to quit qBittorrent? e.g: Downloading 'xxx.torrent', please wait... Hämtar "%1", vänta... + + '%1' is not a valid magnet URI. + + createTorrentDialog @@ -1876,6 +1917,10 @@ Are you sure you want to quit qBittorrent? Force recheck Tvinga återkontroll + + Copy magnet link + + engineSelect @@ -2503,6 +2548,10 @@ Dock har dessa insticksmoduler blivit inaktiverade. Force recheck Tvinga återkontroll + + Copy magnet link + + subDownloadThread @@ -2597,5 +2646,19 @@ Dock har dessa insticksmoduler blivit inaktiverade. Priority Prioritet + + Unknown + + + + (%1 left after torrent download) + e.g. (100MiB left after torrent download) + + + + (%1 more are required to download) + e.g. (100MiB more are required to download) + + diff --git a/src/lang/qbittorrent_tr.qm b/src/lang/qbittorrent_tr.qm index 12e141797e46e02e9e00c8f45d9ec7640a48210b..680d4162f463acded103fcb1db7ee79e5c001b7e 100644 GIT binary patch delta 4450 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 D_h}*P delta 4819 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 diff --git a/src/lang/qbittorrent_tr.ts b/src/lang/qbittorrent_tr.ts index 78c9c95634..c5fab2d9ed 100644 --- a/src/lang/qbittorrent_tr.ts +++ b/src/lang/qbittorrent_tr.ts @@ -690,7 +690,7 @@ p, li { white-space: pre-wrap; } Transfer lists double-click qBittorrent will watch a directory and automatically download torrents present in it - Aktarım listesinde çift-tıklamada yapılacak + Aktarım listesinde çift-tıklamada yapılacak Download list: @@ -950,6 +950,11 @@ p, li { white-space: pre-wrap; } Spoof µtorrent to avoid ban (requires restart) + + Transfer lists double-click action + Action executed when doucle-clicking on an item in transfer (download/upload) list + + DownloadingTorrents @@ -2340,7 +2345,7 @@ qBittorrent'ten çıkmak istediğinize emin misiniz? <b>News:</b> <i>(double-click to open the link in your web browser)</i> - <b>Haberler:</b> <i>(bağlantıyı tarayıcınızda açmak için çift tıklayın)</i> + <b>Haberler:</b> <i>(bağlantıyı tarayıcınızda açmak için çift tıklayın)</i> Add RSS stream @@ -2362,6 +2367,22 @@ qBittorrent'ten çıkmak istediğinize emin misiniz? Mark all as read Tümünü okunmuş olarak işaretle + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Torrents:</span> <span style=" font-style:italic;">(double-click to download)</span></p></body></html> + + + + Download torrent + + + + Open news URL + + RSSImp @@ -2735,7 +2756,7 @@ Changelog: Download in correct order (slower but good for previewing) - Doğru düzende indir (yavaş ama önizleme için iyi) + Doğru düzende indir (yavaş ama önizleme için iyi) Add to download list in paused state @@ -2785,6 +2806,22 @@ Changelog: Expand all Tümünü genişlet + + Torrent size: + + + + Unknown + Bilinmeyen + + + Free disk space: + + + + Download in sequential order (slower but good for previewing) + + authentication @@ -2913,6 +2950,10 @@ Changelog: e.g: Downloading 'xxx.torrent', please wait... '%1' indiriliyor, lütfen bekleyin... + + '%1' is not a valid magnet URI. + + createTorrentDialog @@ -3298,6 +3339,10 @@ Changelog: Force recheck Yeniden denetlemeye çalış + + Copy magnet link + + engineSelect @@ -4229,6 +4274,10 @@ Bununla birlikte, o eklentiler devre dışı. Force recheck Yeniden denetlemeye çalış + + Copy magnet link + + subDownloadThread @@ -4343,5 +4392,19 @@ Bununla birlikte, o eklentiler devre dışı. Priority Öncelik + + Unknown + Bilinmeyen + + + (%1 left after torrent download) + e.g. (100MiB left after torrent download) + + + + (%1 more are required to download) + e.g. (100MiB more are required to download) + + diff --git a/src/lang/qbittorrent_uk.qm b/src/lang/qbittorrent_uk.qm index 97fa764396d5bdd605f9dd23dfd04c0b242a661f..7dacca87ee8ef17468595c57fcb0f6563b0c0f8d 100644 GIT binary patch delta 3428 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 delta 3643 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 will watch a directory and automatically download torrents present in it Спостерігати за папкою - - Transfer lists double-click - qBittorrent will watch a directory and automatically download torrents present in it - - Download list: @@ -935,6 +930,11 @@ p, li { white-space: pre-wrap; } Spoof µtorrent to avoid ban (requires restart) + + Transfer lists double-click action + Action executed when doucle-clicking on an item in transfer (download/upload) list + + DownloadingTorrents @@ -2320,7 +2320,7 @@ Are you sure you want to quit qBittorrent? <b>News:</b> <i>(double-click to open the link in your web browser)</i> - <b>Новини:</b> <i>(подвійний клік відкриє посилання у вашому броузері)</i> + <b>Новини:</b> <i>(подвійний клік відкриє посилання у вашому броузері)</i> Add RSS stream @@ -2342,6 +2342,22 @@ Are you sure you want to quit qBittorrent? Mark all as read Позначити всі як прочитані + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Torrents:</span> <span style=" font-style:italic;">(double-click to download)</span></p></body></html> + + + + Download torrent + + + + Open news URL + + RSSImp @@ -2719,7 +2735,7 @@ Changelog: Download in correct order (slower but good for previewing) - Завантажувати в правильному порядку (повільніше, але краще для перегляду) + Завантажувати в правильному порядку (повільніше, але краще для перегляду) Add to download list in paused state @@ -2769,6 +2785,22 @@ Changelog: Expand all + + Torrent size: + + + + Unknown + Невідомо + + + Free disk space: + + + + Download in sequential order (slower but good for previewing) + + authentication @@ -2897,6 +2929,10 @@ Changelog: e.g: Downloading 'xxx.torrent', please wait... + + '%1' is not a valid magnet URI. + + createTorrentDialog @@ -3294,6 +3330,10 @@ Changelog: Force recheck + + Copy magnet link + + engineSelect @@ -4227,6 +4267,10 @@ However, those plugins were disabled. Force recheck + + Copy magnet link + + subDownloadThread @@ -4341,5 +4385,19 @@ However, those plugins were disabled. Priority Пріоритет + + Unknown + Невідомо + + + (%1 left after torrent download) + e.g. (100MiB left after torrent download) + + + + (%1 more are required to download) + e.g. (100MiB more are required to download) + + diff --git a/src/lang/qbittorrent_zh.qm b/src/lang/qbittorrent_zh.qm index 8456e95d1f66428d0118f2ad2626b984be0750dd..a2407ea0f61066f1da1f4ef2f123abe8d278043b 100644 GIT binary patch delta 4341 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 h+4% Transfer lists double-click qBittorrent will watch a directory and automatically download torrents present in it - 双击传输列表显示活动 + 双击传输列表显示活动 Download list: @@ -997,6 +997,11 @@ folder: Spoof µtorrent to avoid ban (requires restart) 假借µtorrent名义避免被阻止(需重启) + + Transfer lists double-click action + Action executed when doucle-clicking on an item in transfer (download/upload) list + + DownloadingTorrents @@ -2506,7 +2511,23 @@ link in your web browser)</i> <b>News:</b> <i>(double-click to open the link in your web browser)</i> - <b>新闻:</b> <i>(双击以连接到网页浏览器)</i> + <b>新闻:</b> <i>(双击以连接到网页浏览器)</i> + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Torrents:</span> <span style=" font-style:italic;">(double-click to download)</span></p></body></html> + + + + Download torrent + + + + Open news URL + @@ -2962,7 +2983,7 @@ previewing) Download in correct order (slower but good for previewing) - 按递增顺序下载(速度会有所减慢但利于预览) + 按递增顺序下载(速度会有所减慢但利于预览) Collapse all @@ -2976,6 +2997,22 @@ previewing) Expand all 展开所有 + + Torrent size: + + + + Unknown + + + + Free disk space: + + + + Download in sequential order (slower but good for previewing) + + authentication @@ -3104,6 +3141,10 @@ previewing) e.g: Downloading 'xxx.torrent', please wait... '%1'下载中,请等待... + + '%1' is not a valid magnet URI. + + createTorrentDialog @@ -3502,6 +3543,10 @@ enabled) Force recheck 强制再次核对 + + Copy magnet link + + engineSelect @@ -4528,6 +4573,10 @@ network. Force recheck 强制再次核对 + + Copy magnet link + + subDownloadThread @@ -4647,5 +4696,19 @@ torrent. This file is either corrupted or this isn't a torrent. 该文件不是torrent文件或已经损坏. + + Unknown + + + + (%1 left after torrent download) + e.g. (100MiB left after torrent download) + + + + (%1 more are required to download) + e.g. (100MiB more are required to download) + + diff --git a/src/lang/qbittorrent_zh_TW.qm b/src/lang/qbittorrent_zh_TW.qm index 4171fe8ccc023e10ee1dcaeada75bfec107c7f4c..2807c00bcb8dccb2973806b2be83a144c50e22ee 100644 GIT binary patch delta 4394 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 diff --git a/src/lang/qbittorrent_zh_TW.ts b/src/lang/qbittorrent_zh_TW.ts index 3f3734b13e..102dd39be6 100644 --- a/src/lang/qbittorrent_zh_TW.ts +++ b/src/lang/qbittorrent_zh_TW.ts @@ -337,7 +337,7 @@ p, li { white-space: pre-wrap; } Transfer lists double-click qBittorrent will watch a directory and automatically download torrents present in it - 雙擊傳輸清單 + 雙擊傳輸清單 Download list: @@ -609,6 +609,11 @@ p, li { white-space: pre-wrap; } Spoof µtorrent to avoid ban (requires restart) 假裝為 µtorrent 以避免被踢出 (需要重新啟動) + + Transfer lists double-click action + Action executed when doucle-clicking on an item in transfer (download/upload) list + + DownloadingTorrents @@ -1264,7 +1269,7 @@ Are you sure you want to quit qBittorrent? <b>News:</b> <i>(double-click to open the link in your web browser)</i> - <b>新聞:</b> <i>(雙擊連結從網路瀏覽器打開)</i> + <b>新聞:</b> <i>(雙擊連結從網路瀏覽器打開)</i> Add RSS stream @@ -1286,6 +1291,22 @@ Are you sure you want to quit qBittorrent? Mark all as read 全部標記為已讀 + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Torrents:</span> <span style=" font-style:italic;">(double-click to download)</span></p></body></html> + + + + Download torrent + + + + Open news URL + + RSSImp @@ -1510,7 +1531,7 @@ Are you sure you want to quit qBittorrent? Download in correct order (slower but good for previewing) - 按照順序下載 (較慢但較好預覽) + 按照順序下載 (較慢但較好預覽) Add to download list in paused state @@ -1552,6 +1573,22 @@ Are you sure you want to quit qBittorrent? Expand all 全部展開 + + Torrent size: + + + + Unknown + 未知 + + + Free disk space: + + + + Download in sequential order (slower but good for previewing) + + authentication @@ -1680,6 +1717,10 @@ Are you sure you want to quit qBittorrent? e.g: Downloading 'xxx.torrent', please wait... 下載 '%1' 中, 請稍候... + + '%1' is not a valid magnet URI. + + createTorrentDialog @@ -1977,6 +2018,10 @@ Are you sure you want to quit qBittorrent? Force recheck 強迫重新檢查 + + Copy magnet link + + engineSelect @@ -2612,6 +2657,10 @@ However, those plugins were disabled. Force recheck 強迫重新檢查 + + Copy magnet link + + subDownloadThread @@ -2706,5 +2755,19 @@ However, those plugins were disabled. Priority 優先度 + + Unknown + 未知 + + + (%1 left after torrent download) + e.g. (100MiB left after torrent download) + + + + (%1 more are required to download) + e.g. (100MiB more are required to download) + + diff --git a/src/misc.h b/src/misc.h index f4e9b93c6e..7ab5bf4fdb 100644 --- a/src/misc.h +++ b/src/misc.h @@ -103,7 +103,7 @@ class misc : public QObject{ #ifndef Q_WS_WIN unsigned long long available; struct statfs stats; - int ret = statfs ((path+"/.").toUtf8().data(), &stats) ; + int ret = statfs ((path+"/.").toLocal8Bit().data(), &stats) ; if(ret == 0) { available = ((unsigned long long)stats.f_bavail) * ((unsigned long long)stats.f_bsize) ; @@ -293,7 +293,7 @@ class misc : public QObject{ sha1.assign(base32decode(reg.cap(1).toStdString())); hash = misc::toQString(sha1); } - qDebug("magnetUriToHash: hash: %s", hash.toUtf8().data()); + qDebug("magnetUriToHash: hash: %s", hash.toLocal8Bit().data()); return hash; } diff --git a/src/options.ui b/src/options.ui index ae3abbf391..41a940ec82 100644 --- a/src/options.ui +++ b/src/options.ui @@ -2550,7 +2550,7 @@ 9999 - 50 + 100 diff --git a/src/properties_imp.cpp b/src/properties_imp.cpp index 978f60db21..8323a2f4ae 100644 --- a/src/properties_imp.cpp +++ b/src/properties_imp.cpp @@ -53,12 +53,12 @@ properties::properties(QWidget *parent, bittorrent *BTSession, QTorrentHandle &h setupUi(this); lbl_priorities->setText(tr("Priorities:")+"
  • "+tr("Ignored: file is not downloaded at all")+"
  • "+tr("Normal: normal priority. Download order is dependent on availability")+"
  • "+tr("High: higher than normal priority. Pieces are preferred over pieces with the same availability, but not over pieces with lower availability")+"
  • "+tr("Maximum: maximum priority, availability is disregarded, the piece is preferred over any other piece with lower priority")+"
"); // set icons - addTracker_button->setIcon(QIcon(QString::fromUtf8(":/Icons/skin/add.png"))); - removeTracker_button->setIcon(QIcon(QString::fromUtf8(":/Icons/skin/remove.png"))); + addTracker_button->setIcon(QIcon(QString::fromUtf8(":/Icons/oxygen/list-add.png"))); + removeTracker_button->setIcon(QIcon(QString::fromUtf8(":/Icons/oxygen/list-remove.png"))); lowerTracker_button->setIcon(QIcon(QString::fromUtf8(":/Icons/downarrow.png"))); riseTracker_button->setIcon(QIcon(QString::fromUtf8(":/Icons/uparrow.png"))); - addWS_button->setIcon(QIcon(QString::fromUtf8(":/Icons/skin/add.png"))); - deleteWS_button->setIcon(QIcon(QString::fromUtf8(":/Icons/skin/remove.png"))); + addWS_button->setIcon(QIcon(QString::fromUtf8(":/Icons/oxygen/list-add.png"))); + deleteWS_button->setIcon(QIcon(QString::fromUtf8(":/Icons/oxygen/list-remove.png"))); setAttribute(Qt::WA_DeleteOnClose); // Set Properties list model PropListModel = new QStandardItemModel(0,5); diff --git a/src/rss.h b/src/rss.h index 3c79e8af82..9f85eb8cca 100644 --- a/src/rss.h +++ b/src/rss.h @@ -45,6 +45,8 @@ #include #include "misc.h" +#include "FeedDownloader.h" +#include "bittorrent.h" #include "downloadThread.h" class RssManager; @@ -52,800 +54,874 @@ class RssStream; class RssItem; static const char shortDay[][4] = { - "Mon", "Tue", "Wed", - "Thu", "Fri", "Sat", - "Sun" + "Mon", "Tue", "Wed", + "Thu", "Fri", "Sat", + "Sun" }; static const char longDay[][10] = { - "Monday", "Tuesday", "Wednesday", - "Thursday", "Friday", "Saturday", - "Sunday" + "Monday", "Tuesday", "Wednesday", + "Thursday", "Friday", "Saturday", + "Sunday" }; static const char shortMonth[][4] = { - "Jan", "Feb", "Mar", "Apr", - "May", "Jun", "Jul", "Aug", - "Sep", "Oct", "Nov", "Dec" + "Jan", "Feb", "Mar", "Apr", + "May", "Jun", "Jul", "Aug", + "Sep", "Oct", "Nov", "Dec" }; static const char longMonth[][10] = { - "January", "February", "March", - "April", "May", "June", - "July", "August", "September", - "October", "November", "December" + "January", "February", "March", + "April", "May", "June", + "July", "August", "September", + "October", "November", "December" }; // Item of a rss stream, single information class RssItem : public QObject { Q_OBJECT - private: - - QString title; - QString link; - QString description; - QString image; - QString author; - QDateTime date; - QString hash; - bool read; - QString downloadLink; - - protected: - // Ported to Qt4 from KDElibs4 - QDateTime parseDate(const QString &string) { - QString str = string.trimmed(); - if (str.isEmpty()) - return QDateTime(); - - int nyear = 6; // indexes within string to values - int nmonth = 4; - int nday = 2; - int nwday = 1; - int nhour = 7; - int nmin = 8; - int nsec = 9; - // Also accept obsolete form "Weekday, DD-Mon-YY HH:MM:SS ±hhmm" - QRegExp rx("^(?:([A-Z][a-z]+),\\s*)?(\\d{1,2})(\\s+|-)([^-\\s]+)(\\s+|-)(\\d{2,4})\\s+(\\d\\d):(\\d\\d)(?::(\\d\\d))?\\s+(\\S+)$"); - QStringList parts; - if (!str.indexOf(rx)) { - // Check that if date has '-' separators, both separators are '-'. +private: + + QString title; + QString torrent_url; + QString news_link; + QString description; + QDateTime date; + QString author; + QString hash; + + + bool is_valid; + bool read; + +protected: + // Ported to Qt4 from KDElibs4 + QDateTime parseDate(const QString &string) { + QString str = string.trimmed(); + if (str.isEmpty()) + return QDateTime(); + + int nyear = 6; // indexes within string to values + int nmonth = 4; + int nday = 2; + int nwday = 1; + int nhour = 7; + int nmin = 8; + int nsec = 9; + // Also accept obsolete form "Weekday, DD-Mon-YY HH:MM:SS ±hhmm" + QRegExp rx("^(?:([A-Z][a-z]+),\\s*)?(\\d{1,2})(\\s+|-)([^-\\s]+)(\\s+|-)(\\d{2,4})\\s+(\\d\\d):(\\d\\d)(?::(\\d\\d))?\\s+(\\S+)$"); + QStringList parts; + if (!str.indexOf(rx)) { + // Check that if date has '-' separators, both separators are '-'. + parts = rx.capturedTexts(); + bool h1 = (parts[3] == QLatin1String("-")); + bool h2 = (parts[5] == QLatin1String("-")); + if (h1 != h2) + return QDateTime(); + } else { + // Check for the obsolete form "Wdy Mon DD HH:MM:SS YYYY" + rx = QRegExp("^([A-Z][a-z]+)\\s+(\\S+)\\s+(\\d\\d)\\s+(\\d\\d):(\\d\\d):(\\d\\d)\\s+(\\d\\d\\d\\d)$"); + if (str.indexOf(rx)) + return QDateTime(); + nyear = 7; + nmonth = 2; + nday = 3; + nwday = 1; + nhour = 4; + nmin = 5; + nsec = 6; + parts = rx.capturedTexts(); + } + bool ok[4]; + int day = parts[nday].toInt(&ok[0]); + int year = parts[nyear].toInt(&ok[1]); + int hour = parts[nhour].toInt(&ok[2]); + int minute = parts[nmin].toInt(&ok[3]); + if (!ok[0] || !ok[1] || !ok[2] || !ok[3]) + return QDateTime(); + int second = 0; + if (!parts[nsec].isEmpty()) { + second = parts[nsec].toInt(&ok[0]); + if (!ok[0]) + return QDateTime(); + } + bool leapSecond = (second == 60); + if (leapSecond) + second = 59; // apparently a leap second - validate below, once time zone is known + int month = 0; + for ( ; month < 12 && parts[nmonth] != shortMonth[month]; ++month) ; + int dayOfWeek = -1; + if (!parts[nwday].isEmpty()) { + // Look up the weekday name + while (++dayOfWeek < 7 && shortDay[dayOfWeek] != parts[nwday]) ; + if (dayOfWeek >= 7) + for (dayOfWeek = 0; dayOfWeek < 7 && longDay[dayOfWeek] != parts[nwday]; ++dayOfWeek) ; + } + // if (month >= 12 || dayOfWeek >= 7 + // || (dayOfWeek < 0 && format == RFCDateDay)) + // return QDateTime; + int i = parts[nyear].size(); + if (i < 4) { + // It's an obsolete year specification with less than 4 digits + year += (i == 2 && year < 50) ? 2000 : 1900; + } + + // Parse the UTC offset part + int offset = 0; // set default to '-0000' + bool negOffset = false; + if (parts.count() > 10) { + rx = QRegExp("^([+-])(\\d\\d)(\\d\\d)$"); + if (!parts[10].indexOf(rx)) { + // It's a UTC offset ±hhmm parts = rx.capturedTexts(); - bool h1 = (parts[3] == QLatin1String("-")); - bool h2 = (parts[5] == QLatin1String("-")); - if (h1 != h2) + offset = parts[2].toInt(&ok[0]) * 3600; + int offsetMin = parts[3].toInt(&ok[1]); + if (!ok[0] || !ok[1] || offsetMin > 59) return QDateTime(); + offset += offsetMin * 60; + negOffset = (parts[1] == QLatin1String("-")); + if (negOffset) + offset = -offset; } else { - // Check for the obsolete form "Wdy Mon DD HH:MM:SS YYYY" - rx = QRegExp("^([A-Z][a-z]+)\\s+(\\S+)\\s+(\\d\\d)\\s+(\\d\\d):(\\d\\d):(\\d\\d)\\s+(\\d\\d\\d\\d)$"); - if (str.indexOf(rx)) - return QDateTime(); - nyear = 7; - nmonth = 2; - nday = 3; - nwday = 1; - nhour = 4; - nmin = 5; - nsec = 6; - parts = rx.capturedTexts(); - } - bool ok[4]; - int day = parts[nday].toInt(&ok[0]); - int year = parts[nyear].toInt(&ok[1]); - int hour = parts[nhour].toInt(&ok[2]); - int minute = parts[nmin].toInt(&ok[3]); - if (!ok[0] || !ok[1] || !ok[2] || !ok[3]) - return QDateTime(); - int second = 0; - if (!parts[nsec].isEmpty()) { - second = parts[nsec].toInt(&ok[0]); - if (!ok[0]) - return QDateTime(); - } - bool leapSecond = (second == 60); - if (leapSecond) - second = 59; // apparently a leap second - validate below, once time zone is known - int month = 0; - for ( ; month < 12 && parts[nmonth] != shortMonth[month]; ++month) ; - int dayOfWeek = -1; - if (!parts[nwday].isEmpty()) { - // Look up the weekday name - while (++dayOfWeek < 7 && shortDay[dayOfWeek] != parts[nwday]) ; - if (dayOfWeek >= 7) - for (dayOfWeek = 0; dayOfWeek < 7 && longDay[dayOfWeek] != parts[nwday]; ++dayOfWeek) ; - } -// if (month >= 12 || dayOfWeek >= 7 -// || (dayOfWeek < 0 && format == RFCDateDay)) -// return QDateTime; - int i = parts[nyear].size(); - if (i < 4) { - // It's an obsolete year specification with less than 4 digits - year += (i == 2 && year < 50) ? 2000 : 1900; - } - - // Parse the UTC offset part - int offset = 0; // set default to '-0000' - bool negOffset = false; - if (parts.count() > 10) { - rx = QRegExp("^([+-])(\\d\\d)(\\d\\d)$"); - if (!parts[10].indexOf(rx)) { - // It's a UTC offset ±hhmm - parts = rx.capturedTexts(); - offset = parts[2].toInt(&ok[0]) * 3600; - int offsetMin = parts[3].toInt(&ok[1]); - if (!ok[0] || !ok[1] || offsetMin > 59) - return QDateTime(); - offset += offsetMin * 60; - negOffset = (parts[1] == QLatin1String("-")); - if (negOffset) - offset = -offset; - } else { - // Check for an obsolete time zone name - QByteArray zone = parts[10].toLatin1(); - if (zone.length() == 1 && isalpha(zone[0]) && toupper(zone[0]) != 'J') - negOffset = true; // military zone: RFC 2822 treats as '-0000' - else if (zone != "UT" && zone != "GMT") { // treated as '+0000' - offset = (zone == "EDT") ? -4*3600 - : (zone == "EST" || zone == "CDT") ? -5*3600 - : (zone == "CST" || zone == "MDT") ? -6*3600 - : (zone == "MST" || zone == "PDT") ? -7*3600 - : (zone == "PST") ? -8*3600 - : 0; - if (!offset) { - // Check for any other alphabetic time zone - bool nonalpha = false; - for (int i = 0, end = zone.size(); i < end && !nonalpha; ++i) - nonalpha = !isalpha(zone[i]); - if (nonalpha) - return QDateTime(); - // TODO: Attempt to recognize the time zone abbreviation? - negOffset = true; // unknown time zone: RFC 2822 treats as '-0000' - } + // Check for an obsolete time zone name + QByteArray zone = parts[10].toLatin1(); + if (zone.length() == 1 && isalpha(zone[0]) && toupper(zone[0]) != 'J') + negOffset = true; // military zone: RFC 2822 treats as '-0000' + else if (zone != "UT" && zone != "GMT") { // treated as '+0000' + offset = (zone == "EDT") ? -4*3600 + : (zone == "EST" || zone == "CDT") ? -5*3600 + : (zone == "CST" || zone == "MDT") ? -6*3600 + : (zone == "MST" || zone == "PDT") ? -7*3600 + : (zone == "PST") ? -8*3600 + : 0; + if (!offset) { + // Check for any other alphabetic time zone + bool nonalpha = false; + for (int i = 0, end = zone.size(); i < end && !nonalpha; ++i) + nonalpha = !isalpha(zone[i]); + if (nonalpha) + return QDateTime(); + // TODO: Attempt to recognize the time zone abbreviation? + negOffset = true; // unknown time zone: RFC 2822 treats as '-0000' } } } - QDate qdate(year, month+1, day); // convert date, and check for out-of-range - if (!qdate.isValid()) - return QDateTime(); - QDateTime result(qdate, QTime(hour, minute, second)); - if (!result.isValid() - || (dayOfWeek >= 0 && result.date().dayOfWeek() != dayOfWeek+1)) - return QDateTime(); // invalid date/time, or weekday doesn't correspond with date - if (!offset) { - result.setTimeSpec(Qt::UTC); - } - if (leapSecond) { - // Validate a leap second time. Leap seconds are inserted after 23:59:59 UTC. - // Convert the time to UTC and check that it is 00:00:00. - if ((hour*3600 + minute*60 + 60 - offset + 86400*5) % 86400) // (max abs(offset) is 100 hours) - return QDateTime(); // the time isn't the last second of the day - } - return result; } - - public: - // public constructor - RssItem(const QDomElement& properties) : read(false), downloadLink("none") { - QDomElement property = properties.firstChild().toElement(); - while(!property.isNull()) { - if (property.tagName() == "title") - title = property.text(); - else if (property.tagName() == "link") - link = property.text(); - else if (property.tagName() == "description") - description = property.text(); - else if (property.tagName() == "image") - image = property.text(); - else if (property.tagName() == "pubDate") - date = parseDate(property.text()); - else if (property.tagName() == "author") - author = property.text(); - property = property.nextSibling().toElement(); + QDate qdate(year, month+1, day); // convert date, and check for out-of-range + if (!qdate.isValid()) + return QDateTime(); + QDateTime result(qdate, QTime(hour, minute, second)); + if (!result.isValid() + || (dayOfWeek >= 0 && result.date().dayOfWeek() != dayOfWeek+1)) + return QDateTime(); // invalid date/time, or weekday doesn't correspond with date + if (!offset) { + result.setTimeSpec(Qt::UTC); + } + if (leapSecond) { + // Validate a leap second time. Leap seconds are inserted after 23:59:59 UTC. + // Convert the time to UTC and check that it is 00:00:00. + if ((hour*3600 + minute*60 + 60 - offset + 86400*5) % 86400) // (max abs(offset) is 100 hours) + return QDateTime(); // the time isn't the last second of the day + } + return result; + } + +public: + // public constructor + RssItem(const QDomElement& properties): read(false) { + is_valid = false; + torrent_url = QString::null; + news_link = QString::null; + title = QString::null; + QDomElement property = properties.firstChild().toElement(); + while(!property.isNull()) { + if (property.tagName() == "title") { + title = property.text(); + if(title.isEmpty()) { + is_valid = false; + return; + } + if(!torrent_url.isEmpty()) + is_valid = true; + } + else if (property.tagName() == "enclosure") { + if(property.attribute("type", "") == "application/x-bittorrent") { + torrent_url = property.attribute("url", QString::null); + if(torrent_url.isNull()) { + qDebug("Error: Torrent URL is null"); + return; + } + if(!title.isEmpty()) + is_valid = true; + } } - hash = QCryptographicHash::hash(QByteArray(title.toLocal8Bit())+QByteArray(description.toLocal8Bit()), QCryptographicHash::Md5); - } - - ~RssItem(){ - } - - QString getTitle() const{ - return title; - } - - QString getAuthor() const { - return author; - } - - QString getLink() const{ - return link; - } - - QString getHash() const { - return hash; - } - - QString getDescription() const{ - if(description.isEmpty()) - return tr("No description available"); - return description; - } - - QString getImage() const{ - return image; - } - - QDateTime getDate() const { - return date; - } - - QString getDownloadLink() const{ - return downloadLink; - } - - bool isRead() const{ - return read; - } - - void setRead(){ - read = true; - } + else if (property.tagName() == "link") + news_link = property.text(); + else if (property.tagName() == "description") + description = property.text(); + else if (property.tagName() == "pubDate") + date = parseDate(property.text()); + else if (property.tagName() == "author") + author = property.text(); + property = property.nextSibling().toElement(); + } + hash = QCryptographicHash::hash(QByteArray(title.toLocal8Bit()), QCryptographicHash::Md5); + } + + RssItem(QString _title, QString _torrent_url, QString _news_link, QString _description, QDateTime _date, QString _author, bool _read): + title(_title), torrent_url(_torrent_url), news_link(_news_link), description(_description), date(_date), author(_author), read(_read){ + if(!title.isEmpty() && !torrent_url.isEmpty()) { + is_valid = true; + } else { + std::cerr << "ERROR: an invalid RSS item was saved" << std::endl; + is_valid = false; + } + hash = QCryptographicHash::hash(QByteArray(title.toLocal8Bit()), QCryptographicHash::Md5); + } + + ~RssItem(){ + } + + QHash toHash() const { + QHash item; + item["title"] = title; + item["torrent_url"] = torrent_url; + item["news_link"] = news_link; + item["description"] = description; + item["date"] = date; + item["author"] = author; + item["read"] = read; + return item; + } + + static RssItem* fromHash(QHash h) { + RssItem * item = new RssItem(h["title"].toString(), h["torrent_url"].toString(), h["news_link"].toString(), + h["description"].toString(), h["date"].toDateTime(), h["author"].toString(), h["read"].toBool()); + return item; + } + + bool isValid() const { + return is_valid; + } + + QString getTitle() const{ + return title; + } + + QString getAuthor() const { + return author; + } + + QString getTorrentUrl() const{ + return torrent_url; + } + + QString getHash() const { + return hash; + } + + QString getLink() const { + return news_link; + } + + QString getDescription() const{ + if(description.isEmpty()) + return tr("No description available"); + return description; + } + + QDateTime getDate() const { + return date; + } + + bool isRead() const{ + return read; + } + + void setRead(){ + read = true; + } }; // Rss stream, loaded form an xml file class RssStream : public QObject{ Q_OBJECT - private: - QString title; - QString link; - QString description; - QString image; - QString url; - QString alias; - QString filePath; - QString iconPath; - QList listItem; - QTime lastRefresh; - bool read; - bool refreshed; - bool downloadFailure; - bool currently_loading; - - public slots : +private: + bittorrent *BTSession; + QString title; + QString link; + QString description; + QString image; + QString url; + QString alias; + QString filePath; + QString iconPath; + QList listItem; + QTime lastRefresh; + bool read; + bool refreshed; + bool downloadFailure; + bool currently_loading; + +public slots : // read and store the downloaded rss' informations void processDownloadedFile(QString file_path) { - filePath = file_path; - downloadFailure = false; - openRss(); - lastRefresh.start(); - refreshed = true; - } - - void setDownloadFailed(){ - downloadFailure = true; - lastRefresh.start(); - } + filePath = file_path; + downloadFailure = false; + openRss(); + lastRefresh.start(); + refreshed = true; +} + +void setDownloadFailed(){ + downloadFailure = true; + lastRefresh.start(); +} public: - RssStream(QString _url): url(_url), alias(""), iconPath(":/Icons/rss16.png"), refreshed(false), downloadFailure(false), currently_loading(false) { - qDebug("RSSStream constructed"); - } - - ~RssStream(){ - QSettings qBTRSS("qBittorrent-rss"); - qBTRSS.setValue(url, getAllReadHashes()); - removeAllItems(); - if(QFile::exists(filePath)) - QFile::remove(filePath); - if(QFile::exists(iconPath) && !iconPath.startsWith(":/")) - QFile::remove(iconPath); - } - - QStringList getAllReadHashes() { - QStringList hashes; - foreach(RssItem *item, listItem) { - if(item->isRead()) - hashes << item->getHash(); - } - return hashes; - } - - // delete all the items saved - void removeAllItems() { - qDeleteAll(listItem); - listItem.clear(); - } - - bool itemAlreadyExists(QString hash) { - RssItem * item; - foreach(item, listItem) { - if(item->getHash() == hash) return true; - } - return false; - } - - void setLoading(bool val) { - currently_loading = val; - } - - bool isLoading() { - return currently_loading; - } - - QString getTitle() const{ - return title; - } - - QString getAlias() const{ - qDebug("getAlias() returned Alias: %s", (const char*)alias.toLocal8Bit()); - return alias; - } - - void setAlias(QString _alias){ - qDebug("setAlias() to %s", (const char*)_alias.toLocal8Bit()); - alias = _alias; - } - - // Return the alias if the stream has one, the url if it has no alias - QString getAliasOrUrl() const{ - if(!alias.isEmpty()) { - qDebug("getAliasOrUrl() returned alias: %s", (const char*)alias.toLocal8Bit()); - return alias; - } - if(!title.isEmpty()) { - qDebug("getAliasOrUrl() returned title: %s", (const char*)title.toLocal8Bit()); - return title; - } - qDebug("getAliasOrUrl() returned url: %s", (const char*)url.toLocal8Bit()); - return url; - } - - QString getLink() const{ - return link; - } - - QString getUrl() const{ - return url; - } - - QString getDescription() const{ - return description; - } - - QString getImage() const{ - return image; - } - - QString getFilePath() const{ - return filePath; - } - - QString getIconPath() const{ - if(downloadFailure) - return ":/Icons/oxygen/unavailable.png"; - return iconPath; - } - - bool hasCustomIcon() const{ - return !iconPath.startsWith(":/"); - } - - void setIconPath(QString path) { - iconPath = path; - } - - RssItem* getItem(unsigned int index) const{ - return listItem.at(index); - } - - unsigned int getNbNews() const{ - return listItem.size(); - } - - void markAllAsRead() { - RssItem *item; - foreach(item, listItem){ - if(!item->isRead()) - item->setRead(); - } - } - - unsigned int getNbUnRead() const{ - unsigned int nbUnread=0; - RssItem *item; - foreach(item, listItem){ - if(!item->isRead()) - ++nbUnread; - } - return nbUnread; - } - - QList getNewsList() const{ - return listItem; - } - - QString getLastRefreshElapsedString() const{ - if(!refreshed) - return tr("Never"); - return tr("%1 ago", "10min ago").arg(misc::userFriendlyDuration((long)(lastRefresh.elapsed()/1000.)).replace("<", "<")); - } - - int getLastRefreshElapsed() const{ - if(!refreshed) - return -1; - return lastRefresh.elapsed(); - } - - // download the icon from the adress - QString getIconUrl() { - QUrl siteUrl(url); - return QString::fromUtf8("http://")+siteUrl.host()+QString::fromUtf8("/favicon.ico"); - } +RssStream(bittorrent *BTSession, QString _url): BTSession(BTSession), url(_url), alias(""), iconPath(":/Icons/rss16.png"), refreshed(false), downloadFailure(false), currently_loading(false) { + qDebug("RSSStream constructed"); +} + +~RssStream(){ + if(refreshed) { + QSettings qBTRSS("qBittorrent", "qBittorrent-rss"); + QVariantList old_items; + foreach(RssItem *item, listItem) { + old_items << item->toHash(); + } + QHash all_old_items = qBTRSS.value("old_items", QHash()).toHash(); + all_old_items[url] = old_items; + qBTRSS.setValue(url, all_old_items); + } + removeAllItems(); + if(QFile::exists(filePath)) + QFile::remove(filePath); + if(QFile::exists(iconPath) && !iconPath.startsWith(":/")) + QFile::remove(iconPath); +} + +// delete all the items saved +void removeAllItems() { + qDeleteAll(listItem); + listItem.clear(); +} + +bool itemAlreadyExists(QString hash) { + RssItem * item; + foreach(item, listItem) { + if(item->getHash() == hash) return true; + } + return false; +} + +void setLoading(bool val) { + currently_loading = val; +} + +bool isLoading() { + return currently_loading; +} + +QString getTitle() const{ + return title; +} + +QString getAlias() const{ + qDebug("getAlias() returned Alias: %s", (const char*)alias.toLocal8Bit()); + return alias; +} + +void setAlias(QString _alias){ + qDebug("setAlias() to %s", (const char*)_alias.toLocal8Bit()); + alias = _alias; +} + +// Return the alias if the stream has one, the url if it has no alias +QString getAliasOrUrl() const{ + if(!alias.isEmpty()) { + qDebug("getAliasOrUrl() returned alias: %s", (const char*)alias.toLocal8Bit()); + return alias; + } + if(!title.isEmpty()) { + qDebug("getAliasOrUrl() returned title: %s", (const char*)title.toLocal8Bit()); + return title; + } + qDebug("getAliasOrUrl() returned url: %s", (const char*)url.toLocal8Bit()); + return url; +} + +QString getLink() const{ + return link; +} + +QString getUrl() const{ + return url; +} + +QString getDescription() const{ + return description; +} + +QString getImage() const{ + return image; +} + +QString getFilePath() const{ + return filePath; +} + +QString getIconPath() const{ + if(downloadFailure) + return ":/Icons/oxygen/unavailable.png"; + return iconPath; +} + +bool hasCustomIcon() const{ + return !iconPath.startsWith(":/"); +} + +void setIconPath(QString path) { + iconPath = path; +} + +RssItem* getItem(unsigned int index) const{ + return listItem.at(index); +} + +unsigned int getNbNews() const{ + return listItem.size(); +} + +void markAllAsRead() { + RssItem *item; + foreach(item, listItem){ + if(!item->isRead()) + item->setRead(); + } +} + +unsigned int getNbUnRead() const{ + unsigned int nbUnread=0; + RssItem *item; + foreach(item, listItem){ + if(!item->isRead()) + ++nbUnread; + } + return nbUnread; +} + +QList getNewsList() const{ + return listItem; +} + +QString getLastRefreshElapsedString() const{ + if(!refreshed) + return tr("Never"); + return tr("%1 ago", "10min ago").arg(misc::userFriendlyDuration((long)(lastRefresh.elapsed()/1000.)).replace("<", "<")); +} + +int getLastRefreshElapsed() const{ + if(!refreshed) + return -1; + return lastRefresh.elapsed(); +} + +// download the icon from the adress +QString getIconUrl() { + QUrl siteUrl(url); + return QString::fromUtf8("http://")+siteUrl.host()+QString::fromUtf8("/favicon.ico"); +} private: - // read and create items from a rss document - short readDoc(const QDomDocument& doc) { - QStringList old_items; - if(!refreshed) { - QSettings qBTRSS("qBittorrent-rss"); - old_items = qBTRSS.value(this->url, QVariant()).toStringList(); - } - // is it a rss file ? - QDomElement root = doc.documentElement(); - if(root.tagName() == QString::fromUtf8("html")){ - qDebug("the file is empty, maybe the url is invalid or the server is too busy"); - return -1; - } - else if(root.tagName() != QString::fromUtf8("rss")){ - qDebug("the file is not a rss stream, omitted: %s", root.tagName().toLocal8Bit().data()); - return -1; - } - QDomNode rss = root.firstChild(); - QDomElement channel = root.firstChild().toElement(); - - while(!channel.isNull()) { - // we are reading the rss'main info - if (channel.tagName() == "channel") { - QDomElement property = channel.firstChild().toElement(); - while(!property.isNull()) { - if (property.tagName() == "title") { - title = property.text(); - if(alias==getUrl()) - setAlias(title); - } - else if (property.tagName() == "link") - link = property.text(); - else if (property.tagName() == "description") - description = property.text(); - else if (property.tagName() == "image") - image = property.text(); - else if(property.tagName() == "item") { - RssItem * item = new RssItem(property); - if(!itemAlreadyExists(item->getHash())) { - if(!refreshed && old_items.contains(item->getHash())) - item->setRead(); - listItem.append(item); +// read and create items from a rss document +short readDoc(const QDomDocument& doc) { + if(!refreshed) { + QSettings qBTRSS("qBittorrent", "qBittorrent-rss"); + QHash all_old_items = qBTRSS.value("old_items", QHash()).toHash(); + QVariantList old_items = all_old_items.value(url, QVariantList()).toList(); + foreach(const QVariant &var_it, old_items) { + QHash item = var_it.toHash(); + RssItem *rss_item = RssItem::fromHash(item); + if(rss_item->isValid()) + listItem << rss_item; + } + } + // is it a rss file ? + QDomElement root = doc.documentElement(); + if(root.tagName() == QString::fromUtf8("html")){ + qDebug("the file is empty, maybe the url is invalid or the server is too busy"); + return -1; + } + else if(root.tagName() != QString::fromUtf8("rss")){ + qDebug("the file is not a rss stream, omitted: %s", root.tagName().toLocal8Bit().data()); + return -1; + } + QDomNode rss = root.firstChild(); + QDomElement channel = root.firstChild().toElement(); + + while(!channel.isNull()) { + // we are reading the rss'main info + if (channel.tagName() == "channel") { + QDomElement property = channel.firstChild().toElement(); + while(!property.isNull()) { + if (property.tagName() == "title") { + title = property.text(); + if(alias==getUrl()) + setAlias(title); + } + else if (property.tagName() == "link") + link = property.text(); + else if (property.tagName() == "description") + description = property.text(); + else if (property.tagName() == "image") + image = property.text(); + else if(property.tagName() == "item") { + RssItem * item = new RssItem(property); + if(item->isValid() && !itemAlreadyExists(item->getHash())) { + listItem.append(item); + // Check if the item should be automatically downloaded + FeedFilter * matching_filter = FeedFilters::getFeedFilters(url).matches(item->getTitle()); + if(matching_filter != 0) { + // Download the torrent + BTSession->addConsoleMessage(tr("Automatically downloading %1 torrent from %2 RSS feed...").arg(item->getTorrentUrl()).arg(getAliasOrUrl())); + if(matching_filter->isValid()) { + QString save_path = matching_filter->getSavePath(); + if(save_path.isEmpty()) + BTSession->downloadUrlAndSkipDialog(item->getTorrentUrl()); + else + BTSession->downloadUrlAndSkipDialog(item->getTorrentUrl(), save_path); } else { - delete item; + // All torrents are downloaded from this feed + BTSession->downloadUrlAndSkipDialog(item->getTorrentUrl()); } - } - property = property.nextSibling().toElement(); - } - } - channel = channel.nextSibling().toElement(); - } - sortList(); - resizeList(); - return 0; - } - - static void insertSortElem(QList &list, RssItem *item) { - int i = 0; - while(i < list.size() && item->getDate() < list.at(i)->getDate()) { - ++i; - } - list.insert(i, item); - } - - void sortList() { - QList new_list; - RssItem *item; - foreach(item, listItem) { - insertSortElem(new_list, item); - } - listItem = new_list; - } - - void resizeList() { - QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent")); - unsigned int max_articles = settings.value(QString::fromUtf8("Preferences/RSS/RSSMaxArticlesPerFeed"), 50).toInt(); - int excess = listItem.size() - max_articles; - if(excess <= 0) return; - for(int i=0; i &list, RssItem *item) { + int i = 0; + while(i < list.size() && item->getDate() < list.at(i)->getDate()) { + ++i; + } + list.insert(i, item); +} + +void sortList() { + QList new_list; + RssItem *item; + foreach(item, listItem) { + insertSortElem(new_list, item); + } + listItem = new_list; +} + +void resizeList() { + QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent")); + unsigned int max_articles = settings.value(QString::fromUtf8("Preferences/RSS/RSSMaxArticlesPerFeed"), 100).toInt(); + int excess = listItem.size() - max_articles; + if(excess <= 0) return; + for(int i=0; i streams; - downloadThread *downloader; - QTimer newsRefresher; - unsigned int refreshInterval; +downloadThread *downloader; +QTimer newsRefresher; +unsigned int refreshInterval; +bittorrent *BTSession; signals: - void feedInfosChanged(QString url, QString aliasOrUrl, unsigned int nbUnread); - void feedIconChanged(QString url, QString icon_path); +void feedInfosChanged(QString url, QString aliasOrUrl, unsigned int nbUnread); +void feedIconChanged(QString url, QString icon_path); public slots : - void processFinishedDownload(QString url, QString path) { - if(url.endsWith("favicon.ico")){ - // Icon downloaded - QImage fileIcon; - if(fileIcon.load(path)) { - QList res = findFeedsWithIcon(url); - RssStream* stream; - foreach(stream, res){ - stream->setIconPath(path); - if(!stream->isLoading()) - emit feedIconChanged(stream->getUrl(), stream->getIconPath()); - } - }else{ - qDebug("Unsupported icon format at %s", (const char*)url.toLocal8Bit()); - } - return; - } - RssStream *stream = streams.value(url, 0); - if(!stream){ - qDebug("This rss stream was deleted in the meantime, nothing to update"); - return; - } - stream->processDownloadedFile(path); - stream->setLoading(false); - // If the feed has no alias, then we use the title as Alias - // this is more user friendly - if(stream->getAlias().isEmpty()){ - if(!stream->getTitle().isEmpty()) - stream->setAlias(stream->getTitle()); - } - emit feedInfosChanged(url, stream->getAliasOrUrl(), stream->getNbUnRead()); - } - - void handleDownloadFailure(QString url, QString reason) { - if(url.endsWith("favicon.ico")){ - // Icon download failure - qDebug("Could not download icon at %s, reason: %s", (const char*)url.toLocal8Bit(), (const char*)reason.toLocal8Bit()); - return; - } - RssStream *stream = streams.value(url, 0); - if(!stream){ - qDebug("This rss stream was deleted in the meantime, nothing to update"); - return; - } - stream->setLoading(false); - qDebug("Could not download Rss at %s, reason: %s", (const char*)url.toLocal8Bit(), (const char*)reason.toLocal8Bit()); - stream->setDownloadFailed(); - emit feedInfosChanged(url, stream->getAliasOrUrl(), stream->getNbUnRead()); - } - - void refreshOldFeeds(){ - RssStream *stream; - foreach(stream, streams){ - QString url = stream->getUrl(); - if(stream->isLoading()) return; - if(stream->getLastRefreshElapsed() != -1 && stream->getLastRefreshElapsed() < (int)refreshInterval) return; - qDebug("Refreshing old feed: %s...", (const char*)url.toLocal8Bit()); - stream->setLoading(true); - downloader->downloadUrl(url); - if(!stream->hasCustomIcon()){ - downloader->downloadUrl(stream->getIconUrl()); - } - } - // See if refreshInterval has changed - QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent")); - unsigned int new_refreshInterval = settings.value(QString::fromUtf8("Preferences/RSS/RSSRefresh"), 5).toInt(); - if(new_refreshInterval != refreshInterval) { - refreshInterval = new_refreshInterval; - newsRefresher.start(refreshInterval*60000); - } - } - - public : - RssManager(){ - downloader = new downloadThread(this); - connect(downloader, SIGNAL(downloadFinished(QString, QString)), this, SLOT(processFinishedDownload(QString, QString))); - connect(downloader, SIGNAL(downloadFailure(QString, QString)), this, SLOT(handleDownloadFailure(QString, QString))); - loadStreamList(); - connect(&newsRefresher, SIGNAL(timeout()), this, SLOT(refreshOldFeeds())); - QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent")); - refreshInterval = settings.value(QString::fromUtf8("Preferences/RSS/RSSRefresh"), 5).toInt(); - newsRefresher.start(refreshInterval*60000); - } - - ~RssManager(){ - qDebug("Deleting RSSManager"); - saveStreamList(); - qDebug("Deleting all streams"); - qDeleteAll(streams); - qDebug("Deleting downloader thread"); - delete downloader; - qDebug("RSSManager deleted"); - } - - // load the list of the rss stream - void loadStreamList(){ - QSettings settings("qBittorrent", "qBittorrent"); - QStringList streamsUrl = settings.value("Rss/streamList").toStringList(); - QStringList aliases = settings.value("Rss/streamAlias").toStringList(); - if(streamsUrl.size() != aliases.size()){ - std::cerr << "Corrupted Rss list, not loading it\n"; - return; - } - QString url; - unsigned int i = 0; - foreach(url, streamsUrl){ - RssStream *stream = new RssStream(url); - QString alias = aliases.at(i); - if(!alias.isEmpty()) { - stream->setAlias(alias); + void processFinishedDownload(QString url, QString path) { + if(url.endsWith("favicon.ico")){ + // Icon downloaded + QImage fileIcon; + if(fileIcon.load(path)) { + QList res = findFeedsWithIcon(url); + RssStream* stream; + foreach(stream, res){ + stream->setIconPath(path); + if(!stream->isLoading()) + emit feedIconChanged(stream->getUrl(), stream->getIconPath()); } - streams[url] = stream; - ++i; - } - qDebug("NB RSS streams loaded: %d", streamsUrl.size()); - } - - // save the list of the rss stream for the next session - void saveStreamList(){ - QList > streamsList; - QStringList streamsUrl; - QStringList aliases; - RssStream *stream; - foreach(stream, streams){ - streamsUrl << stream->getUrl(); - aliases << stream->getAlias(); - } - QSettings settings("qBittorrent", "qBittorrent"); - settings.beginGroup("Rss"); - settings.setValue("streamList", streamsUrl); - settings.setValue("streamAlias", aliases); - settings.endGroup(); - } - - // add a stream to the manager - void addStream(RssStream* stream){ - QString url = stream->getUrl(); - if(streams.contains(url)){ - qDebug("Not adding the Rss stream because it is already in the list"); - return; - } - streams[url] = stream; - emit feedIconChanged(url, stream->getIconPath()); - } - - // add a stream to the manager - RssStream* addStream(QString url){ - if(streams.contains(url)){ - qDebug("Not adding the Rss stream because it is already in the list"); - return 0; - } - RssStream* stream = new RssStream(url); - streams[url] = stream; - refresh(url); - return stream; - } - - // remove a stream from the manager - void removeStream(RssStream* stream){ + }else{ + qDebug("Unsupported icon format at %s", (const char*)url.toLocal8Bit()); + } + return; + } + RssStream *stream = streams.value(url, 0); + if(!stream){ + qDebug("This rss stream was deleted in the meantime, nothing to update"); + return; + } + stream->processDownloadedFile(path); + stream->setLoading(false); + // If the feed has no alias, then we use the title as Alias + // this is more user friendly + if(stream->getAlias().isEmpty()){ + if(!stream->getTitle().isEmpty()) + stream->setAlias(stream->getTitle()); + } + emit feedInfosChanged(url, stream->getAliasOrUrl(), stream->getNbUnRead()); + } + + void handleDownloadFailure(QString url, QString reason) { + if(url.endsWith("favicon.ico")){ + // Icon download failure + qDebug("Could not download icon at %s, reason: %s", (const char*)url.toLocal8Bit(), (const char*)reason.toLocal8Bit()); + return; + } + RssStream *stream = streams.value(url, 0); + if(!stream){ + qDebug("This rss stream was deleted in the meantime, nothing to update"); + return; + } + stream->setLoading(false); + qDebug("Could not download Rss at %s, reason: %s", (const char*)url.toLocal8Bit(), (const char*)reason.toLocal8Bit()); + stream->setDownloadFailed(); + emit feedInfosChanged(url, stream->getAliasOrUrl(), stream->getNbUnRead()); + } + + void refreshOldFeeds(){ + RssStream *stream; + foreach(stream, streams){ QString url = stream->getUrl(); - Q_ASSERT(streams.contains(url)); - delete streams.take(url); - } - - QList findFeedsWithIcon(QString icon_url){ - QList res; - RssStream* stream; - foreach(stream, streams){ - if(stream->getIconUrl() == icon_url) - res << stream; - } - return res; - } - - void removeStream(QString url){ - Q_ASSERT(streams.contains(url)); - delete streams.take(url); - } - - // remove all the streams in the manager - void removeAll(){ - qDeleteAll(streams); - streams.clear(); - } - - // reload all the xml files from the web - void refreshAll(){ - qDebug("Refreshing all rss feeds"); - RssStream *stream; - foreach(stream, streams){ - QString url = stream->getUrl(); - if(stream->isLoading()) return; - qDebug("Refreshing feed: %s...", (const char*)url.toLocal8Bit()); - stream->setLoading(true); - downloader->downloadUrl(url); - if(!stream->hasCustomIcon()){ - downloader->downloadUrl(stream->getIconUrl()); - } - } - } - - void refresh(QString url) { - Q_ASSERT(streams.contains(url)); - RssStream *stream = streams[url]; if(stream->isLoading()) return; + if(stream->getLastRefreshElapsed() != -1 && stream->getLastRefreshElapsed() < (int)refreshInterval) return; + qDebug("Refreshing old feed: %s...", (const char*)url.toLocal8Bit()); stream->setLoading(true); downloader->downloadUrl(url); if(!stream->hasCustomIcon()){ downloader->downloadUrl(stream->getIconUrl()); - }else{ - qDebug("No need to download this feed's icon, it was already downloaded"); } } - - // XXX: Used? - unsigned int getNbFeeds() { - return streams.size(); - } - - RssStream* getFeed(QString url){ - Q_ASSERT(streams.contains(url)); - return streams[url]; - } - - // Set an alias for a stream and save it for later - void setAlias(QString url, QString newAlias) { - Q_ASSERT(!newAlias.isEmpty()); - RssStream * stream = streams.value(url, 0); - Q_ASSERT(stream != 0); - stream->setAlias(newAlias); - emit feedInfosChanged(url, stream->getAliasOrUrl(), stream->getNbUnRead()); - } - - // Return all the rss feeds we have - QList getRssFeeds() const { - return streams.values(); + // See if refreshInterval has changed + QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent")); + unsigned int new_refreshInterval = settings.value(QString::fromUtf8("Preferences/RSS/RSSRefresh"), 5).toInt(); + if(new_refreshInterval != refreshInterval) { + refreshInterval = new_refreshInterval; + newsRefresher.start(refreshInterval*60000); } + } + +public : + RssManager(bittorrent *BTSession): BTSession(BTSession){ + downloader = new downloadThread(this); + connect(downloader, SIGNAL(downloadFinished(QString, QString)), this, SLOT(processFinishedDownload(QString, QString))); + connect(downloader, SIGNAL(downloadFailure(QString, QString)), this, SLOT(handleDownloadFailure(QString, QString))); + loadStreamList(); + connect(&newsRefresher, SIGNAL(timeout()), this, SLOT(refreshOldFeeds())); + QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent")); + refreshInterval = settings.value(QString::fromUtf8("Preferences/RSS/RSSRefresh"), 5).toInt(); + newsRefresher.start(refreshInterval*60000); +} + +~RssManager(){ + qDebug("Deleting RSSManager"); + saveStreamList(); + qDebug("Deleting all streams"); + qDeleteAll(streams); + qDebug("Deleting downloader thread"); + delete downloader; + qDebug("RSSManager deleted"); +} + +// load the list of the rss stream +void loadStreamList(){ + QSettings settings("qBittorrent", "qBittorrent"); + QStringList streamsUrl = settings.value("Rss/streamList").toStringList(); + QStringList aliases = settings.value("Rss/streamAlias").toStringList(); + if(streamsUrl.size() != aliases.size()){ + std::cerr << "Corrupted Rss list, not loading it\n"; + return; + } + QString url; + unsigned int i = 0; + foreach(url, streamsUrl){ + RssStream *stream = new RssStream(BTSession, url); + QString alias = aliases.at(i); + if(!alias.isEmpty()) { + stream->setAlias(alias); + } + streams[url] = stream; + ++i; + } + qDebug("NB RSS streams loaded: %d", streamsUrl.size()); +} + +// save the list of the rss stream for the next session +void saveStreamList(){ + QList > streamsList; + QStringList streamsUrl; + QStringList aliases; + RssStream *stream; + foreach(stream, streams){ + streamsUrl << stream->getUrl(); + aliases << stream->getAlias(); + } + QSettings settings("qBittorrent", "qBittorrent"); + settings.beginGroup("Rss"); + settings.setValue("streamList", streamsUrl); + settings.setValue("streamAlias", aliases); + settings.endGroup(); +} + +// add a stream to the manager +void addStream(RssStream* stream){ + QString url = stream->getUrl(); + if(streams.contains(url)){ + qDebug("Not adding the Rss stream because it is already in the list"); + return; + } + streams[url] = stream; + emit feedIconChanged(url, stream->getIconPath()); +} + +// add a stream to the manager +RssStream* addStream(QString url){ + if(streams.contains(url)){ + qDebug("Not adding the Rss stream because it is already in the list"); + return 0; + } + RssStream* stream = new RssStream(BTSession, url); + streams[url] = stream; + refresh(url); + return stream; +} + +// remove a stream from the manager +void removeStream(RssStream* stream){ + QString url = stream->getUrl(); + Q_ASSERT(streams.contains(url)); + delete streams.take(url); +} + +QList findFeedsWithIcon(QString icon_url){ + QList res; + RssStream* stream; + foreach(stream, streams){ + if(stream->getIconUrl() == icon_url) + res << stream; + } + return res; +} + +void removeStream(QString url){ + Q_ASSERT(streams.contains(url)); + delete streams.take(url); +} + +// remove all the streams in the manager +void removeAll(){ + qDeleteAll(streams); + streams.clear(); +} + +// reload all the xml files from the web +void refreshAll(){ + qDebug("Refreshing all rss feeds"); + RssStream *stream; + foreach(stream, streams){ + QString url = stream->getUrl(); + if(stream->isLoading()) return; + qDebug("Refreshing feed: %s...", (const char*)url.toLocal8Bit()); + stream->setLoading(true); + downloader->downloadUrl(url); + if(!stream->hasCustomIcon()){ + downloader->downloadUrl(stream->getIconUrl()); + } + } +} + +void refresh(QString url) { + Q_ASSERT(streams.contains(url)); + RssStream *stream = streams[url]; + if(stream->isLoading()) return; + stream->setLoading(true); + downloader->downloadUrl(url); + if(!stream->hasCustomIcon()){ + downloader->downloadUrl(stream->getIconUrl()); + }else{ + qDebug("No need to download this feed's icon, it was already downloaded"); + } +} + +// XXX: Used? +unsigned int getNbFeeds() { + return streams.size(); +} + +RssStream* getFeed(QString url){ + Q_ASSERT(streams.contains(url)); + return streams[url]; +} + +// Set an alias for a stream and save it for later +void setAlias(QString url, QString newAlias) { + Q_ASSERT(!newAlias.isEmpty()); + RssStream * stream = streams.value(url, 0); + Q_ASSERT(stream != 0); + stream->setAlias(newAlias); + emit feedInfosChanged(url, stream->getAliasOrUrl(), stream->getNbUnRead()); +} + +// Return all the rss feeds we have +QList getRssFeeds() const { + return streams.values(); +} }; diff --git a/src/rss.ui b/src/rss.ui index 3ccd424c6e..fba0605a85 100644 --- a/src/rss.ui +++ b/src/rss.ui @@ -1,7 +1,8 @@ - + + RSS - - + + 0 0 @@ -9,60 +10,60 @@ 447 - + Search - + - - + + Qt::Horizontal - - - + + + 6 - + 0 - - + + Qt::CustomContextMenu - + QAbstractItemView::ExtendedSelection - + 2 - + RSS streams: - + 2 - - + + 6 - + 0 - + Qt::Horizontal - + 40 20 @@ -71,20 +72,20 @@ - - + + 55 32 - + Delete selected streams - + - + 32 32 @@ -93,20 +94,20 @@ - - + + 32 32 - + Refresh RSS streams - + - + 32 32 @@ -115,20 +116,20 @@ - - + + 32 32 - + Add a new RSS stream - + - + 55 32 @@ -138,10 +139,10 @@ - + Qt::Horizontal - + 40 20 @@ -155,28 +156,39 @@ listStreams - - + + - - + + 50 false - - <b>News:</b> <i>(double-click to open the link in your web browser)</i> + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Torrents:</span> <span style=" font-style:italic;">(double-click to download)</span></p></body></html> - - + + Qt::Vertical - - + + + Qt::CustomContextMenu + + + QAbstractItemView::ExtendedSelection + + + @@ -184,37 +196,75 @@ - - + + Delete - - + + Rename - - + + Refresh - - + + Add RSS stream - - + + Refresh all streams - - + + Mark all as read + + + + :/Icons/oxygen/download.png:/Icons/oxygen/download.png + + + Download torrent + + + + + + :/Icons/url.png:/Icons/url.png + + + Open news URL + + + + + + :/Icons/oxygen/edit-copy.png:/Icons/oxygen/edit-copy.png + + + Copy feed URL + + + + + + :/Icons/oxygen/download.png:/Icons/oxygen/download.png + + + RSS feed downloader + + - + + + diff --git a/src/rss_imp.cpp b/src/rss_imp.cpp index 3812970659..11da9e1a12 100644 --- a/src/rss_imp.cpp +++ b/src/rss_imp.cpp @@ -28,9 +28,6 @@ * Contact : chris@qbittorrent.org arnaud@qbittorrent.org */ -#include "rss_imp.h" -#include "rss.h" - #include #include #include @@ -38,337 +35,394 @@ #include #include #include +#include - // display a right-click menu - void RSSImp::displayRSSListMenu(const QPoint& pos){ - QMenu myFinishedListMenu(this); - QTreeWidgetItem* item = listStreams->itemAt(pos); - QList selectedItems = listStreams->selectedItems(); - if(item != 0) { - myFinishedListMenu.addAction(actionMark_all_as_read); - myFinishedListMenu.addAction(actionDelete); - if(selectedItems.size() == 1) - myFinishedListMenu.addAction(actionRename); - myFinishedListMenu.addAction(actionRefresh); - }else{ - myFinishedListMenu.addAction(actionCreate); - myFinishedListMenu.addAction(actionRefreshAll); - } - myFinishedListMenu.exec(mapToGlobal(pos)+QPoint(10,33)); - } - - // add a stream by a button - void RSSImp::on_addStream_button_clicked() { - createStream(); - } +#include "rss_imp.h" +#include "rss.h" +#include "FeedDownloader.h" +#include "bittorrent.h" - // delete a stream by a button - void RSSImp::on_delStream_button_clicked() { - QList selectedItems = listStreams->selectedItems(); - QTreeWidgetItem *item; - if(!selectedItems.size()) return; - int ret = QMessageBox::question(this, tr("Are you sure? -- qBittorrent"), tr("Are you sure you want to delete this stream from the list?"), - tr("&Yes"), tr("&No"), - QString(), 0, 1); - if(!ret) { - QStringList urlsToDelete; - foreach(item, selectedItems){ - QString url = item->data(1, Qt::DisplayRole).toString(); - urlsToDelete << url; - } - QString url; - foreach(url, urlsToDelete){ - if(selectedFeedUrl == url){ - textBrowser->clear(); - listNews->clear(); - } - rssmanager->removeStream(url); - delete getTreeItemFromUrl(url); - } - if(urlsToDelete.size()) - rssmanager->saveStreamList(); - } +// display a right-click menu +void RSSImp::displayRSSListMenu(const QPoint&){ + QMenu myFinishedListMenu(this); + QList selectedItems = listStreams->selectedItems(); + if(selectedItems.size() > 0) { + myFinishedListMenu.addAction(actionMark_all_as_read); + myFinishedListMenu.addAction(actionDelete); + if(selectedItems.size() == 1) { + myFinishedListMenu.addAction(actionRename); + myFinishedListMenu.addAction(actionRSS_feed_downloader); } + myFinishedListMenu.addAction(actionCopy_feed_URL); + myFinishedListMenu.addAction(actionRefresh); + }else{ + myFinishedListMenu.addAction(actionCreate); + myFinishedListMenu.addAction(actionRefreshAll); + } + myFinishedListMenu.exec(QCursor::pos()); +} - // refresh all streams by a button - void RSSImp::on_refreshAll_button_clicked() { - refreshAllStreams(); - } +void RSSImp::displayItemsListMenu(const QPoint&){ + QMenu myItemListMenu(this); + QList selectedItems = listStreams->selectedItems(); + if(selectedItems.size() > 0) { + myItemListMenu.addAction(actionDownload_torrent); + myItemListMenu.addAction(actionOpen_news_URL); + } + myItemListMenu.exec(QCursor::pos()); +} - // open the url of the news in a browser - void RSSImp::openInBrowser(QListWidgetItem *item) { - RssItem* news = rssmanager->getFeed(selectedFeedUrl)->getItem(listNews->row(item)); - QString link = news->getLink(); - if(!link.isEmpty()) - QDesktopServices::openUrl(QUrl(link)); - } +// add a stream by a button +void RSSImp::on_addStream_button_clicked() { + createStream(); +} - //right-click on stream : give him an alias - void RSSImp::renameStream() { - QList selectedItems = listStreams->selectedItems(); - Q_ASSERT(selectedItems.size() == 1); - QTreeWidgetItem *item = selectedItems.at(0); +// delete a stream by a button +void RSSImp::on_delStream_button_clicked() { + QList selectedItems = listStreams->selectedItems(); + QTreeWidgetItem *item; + if(!selectedItems.size()) return; + int ret = QMessageBox::question(this, tr("Are you sure? -- qBittorrent"), tr("Are you sure you want to delete this stream from the list?"), + tr("&Yes"), tr("&No"), + QString(), 0, 1); + if(!ret) { + QStringList urlsToDelete; + foreach(item, selectedItems){ QString url = item->data(1, Qt::DisplayRole).toString(); - bool ok; - QString newAlias = QInputDialog::getText(this, tr("Please choose a new name for this stream"), tr("New stream name:"), QLineEdit::Normal, rssmanager->getFeed(url)->getAlias(), &ok); - if(ok) { - rssmanager->setAlias(url, newAlias); - } + urlsToDelete << url; } - - //right-click on stream : refresh it - void RSSImp::refreshSelectedStreams() { - QList selectedItems = listStreams->selectedItems(); - QTreeWidgetItem* item; - foreach(item, selectedItems){ - QString url = item->text(1); + QString url; + foreach(url, urlsToDelete){ + if(selectedFeedUrl == url){ textBrowser->clear(); listNews->clear(); - rssmanager->refresh(url); - item->setData(0,Qt::DecorationRole, QVariant(QIcon(":/Icons/loading.png"))); } + rssmanager->removeStream(url); + delete getTreeItemFromUrl(url); } + if(urlsToDelete.size()) + rssmanager->saveStreamList(); + } +} - void RSSImp::on_actionMark_all_as_read_triggered() { - textBrowser->clear(); - listNews->clear(); - QList selectedItems = listStreams->selectedItems(); - QTreeWidgetItem* item; - foreach(item, selectedItems){ - QString url = item->text(1); - RssStream *feed = rssmanager->getFeed(url); - feed->markAllAsRead(); - item->setData(0, Qt::DisplayRole, feed->getAliasOrUrl()+ QString::fromUtf8(" (0)")); - } - if(selectedItems.size()) - refreshNewsList(selectedItems.last(), 0); - } +// refresh all streams by a button +void RSSImp::on_refreshAll_button_clicked() { + refreshAllStreams(); +} - //right-click somewhere, refresh all the streams - void RSSImp::refreshAllStreams() { - textBrowser->clear(); - listNews->clear(); - unsigned int nbFeeds = listStreams->topLevelItemCount(); - for(unsigned int i=0; itopLevelItem(i)->setData(0,Qt::DecorationRole, QVariant(QIcon(":/Icons/loading.png"))); - rssmanager->refreshAll(); - updateLastRefreshedTimeForStreams(); - } +void RSSImp::downloadTorrent() { + QList selected_items = listNews->selectedItems(); + foreach(const QListWidgetItem* item, selected_items) { + RssItem* news = rssmanager->getFeed(selectedFeedUrl)->getItem(listNews->row(item)); + BTSession->downloadFromUrl(news->getTorrentUrl()); + } +} - void RSSImp::fillFeedsList() { - QList feeds = rssmanager->getRssFeeds(); - RssStream* stream; - foreach(stream, feeds){ - QTreeWidgetItem* item = new QTreeWidgetItem(listStreams); - item->setData(0, Qt::DisplayRole, stream->getAliasOrUrl()+ QString::fromUtf8(" (0)")); - item->setData(0,Qt::DecorationRole, QVariant(QIcon(QString::fromUtf8(":/Icons/loading.png")))); - item->setData(1, Qt::DisplayRole, stream->getUrl()); - item->setToolTip(0, QString::fromUtf8("")+tr("Description:")+QString::fromUtf8(" ")+stream->getDescription()+QString::fromUtf8("
")+tr("url:")+QString::fromUtf8(" ")+stream->getUrl()+QString::fromUtf8("
")+tr("Last refresh:")+QString::fromUtf8(" ")+stream->getLastRefreshElapsedString()); - } - } +// open the url of the news in a browser +void RSSImp::openNewsUrl() { + QList selected_items = listNews->selectedItems(); + foreach(const QListWidgetItem* item, selected_items) { + RssItem* news = rssmanager->getFeed(selectedFeedUrl)->getItem(listNews->row(item)); + QString link = news->getLink(); + if(!link.isEmpty()) + QDesktopServices::openUrl(QUrl(link)); + } +} - //right-click, register a new stream - void RSSImp::createStream() { - bool ok; - QString newUrl = QInputDialog::getText(this, tr("Please type a rss stream url"), tr("Stream URL:"), QLineEdit::Normal, "http://", &ok); - if(ok) { - newUrl = newUrl.trimmed(); - if(!newUrl.isEmpty()){ - RssStream *stream = rssmanager->addStream(newUrl); - if(stream == 0){ - // Already existing - QMessageBox::warning(this, tr("qBittorrent"), - tr("This rss feed is already in the list."), - QMessageBox::Ok); - return; - } - QTreeWidgetItem* item = new QTreeWidgetItem(listStreams); - item->setText(0, stream->getAliasOrUrl() + QString::fromUtf8(" (0)")); - item->setText(1, stream->getUrl()); - item->setData(0,Qt::DecorationRole, QVariant(QIcon(":/Icons/loading.png"))); - item->setToolTip(0, QString::fromUtf8("")+tr("Description:")+QString::fromUtf8(" ")+stream->getDescription()+QString::fromUtf8("
")+tr("url:")+QString::fromUtf8(" ")+stream->getUrl()+QString::fromUtf8("
")+tr("Last refresh:")+QString::fromUtf8(" ")+stream->getLastRefreshElapsedString()); - if(listStreams->topLevelItemCount() == 1) - selectFirstFeed(); - rssmanager->refresh(newUrl); - rssmanager->saveStreamList(); - } - } - } +//right-click on stream : give him an alias +void RSSImp::renameStream() { + QList selectedItems = listStreams->selectedItems(); + Q_ASSERT(selectedItems.size() == 1); + QTreeWidgetItem *item = selectedItems.at(0); + QString url = item->data(1, Qt::DisplayRole).toString(); + bool ok; + QString newAlias = QInputDialog::getText(this, tr("Please choose a new name for this stream"), tr("New stream name:"), QLineEdit::Normal, rssmanager->getFeed(url)->getAlias(), &ok); + if(ok) { + rssmanager->setAlias(url, newAlias); + } +} - void RSSImp::updateLastRefreshedTimeForStreams() { - unsigned int nbFeeds = listStreams->topLevelItemCount(); - for(unsigned int i=0; itopLevelItem(i); - RssStream* stream = rssmanager->getFeed(item->data(1, Qt::DisplayRole).toString()); - item->setToolTip(0, QString::fromUtf8("")+tr("Description:")+QString::fromUtf8(" ")+stream->getDescription()+QString::fromUtf8("
")+tr("url:")+QString::fromUtf8(" ")+stream->getUrl()+QString::fromUtf8("
")+tr("Last refresh:")+QString::fromUtf8(" ")+stream->getLastRefreshElapsedString()); - } - } +//right-click on stream : refresh it +void RSSImp::refreshSelectedStreams() { + QList selectedItems = listStreams->selectedItems(); + QTreeWidgetItem* item; + foreach(item, selectedItems){ + QString url = item->text(1); + textBrowser->clear(); + listNews->clear(); + rssmanager->refresh(url); + item->setData(0,Qt::DecorationRole, QVariant(QIcon(":/Icons/loading.png"))); + } +} - // fills the newsList - void RSSImp::refreshNewsList(QTreeWidgetItem* item, int) { - selectedFeedUrl = item->text(1); - RssStream *stream = rssmanager->getFeed(selectedFeedUrl); - listNews->clear(); - qDebug("Getting the list of news"); - QList news = stream->getNewsList(); - qDebug("Got the list of news"); - RssItem* article; - foreach(article, news){ - QListWidgetItem* it = new QListWidgetItem(article->getTitle(), listNews); - if(article->isRead()){ - it->setData(Qt::ForegroundRole, QVariant(QColor("grey"))); - it->setData(Qt::DecorationRole, QVariant(QIcon(":/Icons/sphere.png"))); - }else{ - it->setData(Qt::ForegroundRole, QVariant(QColor("blue"))); - it->setData(Qt::DecorationRole, QVariant(QIcon(":/Icons/sphere2.png"))); - } - } - qDebug("Added all news to the GUI"); - selectFirstNews(); - qDebug("First news selected"); - } +void RSSImp::copySelectedFeedsURL() { + QStringList URLs; + QList selectedItems = listStreams->selectedItems(); + QTreeWidgetItem* item; + foreach(item, selectedItems){ + URLs << item->text(1); + } + qApp->clipboard()->setText(URLs.join("\n")); +} - // display a news - void RSSImp::refreshTextBrowser(QListWidgetItem *item) { - RssItem* article = rssmanager->getFeed(selectedFeedUrl)->getItem(listNews->row(item)); - QString html; - html += "
"; - html += "
"+article->getTitle() + "
"; - if(article->getDate().isValid()) { - html += "
"+tr("Date: ")+""+article->getDate().toString()+"
"; - } - if(!article->getAuthor().isEmpty()) { - html += "
"+tr("Author: ")+""+article->getAuthor()+"
"; - } - html += "
"; - html += ""+article->getDescription()+""; - textBrowser->setHtml(html); - article->setRead(); - item->setData(Qt::ForegroundRole, QVariant(QColor("grey"))); - item->setData(Qt::DecorationRole, QVariant(QIcon(":/Icons/sphere.png"))); - updateFeedNbNews(selectedFeedUrl); - } - - void RSSImp::saveSlidersPosition() { - // Remember sliders positions - QSettings settings("qBittorrent", "qBittorrent"); - settings.setValue("rss/splitter_h", splitter_h->saveState()); - settings.setValue("rss/splitter_v", splitter_v->saveState()); - qDebug("Splitters position saved"); - } - - void RSSImp::restoreSlidersPosition() { - QSettings settings("qBittorrent", "qBittorrent"); - QByteArray pos_h = settings.value("rss/splitter_h", QByteArray()).toByteArray(); - if(!pos_h.isNull()) { - splitter_h->restoreState(pos_h); - } - QByteArray pos_v = settings.value("rss/splitter_v", QByteArray()).toByteArray(); - if(!pos_v.isNull()) { - splitter_v->restoreState(pos_v); - } - } - - QTreeWidgetItem* RSSImp::getTreeItemFromUrl(QString url) const{ - unsigned int nbItems = listStreams->topLevelItemCount(); - for(unsigned int i = 0; itopLevelItem(i); - if(item->text(1) == url) - return item; - } - qDebug("Cannot find url %s in feeds list", (const char*)url.toLocal8Bit()); - Q_ASSERT(false); // Should never go through here - return (QTreeWidgetItem*)0; - } +void RSSImp::showFeedDownloader() { + QTreeWidgetItem* item = listStreams->selectedItems()[0]; + new FeedDownloaderDlg(this, item->text(1), rssmanager->getFeed(item->text(1))->getAliasOrUrl(), BTSession); +} - void RSSImp::updateFeedIcon(QString url, QString icon_path){ - QTreeWidgetItem *item = getTreeItemFromUrl(url); - item->setData(0,Qt::DecorationRole, QVariant(QIcon(icon_path))); - } +void RSSImp::on_actionMark_all_as_read_triggered() { + textBrowser->clear(); + listNews->clear(); + QList selectedItems = listStreams->selectedItems(); + QTreeWidgetItem* item; + foreach(item, selectedItems){ + QString url = item->text(1); + RssStream *feed = rssmanager->getFeed(url); + feed->markAllAsRead(); + item->setData(0, Qt::DisplayRole, feed->getAliasOrUrl()+ QString::fromUtf8(" (0)")); + } + if(selectedItems.size()) + refreshNewsList(selectedItems.last(), 0); +} - void RSSImp::updateFeedNbNews(QString url){ - QTreeWidgetItem *item = getTreeItemFromUrl(url); - RssStream *stream = rssmanager->getFeed(url); - item->setText(0, stream->getAliasOrUrl() + QString::fromUtf8(" (") + QString::number(stream->getNbUnRead(), 10)+ QString(")")); - } +//right-click somewhere, refresh all the streams +void RSSImp::refreshAllStreams() { + textBrowser->clear(); + listNews->clear(); + unsigned int nbFeeds = listStreams->topLevelItemCount(); + for(unsigned int i=0; itopLevelItem(i)->setData(0,Qt::DecorationRole, QVariant(QIcon(":/Icons/loading.png"))); + rssmanager->refreshAll(); + updateLastRefreshedTimeForStreams(); +} - void RSSImp::updateFeedInfos(QString url, QString aliasOrUrl, unsigned int nbUnread){ - QTreeWidgetItem *item = getTreeItemFromUrl(url); - RssStream *stream = rssmanager->getFeed(url); - item->setText(0, aliasOrUrl + QString::fromUtf8(" (") + QString::number(nbUnread, 10)+ QString(")")); - item->setData(0,Qt::DecorationRole, QVariant(QIcon(stream->getIconPath()))); - item->setToolTip(0, QString::fromUtf8("")+tr("Description:")+QString::fromUtf8(" ")+stream->getDescription()+QString::fromUtf8("
")+tr("url:")+QString::fromUtf8(" ")+stream->getUrl()+QString::fromUtf8("
")+tr("Last refresh:")+QString::fromUtf8(" ")+stream->getLastRefreshElapsedString()); - // If the feed is selected, update the displayed news - if(selectedFeedUrl == url){ - refreshNewsList(getTreeItemFromUrl(url), 0); +void RSSImp::fillFeedsList() { + QList feeds = rssmanager->getRssFeeds(); + RssStream* stream; + foreach(stream, feeds){ + QTreeWidgetItem* item = new QTreeWidgetItem(listStreams); + item->setData(0, Qt::DisplayRole, stream->getAliasOrUrl()+ QString::fromUtf8(" (0)")); + item->setData(0,Qt::DecorationRole, QVariant(QIcon(QString::fromUtf8(":/Icons/loading.png")))); + item->setData(1, Qt::DisplayRole, stream->getUrl()); + item->setToolTip(0, QString::fromUtf8("")+tr("Description:")+QString::fromUtf8(" ")+stream->getDescription()+QString::fromUtf8("
")+tr("url:")+QString::fromUtf8(" ")+stream->getUrl()+QString::fromUtf8("
")+tr("Last refresh:")+QString::fromUtf8(" ")+stream->getLastRefreshElapsedString()); + } +} + +//right-click, register a new stream +void RSSImp::createStream() { + bool ok; + QString clip_txt = qApp->clipboard()->text(); + QString default_url = "http://"; + if(clip_txt.startsWith("http://", Qt::CaseInsensitive) || clip_txt.startsWith("https://", Qt::CaseInsensitive) || clip_txt.startsWith("ftp://", Qt::CaseInsensitive)) { + default_url = clip_txt; + } + QString newUrl = QInputDialog::getText(this, tr("Please type a rss stream url"), tr("Stream URL:"), QLineEdit::Normal, default_url, &ok); + if(ok) { + newUrl = newUrl.trimmed(); + if(!newUrl.isEmpty()){ + RssStream *stream = rssmanager->addStream(newUrl); + if(stream == 0){ + // Already existing + QMessageBox::warning(this, tr("qBittorrent"), + tr("This rss feed is already in the list."), + QMessageBox::Ok); + return; } + QTreeWidgetItem* item = new QTreeWidgetItem(listStreams); + item->setText(0, stream->getAliasOrUrl() + QString::fromUtf8(" (0)")); + item->setText(1, stream->getUrl()); + item->setData(0,Qt::DecorationRole, QVariant(QIcon(":/Icons/loading.png"))); + item->setToolTip(0, QString::fromUtf8("")+tr("Description:")+QString::fromUtf8(" ")+stream->getDescription()+QString::fromUtf8("
")+tr("url:")+QString::fromUtf8(" ")+stream->getUrl()+QString::fromUtf8("
")+tr("Last refresh:")+QString::fromUtf8(" ")+stream->getLastRefreshElapsedString()); + if(listStreams->topLevelItemCount() == 1) + selectFirstFeed(); + rssmanager->refresh(newUrl); + rssmanager->saveStreamList(); } + } +} - RSSImp::RSSImp() : QWidget(){ - setupUi(this); - // icons of bottom buttons - addStream_button->setIcon(QIcon(QString::fromUtf8(":/Icons/oxygen/subscribe.png"))); - delStream_button->setIcon(QIcon(QString::fromUtf8(":/Icons/oxygen/unsubscribe.png"))); - refreshAll_button->setIcon(QIcon(QString::fromUtf8(":/Icons/refresh.png"))); - actionMark_all_as_read->setIcon(QIcon(QString::fromUtf8(":/Icons/oxygen/button_ok.png"))); - // icons of right-click menu - actionDelete->setIcon(QIcon(QString::fromUtf8(":/Icons/oxygen/unsubscribe16.png"))); - actionRename->setIcon(QIcon(QString::fromUtf8(":/Icons/oxygen/log.png"))); - actionRefresh->setIcon(QIcon(QString::fromUtf8(":/Icons/refresh.png"))); - actionCreate->setIcon(QIcon(QString::fromUtf8(":/Icons/oxygen/subscribe16.png"))); - actionRefreshAll->setIcon(QIcon(QString::fromUtf8(":/Icons/refresh.png"))); - - // Hide second column (url) - listStreams->hideColumn(1); - - rssmanager = new RssManager(); - fillFeedsList(); - connect(rssmanager, SIGNAL(feedInfosChanged(QString, QString, unsigned int)), this, SLOT(updateFeedInfos(QString, QString, unsigned int))); - connect(rssmanager, SIGNAL(feedIconChanged(QString, QString)), this, SLOT(updateFeedIcon(QString, QString))); - - connect(listStreams, SIGNAL(customContextMenuRequested(const QPoint&)), this, SLOT(displayRSSListMenu(const QPoint&))); - connect(actionDelete, SIGNAL(triggered()), this, SLOT(on_delStream_button_clicked())); - connect(actionRename, SIGNAL(triggered()), this, SLOT(renameStream())); - connect(actionRefresh, SIGNAL(triggered()), this, SLOT(refreshSelectedStreams())); - connect(actionCreate, SIGNAL(triggered()), this, SLOT(createStream())); - connect(actionRefreshAll, SIGNAL(triggered()), this, SLOT(refreshAllStreams())); - connect(listStreams, SIGNAL(itemClicked(QTreeWidgetItem*,int)), this, SLOT(refreshNewsList(QTreeWidgetItem*,int))); - connect(listNews, SIGNAL(itemClicked(QListWidgetItem *)), this, SLOT(refreshTextBrowser(QListWidgetItem *))); - connect(listNews, SIGNAL(itemDoubleClicked(QListWidgetItem *)), this, SLOT(openInBrowser(QListWidgetItem *))); - refreshTimeTimer = new QTimer(this); - connect(refreshTimeTimer, SIGNAL(timeout()), this, SLOT(updateLastRefreshedTimeForStreams())); - refreshTimeTimer->start(60000); // 1min - // Select first news of first feed - selectFirstFeed(); - // Refresh all feeds - rssmanager->refreshAll(); - // Restore sliders position - restoreSlidersPosition(); - // Bind saveSliders slots - connect(splitter_v, SIGNAL(splitterMoved(int, int)), this, SLOT(saveSlidersPosition())); - connect(splitter_h, SIGNAL(splitterMoved(int, int)), this, SLOT(saveSlidersPosition())); - qDebug("RSSImp constructed"); - } +void RSSImp::updateLastRefreshedTimeForStreams() { + unsigned int nbFeeds = listStreams->topLevelItemCount(); + for(unsigned int i=0; itopLevelItem(i); + RssStream* stream = rssmanager->getFeed(item->data(1, Qt::DisplayRole).toString()); + item->setToolTip(0, QString::fromUtf8("")+tr("Description:")+QString::fromUtf8(" ")+stream->getDescription()+QString::fromUtf8("
")+tr("url:")+QString::fromUtf8(" ")+stream->getUrl()+QString::fromUtf8("
")+tr("Last refresh:")+QString::fromUtf8(" ")+stream->getLastRefreshElapsedString()); + } +} - void RSSImp::selectFirstFeed(){ - if(listStreams->topLevelItemCount()){ - QTreeWidgetItem *first = listStreams->topLevelItem(0); - listStreams->setCurrentItem(first); - selectedFeedUrl = first->text(1); - } +// fills the newsList +void RSSImp::refreshNewsList(QTreeWidgetItem* item, int) { + selectedFeedUrl = item->text(1); + RssStream *stream = rssmanager->getFeed(selectedFeedUrl); + qDebug("Getting the list of news"); + QList news = stream->getNewsList(); + // Clear the list first + listNews->clear(); + qDebug("Got the list of news"); + foreach(RssItem* article, news){ + QListWidgetItem* it = new QListWidgetItem(article->getTitle(), listNews); + if(article->isRead()){ + it->setData(Qt::ForegroundRole, QVariant(QColor("grey"))); + it->setData(Qt::DecorationRole, QVariant(QIcon(":/Icons/sphere.png"))); + }else{ + it->setData(Qt::ForegroundRole, QVariant(QColor("blue"))); + it->setData(Qt::DecorationRole, QVariant(QIcon(":/Icons/sphere2.png"))); } + } + qDebug("Added all news to the GUI"); + //selectFirstNews(); + qDebug("First news selected"); +} - void RSSImp::selectFirstNews(){ - if(listNews->count()){ - listNews->setCurrentRow(0); - refreshTextBrowser(listNews->currentItem()); - } - } +// display a news +void RSSImp::refreshTextBrowser(QListWidgetItem *item) { + RssItem* article = rssmanager->getFeed(selectedFeedUrl)->getItem(listNews->row(item)); + QString html; + html += "
"; + html += "
"+article->getTitle() + "
"; + if(article->getDate().isValid()) { + html += "
"+tr("Date: ")+""+article->getDate().toString()+"
"; + } + if(!article->getAuthor().isEmpty()) { + html += "
"+tr("Author: ")+""+article->getAuthor()+"
"; + } + html += "
"; + html += ""+article->getDescription()+""; + textBrowser->setHtml(html); + article->setRead(); + item->setData(Qt::ForegroundRole, QVariant(QColor("grey"))); + item->setData(Qt::DecorationRole, QVariant(QIcon(":/Icons/sphere.png"))); + updateFeedNbNews(selectedFeedUrl); +} - RSSImp::~RSSImp(){ - qDebug("Deleting RSSImp..."); - delete refreshTimeTimer; - delete rssmanager; - qDebug("RSSImp deleted"); - } +void RSSImp::saveSlidersPosition() { + // Remember sliders positions + QSettings settings("qBittorrent", "qBittorrent"); + settings.setValue("rss/splitter_h", splitter_h->saveState()); + settings.setValue("rss/splitter_v", splitter_v->saveState()); + qDebug("Splitters position saved"); +} + +void RSSImp::restoreSlidersPosition() { + QSettings settings("qBittorrent", "qBittorrent"); + QByteArray pos_h = settings.value("rss/splitter_h", QByteArray()).toByteArray(); + if(!pos_h.isNull()) { + splitter_h->restoreState(pos_h); + } + QByteArray pos_v = settings.value("rss/splitter_v", QByteArray()).toByteArray(); + if(!pos_v.isNull()) { + splitter_v->restoreState(pos_v); + } +} + +QTreeWidgetItem* RSSImp::getTreeItemFromUrl(QString url) const{ + unsigned int nbItems = listStreams->topLevelItemCount(); + for(unsigned int i = 0; itopLevelItem(i); + if(item->text(1) == url) + return item; + } + qDebug("Cannot find url %s in feeds list", (const char*)url.toLocal8Bit()); + Q_ASSERT(false); // Should never go through here + return (QTreeWidgetItem*)0; +} + +void RSSImp::updateFeedIcon(QString url, QString icon_path){ + QTreeWidgetItem *item = getTreeItemFromUrl(url); + item->setData(0,Qt::DecorationRole, QVariant(QIcon(icon_path))); +} + +void RSSImp::updateFeedNbNews(QString url){ + QTreeWidgetItem *item = getTreeItemFromUrl(url); + RssStream *stream = rssmanager->getFeed(url); + item->setText(0, stream->getAliasOrUrl() + QString::fromUtf8(" (") + QString::number(stream->getNbUnRead(), 10)+ QString(")")); +} + +void RSSImp::updateFeedInfos(QString url, QString aliasOrUrl, unsigned int nbUnread){ + QTreeWidgetItem *item = getTreeItemFromUrl(url); + RssStream *stream = rssmanager->getFeed(url); + item->setText(0, aliasOrUrl + QString::fromUtf8(" (") + QString::number(nbUnread, 10)+ QString(")")); + item->setData(0,Qt::DecorationRole, QVariant(QIcon(stream->getIconPath()))); + item->setToolTip(0, QString::fromUtf8("")+tr("Description:")+QString::fromUtf8(" ")+stream->getDescription()+QString::fromUtf8("
")+tr("url:")+QString::fromUtf8(" ")+stream->getUrl()+QString::fromUtf8("
")+tr("Last refresh:")+QString::fromUtf8(" ")+stream->getLastRefreshElapsedString()); + // If the feed is selected, update the displayed news + if(selectedFeedUrl == url){ + refreshNewsList(getTreeItemFromUrl(url), 0); + } +} + +RSSImp::RSSImp(bittorrent *BTSession) : QWidget(), BTSession(BTSession){ + setupUi(this); + // icons of bottom buttons + addStream_button->setIcon(QIcon(QString::fromUtf8(":/Icons/oxygen/subscribe.png"))); + delStream_button->setIcon(QIcon(QString::fromUtf8(":/Icons/oxygen/unsubscribe.png"))); + refreshAll_button->setIcon(QIcon(QString::fromUtf8(":/Icons/refresh.png"))); + actionMark_all_as_read->setIcon(QIcon(QString::fromUtf8(":/Icons/oxygen/button_ok.png"))); + // icons of right-click menu + actionDelete->setIcon(QIcon(QString::fromUtf8(":/Icons/oxygen/unsubscribe16.png"))); + actionRename->setIcon(QIcon(QString::fromUtf8(":/Icons/oxygen/log.png"))); + actionRefresh->setIcon(QIcon(QString::fromUtf8(":/Icons/refresh.png"))); + actionCreate->setIcon(QIcon(QString::fromUtf8(":/Icons/oxygen/subscribe16.png"))); + actionRefreshAll->setIcon(QIcon(QString::fromUtf8(":/Icons/refresh.png"))); + + // Hide second column (url) + listStreams->hideColumn(1); + + rssmanager = new RssManager(BTSession); + fillFeedsList(); + connect(rssmanager, SIGNAL(feedInfosChanged(QString, QString, unsigned int)), this, SLOT(updateFeedInfos(QString, QString, unsigned int))); + connect(rssmanager, SIGNAL(feedIconChanged(QString, QString)), this, SLOT(updateFeedIcon(QString, QString))); + + connect(listStreams, SIGNAL(customContextMenuRequested(const QPoint&)), this, SLOT(displayRSSListMenu(const QPoint&))); + connect(listNews, SIGNAL(customContextMenuRequested(const QPoint&)), this, SLOT(displayItemsListMenu(const QPoint&))); + + connect(actionDelete, SIGNAL(triggered()), this, SLOT(on_delStream_button_clicked())); + connect(actionRename, SIGNAL(triggered()), this, SLOT(renameStream())); + connect(actionRefresh, SIGNAL(triggered()), this, SLOT(refreshSelectedStreams())); + connect(actionCreate, SIGNAL(triggered()), this, SLOT(createStream())); + connect(actionRefreshAll, SIGNAL(triggered()), this, SLOT(refreshAllStreams())); + connect(actionCopy_feed_URL, SIGNAL(triggered()), this, SLOT(copySelectedFeedsURL())); + connect(actionRSS_feed_downloader, SIGNAL(triggered()), this, SLOT(showFeedDownloader())); + + connect(actionOpen_news_URL, SIGNAL(triggered()), this, SLOT(openNewsUrl())); + connect(actionDownload_torrent, SIGNAL(triggered()), this, SLOT(downloadTorrent())); + + connect(listStreams, SIGNAL(itemClicked(QTreeWidgetItem*,int)), this, SLOT(refreshNewsList(QTreeWidgetItem*,int))); + connect(listNews, SIGNAL(itemClicked(QListWidgetItem *)), this, SLOT(refreshTextBrowser(QListWidgetItem *))); + connect(listNews, SIGNAL(itemDoubleClicked(QListWidgetItem *)), this, SLOT(downloadTorrent())); + refreshTimeTimer = new QTimer(this); + connect(refreshTimeTimer, SIGNAL(timeout()), this, SLOT(updateLastRefreshedTimeForStreams())); + refreshTimeTimer->start(60000); // 1min + // Select first news of first feed + selectFirstFeed(); + // Refresh all feeds + rssmanager->refreshAll(); + // Restore sliders position + restoreSlidersPosition(); + // Bind saveSliders slots + connect(splitter_v, SIGNAL(splitterMoved(int, int)), this, SLOT(saveSlidersPosition())); + connect(splitter_h, SIGNAL(splitterMoved(int, int)), this, SLOT(saveSlidersPosition())); + qDebug("RSSImp constructed"); +} + +void RSSImp::selectFirstFeed(){ + if(listStreams->topLevelItemCount()){ + QTreeWidgetItem *first = listStreams->topLevelItem(0); + listStreams->setCurrentItem(first); + selectedFeedUrl = first->text(1); + } +} + +void RSSImp::selectFirstNews(){ + if(listNews->count()){ + listNews->setCurrentRow(0); + refreshTextBrowser(listNews->currentItem()); + } +} + +RSSImp::~RSSImp(){ + qDebug("Deleting RSSImp..."); + delete refreshTimeTimer; + delete rssmanager; + qDebug("RSSImp deleted"); +} diff --git a/src/rss_imp.h b/src/rss_imp.h index 81f2eacb1e..b8f3b15a22 100644 --- a/src/rss_imp.h +++ b/src/rss_imp.h @@ -36,6 +36,7 @@ class QTimer; class RssManager; +class bittorrent; class RSSImp : public QWidget, public Ui::RSS{ Q_OBJECT @@ -44,6 +45,7 @@ class RSSImp : public QWidget, public Ui::RSS{ RssManager *rssmanager; QTimer *refreshTimeTimer; QString selectedFeedUrl; + bittorrent *BTSession; public slots: void on_delStream_button_clicked(); @@ -52,8 +54,10 @@ class RSSImp : public QWidget, public Ui::RSS{ void on_addStream_button_clicked(); void on_refreshAll_button_clicked(); void displayRSSListMenu(const QPoint&); + void displayItemsListMenu(const QPoint&); void renameStream(); void refreshSelectedStreams(); + void copySelectedFeedsURL(); void createStream(); void refreshAllStreams(); void refreshNewsList(QTreeWidgetItem* item, int); @@ -61,7 +65,8 @@ class RSSImp : public QWidget, public Ui::RSS{ void updateLastRefreshedTimeForStreams(); void updateFeedIcon(QString url, QString icon_path); void updateFeedInfos(QString url, QString aliasOrUrl, unsigned int nbUnread); - void openInBrowser(QListWidgetItem *); + void openNewsUrl(); + void downloadTorrent(); void fillFeedsList(); void selectFirstFeed(); void selectFirstNews(); @@ -69,9 +74,10 @@ class RSSImp : public QWidget, public Ui::RSS{ void on_actionMark_all_as_read_triggered(); void saveSlidersPosition(); void restoreSlidersPosition(); + void showFeedDownloader(); public: - RSSImp(); + RSSImp(bittorrent *BTSession); ~RSSImp(); QTreeWidgetItem* getTreeItemFromUrl(QString url) const; }; diff --git a/src/src.pro b/src/src.pro index 8789545daf..00e19da82e 100644 --- a/src/src.pro +++ b/src/src.pro @@ -14,7 +14,7 @@ CONFIG += qt \ network # Update this VERSION for each release -DEFINES += VERSION=\\\"v1.5.0alpha\\\" +DEFINES += VERSION=\\\"v1.5.0beta1\\\" DEFINES += VERSION_MAJOR=1 DEFINES += VERSION_MINOR=5 DEFINES += VERSION_BUGFIX=0 @@ -183,7 +183,8 @@ HEADERS += GUI.h \ console_imp.h \ ico.h \ stacktrace.h \ - torrentPersistentData.h + torrentPersistentData.h \ + FeedDownloader.h FORMS += MainWindow.ui \ options.ui \ about.ui \ @@ -201,7 +202,8 @@ FORMS += MainWindow.ui \ engineSelect.ui \ pluginSource.ui \ trackersAdd.ui \ - console.ui + console.ui \ + FeedDownloader.ui SOURCES += GUI.cpp \ main.cpp \ options_imp.cpp \ diff --git a/src/torrentPersistentData.h b/src/torrentPersistentData.h index 3d791e9776..d76cae16a5 100644 --- a/src/torrentPersistentData.h +++ b/src/torrentPersistentData.h @@ -145,7 +145,7 @@ class TorrentPersistentData { static void saveTorrentPersistentData(QTorrentHandle h, bool is_magnet = false) { Q_ASSERT(h.is_valid()); - qDebug("Saving persistent data for %s", h.hash().toUtf8().data()); + qDebug("Saving persistent data for %s", h.hash().toLocal8Bit().data()); // First, remove temp data TorrentTempData::deleteTempData(h.hash()); Q_ASSERT(!TorrentTempData::hasTempData(h.hash())); @@ -187,7 +187,7 @@ class TorrentPersistentData { // Save data all_data[h.hash()] = data; settings.setValue("torrents", all_data); - qDebug("TorrentPersistentData: Saving save_path %s, hash: %s", h.save_path().toUtf8().data(), h.hash().toUtf8().data()); + qDebug("TorrentPersistentData: Saving save_path %s, hash: %s", h.save_path().toLocal8Bit().data(), h.hash().toLocal8Bit().data()); } static void saveTrackers(QTorrentHandle h) { @@ -233,7 +233,7 @@ class TorrentPersistentData { data["save_path"] = save_path; all_data[hash] = data; settings.setValue("torrents", all_data); - qDebug("TorrentPersistentData: Saving save_path: %s, hash: %s", save_path.toUtf8().data(), hash.toUtf8().data()); + qDebug("TorrentPersistentData: Saving save_path: %s, hash: %s", save_path.toLocal8Bit().data(), hash.toLocal8Bit().data()); } static void saveUrlSeeds(QTorrentHandle h) { @@ -295,7 +295,7 @@ class TorrentPersistentData { QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent-resume")); QHash all_data = settings.value("torrents", QHash()).toHash(); QHash data = all_data[hash].toHash(); - qDebug("TorrentPersistentData: getSavePath %s", data["save_path"].toString().toUtf8().data()); + qDebug("TorrentPersistentData: getSavePath %s", data["save_path"].toString().toLocal8Bit().data()); return data["save_path"].toString(); }