From 37027c04804778a811985ff3d51b994e32a074fe Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Wed, 4 Apr 2007 12:01:32 +0000 Subject: [PATCH] - A lot of work on "Finished torrents are moved to a new tab". It still needs improvements but most of it is working - Fixed pressing return in search field to launch search --- Changelog | 1 + src/FinishedTorrents.cpp | 141 ++++++++++++ src/FinishedTorrents.h | 40 +--- src/GUI.cpp | 192 ++++++++-------- src/GUI.h | 1 + src/lang/qbittorrent_bg.qm | Bin 33724 -> 34677 bytes src/lang/qbittorrent_bg.ts | 230 +++++++++++++------ src/lang/qbittorrent_ca.qm | Bin 31922 -> 32841 bytes src/lang/qbittorrent_ca.ts | 230 +++++++++++++------ src/lang/qbittorrent_da.qm | Bin 33201 -> 34179 bytes src/lang/qbittorrent_da.ts | 232 ++++++++++++++------ src/lang/qbittorrent_de.qm | Bin 34990 -> 35919 bytes src/lang/qbittorrent_de.ts | 231 +++++++++++++------ src/lang/qbittorrent_el.qm | Bin 35849 -> 36828 bytes src/lang/qbittorrent_el.ts | 230 +++++++++++++------ src/lang/qbittorrent_en.qm | Bin 20794 -> 21634 bytes src/lang/qbittorrent_en.ts | 402 ++++++++++++++++++++-------------- src/lang/qbittorrent_es.qm | Bin 35731 -> 36772 bytes src/lang/qbittorrent_es.ts | 230 +++++++++++++------ src/lang/qbittorrent_fi.qm | Bin 31231 -> 32140 bytes src/lang/qbittorrent_fi.ts | 231 +++++++++++++------ src/lang/qbittorrent_fr.qm | Bin 36355 -> 37326 bytes src/lang/qbittorrent_fr.ts | 234 +++++++++++++------- src/lang/qbittorrent_it.qm | Bin 35069 -> 35914 bytes src/lang/qbittorrent_it.ts | 231 +++++++++++++------ src/lang/qbittorrent_ko.qm | Bin 28144 -> 29025 bytes src/lang/qbittorrent_ko.ts | 230 +++++++++++++------ src/lang/qbittorrent_nb.qm | Bin 34188 -> 35155 bytes src/lang/qbittorrent_nb.ts | 231 +++++++++++++------ src/lang/qbittorrent_nl.qm | Bin 34159 -> 35114 bytes src/lang/qbittorrent_nl.ts | 230 +++++++++++++------ src/lang/qbittorrent_pl.qm | Bin 34461 -> 35448 bytes src/lang/qbittorrent_pl.ts | 230 +++++++++++++------ src/lang/qbittorrent_pt.qm | Bin 35297 -> 36274 bytes src/lang/qbittorrent_pt.ts | 230 +++++++++++++------ src/lang/qbittorrent_ro.qm | Bin 31882 -> 32795 bytes src/lang/qbittorrent_ro.ts | 230 +++++++++++++------ src/lang/qbittorrent_ru.qm | Bin 34556 -> 35505 bytes src/lang/qbittorrent_ru.ts | 230 +++++++++++++------ src/lang/qbittorrent_sk.qm | Bin 34372 -> 35277 bytes src/lang/qbittorrent_sk.ts | 230 +++++++++++++------ src/lang/qbittorrent_sv.qm | Bin 33533 -> 34511 bytes src/lang/qbittorrent_sv.ts | 232 ++++++++++++++------ src/lang/qbittorrent_tr.qm | Bin 31164 -> 32077 bytes src/lang/qbittorrent_tr.ts | 230 +++++++++++++------ src/lang/qbittorrent_uk.qm | Bin 34506 -> 35425 bytes src/lang/qbittorrent_uk.ts | 230 +++++++++++++------ src/lang/qbittorrent_zh.qm | Bin 25789 -> 26660 bytes src/lang/qbittorrent_zh.ts | 230 +++++++++++++------ src/lang/qbittorrent_zh_HK.qm | Bin 22971 -> 23828 bytes src/lang/qbittorrent_zh_HK.ts | 236 +++++++++++++------- src/search.ui | 19 +- src/src.pro | 3 +- 53 files changed, 3991 insertions(+), 1886 deletions(-) create mode 100644 src/FinishedTorrents.cpp diff --git a/Changelog b/Changelog index 1af62ade5..8a31a451a 100644 --- a/Changelog +++ b/Changelog @@ -1,5 +1,6 @@ * Unknown - Christophe Dumez - v0.10.0 - FEATURE: Added UPnP port forwarding support + - FEATURE: Finished torrents are moved to another tab - FEATURE: Display more infos about the torrent in its properties - FEATURE: Allow the user to edit torrents' trackers - FEATURE: Allow user to change qBT's style (Plastique, Cleanlooks, Motif, CDE, MacOSX, WinXP) diff --git a/src/FinishedTorrents.cpp b/src/FinishedTorrents.cpp new file mode 100644 index 000000000..90a1c42fa --- /dev/null +++ b/src/FinishedTorrents.cpp @@ -0,0 +1,141 @@ +/* + * 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. + * + * Contact : chris@qbittorrent.org + */ +#include "FinishedTorrents.h" +#include "misc.h" +#include "GUI.h" +#include + +FinishedTorrents::FinishedTorrents(QObject *parent, bittorrent *BTSession){ + setupUi(this); + nbFinished = 0; + ((GUI*)parent)->setTabText(1, tr("Finished") +" (0)"); + this->parent = parent; + this->BTSession = BTSession; + finishedListModel = new QStandardItemModel(0,9); + finishedListModel->setHeaderData(NAME, Qt::Horizontal, tr("Name", "i.e: file name")); + finishedListModel->setHeaderData(SIZE, Qt::Horizontal, tr("Size", "i.e: file size")); + finishedListModel->setHeaderData(PROGRESS, Qt::Horizontal, tr("Progress", "i.e: % downloaded")); + finishedListModel->setHeaderData(DLSPEED, Qt::Horizontal, tr("DL Speed", "i.e: Download speed")); + finishedListModel->setHeaderData(UPSPEED, Qt::Horizontal, tr("UP Speed", "i.e: Upload speed")); + finishedListModel->setHeaderData(SEEDSLEECH, Qt::Horizontal, tr("Seeds/Leechs", "i.e: full/partial sources")); + finishedListModel->setHeaderData(STATUS, Qt::Horizontal, tr("Status")); + finishedListModel->setHeaderData(ETA, Qt::Horizontal, tr("ETA", "i.e: Estimated Time of Arrival / Time left")); + finishedList->setModel(finishedListModel); + // Hide hash column + finishedList->hideColumn(HASH); + finishedListDelegate = new DLListDelegate(); + finishedList->setItemDelegate(finishedListDelegate); +} + +FinishedTorrents::~FinishedTorrents(){ + delete finishedListDelegate; + delete finishedListModel; +} + +void FinishedTorrents::addFinishedSHA(QString hash){ + if(finishedSHAs.indexOf(hash) == -1) { + finishedSHAs << hash; + int row = finishedListModel->rowCount(); + torrent_handle h = BTSession->getTorrentHandle(hash); + // Adding torrent to download list + finishedListModel->insertRow(row); + finishedListModel->setData(finishedListModel->index(row, NAME), QVariant(h.name().c_str())); + finishedListModel->setData(finishedListModel->index(row, SIZE), QVariant((qlonglong)h.get_torrent_info().total_size())); + finishedListModel->setData(finishedListModel->index(row, DLSPEED), QVariant((double)0.)); + finishedListModel->setData(finishedListModel->index(row, UPSPEED), QVariant((double)0.)); + finishedListModel->setData(finishedListModel->index(row, SEEDSLEECH), QVariant("0/0")); + finishedListModel->setData(finishedListModel->index(row, ETA), QVariant((qlonglong)-1)); + finishedListModel->setData(finishedListModel->index(row, HASH), QVariant(hash)); + finishedListModel->setData(finishedListModel->index(row, PROGRESS), QVariant((double)1.)); + // Start the torrent if it was paused + if(h.is_paused()) { + h.resume(); + if(QFile::exists(misc::qBittorrentPath()+"BT_backup"+QDir::separator()+hash+".paused")) { + QFile::remove(misc::qBittorrentPath()+"BT_backup"+QDir::separator()+hash+".paused"); + } + } + finishedListModel->setData(finishedListModel->index(row, STATUS), QVariant(tr("Finished", "i.e: Torrent has finished downloading"))); + finishedListModel->setData(finishedListModel->index(row, NAME), QVariant(QIcon(":/Icons/skin/seeding.png")), Qt::DecorationRole); + setRowColor(row, "orange"); + // Create .finished file + QFile finished_file(misc::qBittorrentPath()+"BT_backup"+QDir::separator()+hash+".finished"); + finished_file.open(QIODevice::WriteOnly | QIODevice::Text); + finished_file.close(); + // Update the number of finished torrents + ++nbFinished; + ((GUI*)parent)->setTabText(1, tr("Finished") +" ("+QString(misc::toString(nbFinished).c_str())+")"); + } else { + qDebug("Problem: this torrent (%s) has finished twice...", hash.toStdString().c_str()); + } +} + +// Set the color of a row in data model +void FinishedTorrents::setRowColor(int row, const QString& color){ + for(int i=0; icolumnCount(); ++i){ + finishedListModel->setData(finishedListModel->index(row, i), QVariant(QColor(color)), Qt::TextColorRole); + } +} + +void FinishedTorrents::updateFinishedList(){ +// qDebug("Updating finished list"); + QString hash; + foreach(hash, finishedSHAs){ + torrent_handle h = BTSession->getTorrentHandle(hash); + if(!h.is_valid()){ + qDebug("Problem: This torrent is not valid in finished list"); + continue; + } + if(h.is_paused()) continue; + torrent_status torrentStatus = h.status(); + if(torrentStatus.state == torrent_status::downloading) { + // What are you doing here, go back to download tab! + qDebug("Info: a torrent was moved from finished to download tab"); + deleteFromFinishedList(hash); + continue; + } + QList items = finishedListModel->findItems(hash, Qt::MatchExactly, HASH ); + if(items.size() != 1){ + qDebug("Problem: Can't find torrent in finished list"); + continue; + } + int row = items.at(0)->row(); + finishedListModel->setData(finishedListModel->index(row, UPSPEED), QVariant((double)torrentStatus.upload_payload_rate)); + finishedListModel->setData(finishedListModel->index(row, SEEDSLEECH), QVariant(QString(misc::toString(torrentStatus.num_seeds, true).c_str())+"/"+QString(misc::toString(torrentStatus.num_peers - torrentStatus.num_seeds, true).c_str()))); + } +} + +QStringList FinishedTorrents::getFinishedSHAs(){ + return finishedSHAs; +} + +// Will move it to download tab +void FinishedTorrents::deleteFromFinishedList(QString hash){ + finishedSHAs.removeAll(hash); + QList items = finishedListModel->findItems(hash, Qt::MatchExactly, HASH ); + if(items.size() != 1){ + qDebug("Problem: Can't delete torrent from finished list"); + return; + } + finishedListModel->removeRow(finishedListModel->indexFromItem(items.at(0)).row()); + QFile::remove(misc::qBittorrentPath()+"BT_backup"+QDir::separator()+hash+".finished"); + --nbFinished; + ((GUI*)parent)->setTabText(1, tr("Finished") +" ("+QString(misc::toString(nbFinished).c_str())+")"); +} diff --git a/src/FinishedTorrents.h b/src/FinishedTorrents.h index d492ef9c1..1f9560e4e 100644 --- a/src/FinishedTorrents.h +++ b/src/FinishedTorrents.h @@ -30,42 +30,26 @@ class FinishedTorrents : public QWidget, public Ui::seeding{ Q_OBJECT private: + QObject *parent; bittorrent *BTSession; DLListDelegate *finishedListDelegate; QStringList finishedSHAs; QStandardItemModel *finishedListModel; + unsigned int nbFinished; public: - FinishedTorrents(bittorrent *BTSession){ - setupUi(this); - this->BTSession = BTSession; - finishedListModel = new QStandardItemModel(0,9); - finishedListModel->setHeaderData(NAME, Qt::Horizontal, tr("Name", "i.e: file name")); - finishedListModel->setHeaderData(SIZE, Qt::Horizontal, tr("Size", "i.e: file size")); - finishedListModel->setHeaderData(PROGRESS, Qt::Horizontal, tr("Progress", "i.e: % downloaded")); - finishedListModel->setHeaderData(DLSPEED, Qt::Horizontal, tr("DL Speed", "i.e: Download speed")); - finishedListModel->setHeaderData(UPSPEED, Qt::Horizontal, tr("UP Speed", "i.e: Upload speed")); - finishedListModel->setHeaderData(SEEDSLEECH, Qt::Horizontal, tr("Seeds/Leechs", "i.e: full/partial sources")); - finishedListModel->setHeaderData(STATUS, Qt::Horizontal, tr("Status")); - finishedListModel->setHeaderData(ETA, Qt::Horizontal, tr("ETA", "i.e: Estimated Time of Arrival / Time left")); - finishedList->setModel(finishedListModel); - // Hide hash column - finishedList->hideColumn(HASH); - finishedListDelegate = new DLListDelegate(); - finishedList->setItemDelegate(finishedListDelegate); - } + FinishedTorrents(QObject *parent, bittorrent *BTSession); + ~FinishedTorrents(); + // Methods + QStringList getFinishedSHAs(); - ~FinishedTorrents(){ - delete finishedListDelegate; - delete finishedListModel; - } + public slots: + void addFinishedSHA(QString sha); + void updateFinishedList(); + void deleteFromFinishedList(QString hash); - void addFinishedSHA(QString sha){ - if(finishedSHAs.indexOf(sha) == -1) - finishedSHAs << sha; - else - qDebug("Problem: this torrent (%s) has finished twice...", sha.toStdString().c_str()); - } + protected slots: + void setRowColor(int row, const QString& color); }; diff --git a/src/GUI.cpp b/src/GUI.cpp index cbc641da1..9782ef55b 100644 --- a/src/GUI.cpp +++ b/src/GUI.cpp @@ -53,6 +53,18 @@ GUI::GUI(QWidget *parent, QStringList torrentCmdLine) : QMainWindow(parent){ setupUi(this); setWindowTitle(tr("qBittorrent %1", "e.g: qBittorrent v0.x").arg(VERSION)); + // Finished torrents tab + finishedTorrentTab = new FinishedTorrents(this, &BTSession); + tabs->addTab(finishedTorrentTab, tr("Finished")); + tabs->setTabIcon(1, QIcon(QString::fromUtf8(":/Icons/skin/seeding.png"))); + // Search engine tab + searchEngine = new SearchEngine(&BTSession, myTrayIcon); + tabs->addTab(searchEngine, tr("Search")); + tabs->setTabIcon(2, QIcon(QString::fromUtf8(":/Icons/skin/search.png"))); + // RSS tab + rssWidget = new RSSImp(); + tabs->addTab(rssWidget, tr("RSS")); + tabs->setTabIcon(3, QIcon(QString::fromUtf8(":/Icons/rss.png"))); readSettings(); // Setting icons this->setWindowIcon(QIcon(QString::fromUtf8(":/Icons/qbittorrent32.png"))); @@ -105,7 +117,7 @@ GUI::GUI(QWidget *parent, QStringList torrentCmdLine) : QMainWindow(parent){ downloadList->header()->resizeSection(0, 200); } nbTorrents = 0; - tabs->setTabText(0, tr("Transfers") +" (0)"); + tabs->setTabText(0, tr("Downloads") +" (0)"); #ifndef NO_UPNP connect(&BTSession, SIGNAL(noWanServiceDetected()), this, SLOT(displayNoUPnPWanServiceDetected())); connect(&BTSession, SIGNAL(wanServiceDetected()), this, SLOT(displayUPnPWanServiceDetected())); @@ -168,18 +180,6 @@ GUI::GUI(QWidget *parent, QStringList torrentCmdLine) : QMainWindow(parent){ systrayIntegration = false; qDebug("Info: System tray unavailable\n"); } - // Finished torrents tab - finishedTorrentTab = new FinishedTorrents(&BTSession); - tabs->addTab(finishedTorrentTab, tr("Finished")); - tabs->setTabIcon(1, QIcon(QString::fromUtf8(":/Icons/skin/seeding.png"))); - // Search engine tab - searchEngine = new SearchEngine(&BTSession, myTrayIcon); - tabs->addTab(searchEngine, tr("Search")); - tabs->setTabIcon(2, QIcon(QString::fromUtf8(":/Icons/skin/search.png"))); - // RSS tab - rssWidget = new RSSImp(); - tabs->addTab(rssWidget, tr("RSS")); - tabs->setTabIcon(3, QIcon(QString::fromUtf8(":/Icons/rss.png"))); // Start download list refresher refresher = new QTimer(this); connect(refresher, SIGNAL(timeout()), this, SLOT(updateDlList())); @@ -424,86 +424,85 @@ void GUI::updateDlList(bool force){ if(systrayIntegration){ myTrayIcon->setToolTip(""+tr("qBittorrent")+"
"+tr("DL speed: %1 KiB/s", "e.g: Download speed: 10 KiB/s").arg(QString(tmp2))+"
"+tr("UP speed: %1 KiB/s", "e.g: Upload speed: 10 KiB/s").arg(QString(tmp))); // tray icon } - if( !force && (isMinimized() || isHidden() || tabs->currentIndex())){ + if( !force && (isMinimized() || isHidden() || tabs->currentIndex() > 1)){ // No need to update if qBittorrent DL list is hidden return; } + if(tabs->currentIndex()){ + finishedTorrentTab->updateFinishedList(); + return; + } // qDebug("Updating download list"); LCD_UpSpeed->display(tmp); // UP LCD LCD_DownSpeed->display(tmp2); // DL LCD // browse handles std::vector handles = BTSession.getTorrentHandles(); + QStringList finishedSHAs = finishedTorrentTab->getFinishedSHAs(); for(unsigned int i=0; isetData(DLListModel->index(row, UPSPEED), QVariant((double)torrentStatus.upload_payload_rate)); - DLListModel->setData(DLListModel->index(row, STATUS), QVariant(tr("Finished", "i.e: Torrent has finished downloading"))); - DLListModel->setData(DLListModel->index(row, DLSPEED), QVariant((double)0.)); + if(h.is_paused()) continue; + if(finishedSHAs.indexOf(fileHash) != -1) continue; + int row = getRowFromHash(fileHash); + if(row == -1){ + std::cerr << "Error: Could not find filename in download list..\n"; + continue; + } + // Parse download state + torrent_info ti = h.get_torrent_info(); + // Setting download state + switch(torrentStatus.state){ + case torrent_status::finished: + case torrent_status::seeding: + qDebug("Warning: this shouldn't happen, no finished torrents in download tab..."); + break; + case torrent_status::checking_files: + case torrent_status::queued_for_checking: + DLListModel->setData(DLListModel->index(row, STATUS), QVariant(tr("Checking...", "i.e: Checking already downloaded parts..."))); + DLListModel->setData(DLListModel->index(row, NAME), QVariant(QIcon(":/Icons/skin/connecting.png")), Qt::DecorationRole); + setRowColor(row, "grey"); + DLListModel->setData(DLListModel->index(row, PROGRESS), QVariant((double)torrentStatus.progress)); + break; + case torrent_status::connecting_to_tracker: + if(torrentStatus.download_payload_rate > 0){ + // Display "Downloading" status when connecting if download speed > 0 + DLListModel->setData(DLListModel->index(row, STATUS), QVariant(tr("Downloading..."))); + DLListModel->setData(DLListModel->index(row, ETA), QVariant((qlonglong)((ti.total_size()-torrentStatus.total_done)/(double)torrentStatus.download_payload_rate))); + DLListModel->setData(DLListModel->index(row, NAME), QVariant(QIcon(":/Icons/skin/downloading.png")), Qt::DecorationRole); + setRowColor(row, "green"); + }else{ + DLListModel->setData(DLListModel->index(row, STATUS), QVariant(tr("Connecting..."))); DLListModel->setData(DLListModel->index(row, ETA), QVariant((qlonglong)-1)); - DLListModel->setData(DLListModel->index(row, NAME), QVariant(QIcon(":/Icons/skin/seeding.png")), Qt::DecorationRole); - DLListModel->setData(DLListModel->index(row, PROGRESS), QVariant((double)1.)); - setRowColor(row, "orange"); - break; - case torrent_status::checking_files: - case torrent_status::queued_for_checking: - DLListModel->setData(DLListModel->index(row, STATUS), QVariant(tr("Checking...", "i.e: Checking already downloaded parts..."))); DLListModel->setData(DLListModel->index(row, NAME), QVariant(QIcon(":/Icons/skin/connecting.png")), Qt::DecorationRole); setRowColor(row, "grey"); - DLListModel->setData(DLListModel->index(row, PROGRESS), QVariant((double)torrentStatus.progress)); - break; - case torrent_status::connecting_to_tracker: - if(torrentStatus.download_payload_rate > 0){ - // Display "Downloading" status when connecting if download speed > 0 - DLListModel->setData(DLListModel->index(row, STATUS), QVariant(tr("Downloading..."))); - DLListModel->setData(DLListModel->index(row, ETA), QVariant((qlonglong)((ti.total_size()-torrentStatus.total_done)/(double)torrentStatus.download_payload_rate))); - DLListModel->setData(DLListModel->index(row, NAME), QVariant(QIcon(":/Icons/skin/downloading.png")), Qt::DecorationRole); - setRowColor(row, "green"); - }else{ - DLListModel->setData(DLListModel->index(row, STATUS), QVariant(tr("Connecting..."))); - DLListModel->setData(DLListModel->index(row, ETA), QVariant((qlonglong)-1)); - DLListModel->setData(DLListModel->index(row, NAME), QVariant(QIcon(":/Icons/skin/connecting.png")), Qt::DecorationRole); - setRowColor(row, "grey"); - } - DLListModel->setData(DLListModel->index(row, PROGRESS), QVariant((double)torrentStatus.progress)); - DLListModel->setData(DLListModel->index(row, DLSPEED), QVariant((double)torrentStatus.download_payload_rate)); - DLListModel->setData(DLListModel->index(row, UPSPEED), QVariant((double)torrentStatus.upload_payload_rate)); - break; - case torrent_status::downloading: - case torrent_status::downloading_metadata: - if(torrentStatus.download_payload_rate > 0){ - DLListModel->setData(DLListModel->index(row, STATUS), QVariant(tr("Downloading..."))); - DLListModel->setData(DLListModel->index(row, NAME), QVariant(QIcon(":/Icons/skin/downloading.png")), Qt::DecorationRole); - DLListModel->setData(DLListModel->index(row, ETA), QVariant((qlonglong)((ti.total_size()-torrentStatus.total_done)/(double)torrentStatus.download_payload_rate))); - setRowColor(row, "green"); - }else{ - DLListModel->setData(DLListModel->index(row, STATUS), QVariant(tr("Stalled", "i.e: State of a torrent whose download speed is 0kb/s"))); - DLListModel->setData(DLListModel->index(row, NAME), QVariant(QIcon(":/Icons/skin/stalled.png")), Qt::DecorationRole); - DLListModel->setData(DLListModel->index(row, ETA), QVariant((qlonglong)-1)); - setRowColor(row, "black"); - } - DLListModel->setData(DLListModel->index(row, PROGRESS), QVariant((double)torrentStatus.progress)); - DLListModel->setData(DLListModel->index(row, DLSPEED), QVariant((double)torrentStatus.download_payload_rate)); - DLListModel->setData(DLListModel->index(row, UPSPEED), QVariant((double)torrentStatus.upload_payload_rate)); - break; - default: + } + DLListModel->setData(DLListModel->index(row, PROGRESS), QVariant((double)torrentStatus.progress)); + DLListModel->setData(DLListModel->index(row, DLSPEED), QVariant((double)torrentStatus.download_payload_rate)); + DLListModel->setData(DLListModel->index(row, UPSPEED), QVariant((double)torrentStatus.upload_payload_rate)); + break; + case torrent_status::downloading: + case torrent_status::downloading_metadata: + if(torrentStatus.download_payload_rate > 0){ + DLListModel->setData(DLListModel->index(row, STATUS), QVariant(tr("Downloading..."))); + DLListModel->setData(DLListModel->index(row, NAME), QVariant(QIcon(":/Icons/skin/downloading.png")), Qt::DecorationRole); + DLListModel->setData(DLListModel->index(row, ETA), QVariant((qlonglong)((ti.total_size()-torrentStatus.total_done)/(double)torrentStatus.download_payload_rate))); + setRowColor(row, "green"); + }else{ + DLListModel->setData(DLListModel->index(row, STATUS), QVariant(tr("Stalled", "i.e: State of a torrent whose download speed is 0kb/s"))); + DLListModel->setData(DLListModel->index(row, NAME), QVariant(QIcon(":/Icons/skin/stalled.png")), Qt::DecorationRole); DLListModel->setData(DLListModel->index(row, ETA), QVariant((qlonglong)-1)); - } - DLListModel->setData(DLListModel->index(row, SEEDSLEECH), QVariant(QString(misc::toString(torrentStatus.num_seeds, true).c_str())+"/"+QString(misc::toString(torrentStatus.num_peers - torrentStatus.num_seeds, true).c_str()))); + setRowColor(row, "black"); + } + DLListModel->setData(DLListModel->index(row, PROGRESS), QVariant((double)torrentStatus.progress)); + DLListModel->setData(DLListModel->index(row, DLSPEED), QVariant((double)torrentStatus.download_payload_rate)); + DLListModel->setData(DLListModel->index(row, UPSPEED), QVariant((double)torrentStatus.upload_payload_rate)); + break; + default: + DLListModel->setData(DLListModel->index(row, ETA), QVariant((qlonglong)-1)); } + DLListModel->setData(DLListModel->index(row, SEEDSLEECH), QVariant(QString(misc::toString(torrentStatus.num_seeds, true).c_str())+"/"+QString(misc::toString(torrentStatus.num_peers - torrentStatus.num_seeds, true).c_str()))); }catch(invalid_handle e){ continue; } @@ -511,6 +510,10 @@ void GUI::updateDlList(bool force){ // qDebug("Updated Download list"); } +void GUI::setTabText(int index, QString text){ + tabs->setTabText(index, text); +} + void GUI::sortDownloadListFloat(int index, Qt::SortOrder sortOrder){ QList > lines; // insertion sorting @@ -670,21 +673,6 @@ void GUI::closeEvent(QCloseEvent *e){ return; } } - // Clean finished torrents on exit if asked for - if(settings.value("Options/Misc/Behaviour/ClearFinishedDownloads", true).toBool()){ - torrent_handle h; - // XXX: Probably move this to the bittorrent part - QDir torrentBackup(misc::qBittorrentPath() + "BT_backup"); - foreach(h, BTSession.getFinishedTorrentHandles()){ - QString fileHash = QString(misc::toString(h.info_hash()).c_str()); - torrentBackup.remove(fileHash+".torrent"); - torrentBackup.remove(fileHash+".fastresume"); - torrentBackup.remove(fileHash+".paused"); - torrentBackup.remove(fileHash+".incremental"); - torrentBackup.remove(fileHash+".pieces"); - torrentBackup.remove(fileHash+".savepath"); - } - } // Save DHT entry BTSession.saveDHTEntry(); // Save window size, columns size @@ -814,7 +802,7 @@ void GUI::deletePermanently(){ // Update info bar setInfoBar(tr("'%1' was removed.", "'xxx.avi' was removed.").arg(fileName)); --nbTorrents; - tabs->setTabText(0, tr("Transfers") +" ("+QString(misc::toString(nbTorrents).c_str())+")"); + tabs->setTabText(0, tr("Downloads") +" ("+QString(misc::toString(nbTorrents).c_str())+")"); } } } @@ -855,7 +843,7 @@ void GUI::deleteSelection(){ // Update info bar setInfoBar(tr("'%1' was removed.", "'xxx.avi' was removed.").arg(fileName)); --nbTorrents; - tabs->setTabText(0, tr("Transfers") +" ("+QString(misc::toString(nbTorrents).c_str())+")"); + tabs->setTabText(0, tr("Downloads") +" ("+QString(misc::toString(nbTorrents).c_str())+")"); } } } @@ -863,8 +851,12 @@ void GUI::deleteSelection(){ // Called when a torrent is added void GUI::torrentAdded(const QString& path, torrent_handle& h, bool fastResume){ - int row = DLListModel->rowCount(); QString hash = QString(misc::toString(h.info_hash()).c_str()); + if(QFile::exists(misc::qBittorrentPath()+"BT_backup"+QDir::separator()+hash+".finished")){ + finishedTorrentTab->addFinishedSHA(hash); + return; + } + int row = DLListModel->rowCount(); // Adding torrent to download list DLListModel->insertRow(row); DLListModel->setData(DLListModel->index(row, NAME), QVariant(h.name().c_str())); @@ -890,7 +882,7 @@ void GUI::torrentAdded(const QString& path, torrent_handle& h, bool fastResume){ setInfoBar(tr("'%1' resumed. (fast resume)", "'/home/y/xxx.torrent' was resumed. (fast resume)").arg(path)); } ++nbTorrents; - tabs->setTabText(0, tr("Transfers") +" ("+QString(misc::toString(nbTorrents).c_str())+")"); + tabs->setTabText(0, tr("Downloads") +" ("+QString(misc::toString(nbTorrents).c_str())+")"); } // Called when trying to add a duplicate torrent @@ -1178,6 +1170,18 @@ void GUI::finishedTorrent(torrent_handle& h){ QString fileName = QString(h.name().c_str()); setInfoBar(tr("%1 has finished downloading.", "e.g: xxx.avi has finished downloading.").arg(fileName)); int useOSD = settings.value("Options/OSDEnabled", 1).toInt(); + // Add it to finished tab + QString hash = QString(misc::toString(h.info_hash()).c_str()); + if(QFile::exists(misc::qBittorrentPath()+"BT_backup"+QDir::separator()+hash+".finished")) return; + finishedTorrentTab->addFinishedSHA(hash); + QList items = DLListModel->findItems(hash, Qt::MatchExactly, HASH ); + if(items.size() != 1){ + qDebug("Problem: Can't delete finished torrent from download list"); + return; + } + DLListModel->removeRow(DLListModel->indexFromItem(items.at(0)).row()); + --nbTorrents; + tabs->setTabText(0, tr("Downloads") +" ("+QString(misc::toString(nbTorrents).c_str())+")"); if(systrayIntegration && (useOSD == 1 || (useOSD == 2 && (isMinimized() || isHidden())))) { myTrayIcon->showMessage(tr("Download finished"), tr("%1 has finished downloading.", "e.g: xxx.avi has finished downloading.").arg(fileName), QSystemTrayIcon::Information, TIME_TRAY_BALLOON); } diff --git a/src/GUI.h b/src/GUI.h index 2770587cc..fe0439adf 100644 --- a/src/GUI.h +++ b/src/GUI.h @@ -163,6 +163,7 @@ class GUI : public QMainWindow, private Ui::MainWindow{ void portListeningFailure(); void trackerError(const QString& hash, const QString& time, const QString& msg); void trackerAuthenticationRequired(torrent_handle& h); + void setTabText(int index, QString text); protected: void closeEvent(QCloseEvent *); diff --git a/src/lang/qbittorrent_bg.qm b/src/lang/qbittorrent_bg.qm index ba82352f022858b72b22f3e5153813a375521a88..df7676fe54eee6a9cf5cc9d6627d60dad327f06d 100644 GIT binary patch delta 3726 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 KZ;oEpSNb2{JWfXd diff --git a/src/lang/qbittorrent_bg.ts b/src/lang/qbittorrent_bg.ts index ad19576ed..935c08cca 100644 --- a/src/lang/qbittorrent_bg.ts +++ b/src/lang/qbittorrent_bg.ts @@ -695,10 +695,71 @@ Copyright © 2006 на Christophe Dumez<br> + + FinishedTorrents + + + Finished + Завършен + + + + 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 + Даващи/Вземащи + + + + Status + Състояние + + + + ETA + i.e: Estimated Time of Arrival / Time left + ЕТА + + + + Finished + i.e: Torrent has finished downloading + Завършен + + GUI - + Open Torrent Files Отвори Торент Файлове @@ -713,7 +774,7 @@ Copyright © 2006 на Christophe Dumez<br> Неизвестен - + This file is either corrupted or this isn't a torrent. Файла или е разрушен или не е торент. @@ -723,17 +784,17 @@ Copyright © 2006 на Christophe Dumez<br> Сигурни ли сте че искате да изтриете всички файлове от списъка за сваляне? - + &Yes &Да - + &No &Не - + Are you sure you want to delete the selected item(s) in download list? Сигурни ли сте че искате да изтриете избраните файлове от списъка за сваляне? @@ -753,9 +814,9 @@ Copyright © 2006 на Christophe Dumez<br> kb/с - + Finished - Завършен + Завършен @@ -763,12 +824,12 @@ Copyright © 2006 на Christophe Dumez<br> Проверка... - + Connecting... Свързване... - + Downloading... Сваляне... @@ -808,7 +869,7 @@ Copyright © 2006 на Christophe Dumez<br> Не мога да създам директория: - + Torrent Files Торент Файлове @@ -880,12 +941,12 @@ Copyright © 2006 на Christophe Dumez<br> qBittorrent - + qBittorrent qBittorrent - + Are you sure? -- qBittorrent Сигурни ли сте? -- qBittorrent @@ -926,7 +987,7 @@ Copyright © 2006 на Christophe Dumez<br> е завършил свалянето. - + Couldn't listen on any of the given ports. Невъзможно изчакване от дадените портове. @@ -1112,7 +1173,7 @@ Changelog: UP Скорост - + Status Състояние @@ -1143,17 +1204,17 @@ Changelog: Отложен - + Paused Пауза - + Preview process already running Процеса на оглед се изпълнява - + There is already another preview process running. Please close the other one first. Вече се изпълнява друг процес на оглед. @@ -1185,7 +1246,7 @@ Please close the other one first. Transfers - Трансфери + Трансфери @@ -1193,12 +1254,12 @@ Please close the other one first. Сигурни ли сте че искате да напуснете qBittorrent? - + Are you sure you want to delete the selected item(s) in download list and in hard drive? Сигурни ли сте че искате да изтриете избраните файлове от списъка за сваляне и от твърдия диск? - + Download finished Свалянето завърши @@ -1214,64 +1275,64 @@ Please close the other one first. Търсачка - + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - + Connection status: Състояние на връзката: - + Offline Извън мрежата - + No peers found... Няма връзки... - + 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 Даващи/Вземащи - + ETA i.e: Estimated Time of Arrival / Time left ЕТА @@ -1289,19 +1350,19 @@ Please close the other one first. Вземащи - + qBittorrent %1 started. e.g: qBittorrent v0.x started. 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/с @@ -1310,57 +1371,57 @@ Please close the other one first. Finished i.e: Torrent has finished downloading - Завършен + Завършен - + Checking... i.e: Checking already downloaded parts... Проверка... - + Stalled i.e: State of a torrent whose download speed is 0kb/s Отложен - + Are you sure you want to quit? Сигурни ли сте че искате да напуснете? - + '%1' was removed. 'xxx.avi' was removed. '%1' бе премахнат. - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. '%1' добавен в листа за сваляне. - + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) '%1' бе възстановен. (бързо възстановяване) - + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. '%1' вече е в листа за сваляне. - + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' Не мога да декодирам торент-файла: '%1' - + None i.e: No error message Няма @@ -1372,47 +1433,47 @@ Please close the other one first. Прослушване на порт: %1 - + All downloads were paused. Всички сваляния са в пауза. - + '%1' paused. xxx.avi paused. '%1' е в пауза. - + Connecting... i.e: Connecting to the tracker... Свързване... - + All downloads were resumed. Всички сваляния са възстановени. - + '%1' resumed. e.g: xxx.avi resumed. '%1' бе възстановен. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. '%1' завърши свалянето. - + I/O Error i.e: Input/Output Error В/И Грешка - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused Намерена грешка при четене или записване на %1. Вероятно диска е пълен, свалянето е в пауза @@ -1424,23 +1485,23 @@ Please close the other one first. Намерена грешка (пълен диск?), '%1' е в пауза. - + Connection Status: Състояние на връзката: - + Online Свързан - + Firewalled? i.e: Behind a firewall/router? Проблем с Firewall-а? - + No incoming connections... Няма входящи връзки... @@ -1466,79 +1527,84 @@ Please close the other one first. Резултати - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... Сваляне на '%1', моля изчакайте... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Намерена грешка (пълен диск?), '%1' е в пауза. - + Search Търси - + RSS - + UPnP: no WAN service detected... - + UPnP: WAN service detected! - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 - + DHT support [ON], port: %1 - + DHT support [OFF] - + UPnP support [ON], port: %1 - + UPnP support [OFF] - + PeX support [ON] - + PeX support [OFF] - + The download list is not empty. Are you sure you want to quit qBittorrent? + + + Downloads + + MainWindow @@ -1688,9 +1754,9 @@ Are you sure you want to quit qBittorrent? Характеристики на Торента - + Downloads - Сваляне + Сваляне @@ -1790,7 +1856,7 @@ Are you sure you want to quit qBittorrent? Transfers - Трансфери + Трансфери @@ -2970,6 +3036,24 @@ Changelog: Обнови допълнението за търсене + + seeding + + + Search + Търси + + + + The following torrents are finished and shared: + + + + + <u>Note:</u> It is important that you keep sharing your torrents after they are finished for the well being of the network. + + + torrentAdditionDialog diff --git a/src/lang/qbittorrent_ca.qm b/src/lang/qbittorrent_ca.qm index 4d25fbf8b37cf76180d3ed639613c07abf51d1bd..eece0aa092b86dccdf90794917048519f292aeb1 100644 GIT binary patch delta 3654 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 + + FinishedTorrents + + + Finished + Finalitzat + + + + 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 + + + + + Status + Estat + + + + ETA + i.e: Estimated Time of Arrival / Time left + ETA + + + + Finished + i.e: Torrent has finished downloading + Finalitzat + + GUI @@ -741,7 +802,7 @@ Copyright © 2006 by Christophe Dumez<br> iniciat. - + qBittorrent qBittorrent @@ -761,12 +822,12 @@ Copyright © 2006 by Christophe Dumez<br> Vel. Pujada: - + Open Torrent Files Arxius Torrent oberts - + Torrent Files Arxius Torrent @@ -807,12 +868,12 @@ Copyright © 2006 by Christophe Dumez<br> Deshabilita el decodificador d' arxius torrent: - + This file is either corrupted or this isn't a torrent. Aquest arxiu està corrupte o no es un arxiu torrent. - + Are you sure? -- qBittorrent Estàs segur? -- qBittorrent @@ -822,12 +883,12 @@ Copyright © 2006 by Christophe Dumez<br> Estàs segur de que vols buidar la llista de descàrregues? - + &Yes &Yes - + &No &No @@ -837,7 +898,7 @@ Copyright © 2006 by Christophe Dumez<br> 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? @@ -905,7 +966,7 @@ Copyright © 2006 by Christophe Dumez<br> ha finalitzat la descàrrega. - + Couldn't listen on any of the given ports. No es pot obrir el port especificat. @@ -921,9 +982,9 @@ Copyright © 2006 by Christophe Dumez<br> /s - + Finished - Finalitzat + Finalitzat @@ -931,12 +992,12 @@ Copyright © 2006 by Christophe Dumez<br> Validant... - + Connecting... Conectant... - + Downloading... Descàrregant... @@ -1170,7 +1231,7 @@ Log: Vel. Pujada - + Status Estat @@ -1201,17 +1262,17 @@ Log: Parat - + Paused Pausat - + Preview process already running Previsualitzar els processos que corren - + There is already another preview process running. Please close the other one first. Hi ha un altre procés corrent. @@ -1243,7 +1304,7 @@ Si et plau tanca l'altre primer. Transfers - Transferits + Transferits @@ -1251,12 +1312,12 @@ Si et plau tanca l'altre primer. Estas segur que vols sortir de qBittorrent? - + Are you sure you want to delete the selected item(s) in download list and in hard drive? Estàs segur que vols esborrar els objectes seleccionats de la llista de descàrregues i del disc dur? - + Download finished @@ -1272,64 +1333,64 @@ Si et plau tanca l'altre primer. Motor de Busqueda - + qBittorrent %1 e.g: qBittorrent v0.x - + Connection status: - + Offline - + No peers found... - + 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 - + ETA i.e: Estimated Time of Arrival / Time left ETA @@ -1347,19 +1408,19 @@ Si et plau tanca l'altre primer. Leechers - + qBittorrent %1 started. e.g: qBittorrent v0.x started. - + DL speed: %1 KiB/s e.g: Download speed: 10 KiB/s - + UP speed: %1 KiB/s e.g: Upload speed: 10 KiB/s @@ -1368,125 +1429,125 @@ Si et plau tanca l'altre primer. Finished i.e: Torrent has finished downloading - Finalitzat + Finalitzat - + Checking... i.e: Checking already downloaded parts... Validant... - + Stalled i.e: State of a torrent whose download speed is 0kb/s - + Are you sure you want to quit? - + '%1' was removed. 'xxx.avi' was removed. - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. - + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) - + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. - + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' - + None i.e: No error message Res - + All downloads were paused. - + '%1' paused. xxx.avi paused. - + Connecting... i.e: Connecting to the tracker... Conectant... - + All downloads were resumed. - + '%1' resumed. e.g: xxx.avi resumed. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. - + I/O Error i.e: Input/Output Error I/O Error - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused - + Connection Status: - + Online - + Firewalled? i.e: Behind a firewall/router? - + No incoming connections... @@ -1497,79 +1558,84 @@ Si et plau tanca l'altre primer. Resultats - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. - + Search Cercar - + RSS - + UPnP: no WAN service detected... - + UPnP: WAN service detected! - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 - + DHT support [ON], port: %1 - + DHT support [OFF] - + UPnP support [ON], port: %1 - + UPnP support [OFF] - + PeX support [ON] - + PeX support [OFF] - + The download list is not empty. Are you sure you want to quit qBittorrent? + + + Downloads + + MainWindow @@ -1724,9 +1790,9 @@ Are you sure you want to quit qBittorrent? Estat de la Conexió - + Downloads - Descarregues + Descarregues @@ -1821,7 +1887,7 @@ Are you sure you want to quit qBittorrent? Transfers - Transferits + Transferits @@ -2995,6 +3061,24 @@ Log: Actualitza plugin de Recerca + + seeding + + + Search + Cercar + + + + The following torrents are finished and shared: + + + + + <u>Note:</u> It is important that you keep sharing your torrents after they are finished for the well being of the network. + + + torrentAdditionDialog diff --git a/src/lang/qbittorrent_da.qm b/src/lang/qbittorrent_da.qm index f3ba4ad5b2cca5fa7ca89c6b1b05235f6ba61407..86203c00f0c3176b97e27d668a92dd6b3e18f7fa 100644 GIT binary patch delta 3580 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 Pr>GiPeB3%>?R@cn&h|*> diff --git a/src/lang/qbittorrent_da.ts b/src/lang/qbittorrent_da.ts index c75cd4213..8cbde260a 100644 --- a/src/lang/qbittorrent_da.ts +++ b/src/lang/qbittorrent_da.ts @@ -537,55 +537,116 @@ Copyright © 2006 by Christophe Dumez<br> + + FinishedTorrents + + + Finished + Færdig + + + + 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 + + + + Status + Status + + + + ETA + i.e: Estimated Time of Arrival / Time left + Tid Tilbage + + + + Finished + i.e: Torrent has finished downloading + Færdig + + GUI - + Open Torrent Files Åbn Torrent Filer - + This file is either corrupted or this isn't a torrent. 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? - + Connecting... Forbinder... - + Downloading... Downloader... - + Torrent Files Torrent Filer - + Are you sure? -- qBittorrent Er du sikker? -- qBittorrent - + Couldn't listen on any of the given ports. Kunne ikke lytte på de opgivne porte. @@ -656,7 +717,7 @@ Changelog: Resultater - + Status Status @@ -666,17 +727,17 @@ Changelog: Søgemaskine - + Paused Pauset - + Preview process already running Smugkig kører allerede - + There is already another preview process running. Please close the other one first. En anden Smugkigs proces kører allerede. @@ -685,10 +746,10 @@ Luk venglist denne først. Transfers - Overførsler + Overførsler - + Download finished Download afsluttet @@ -703,69 +764,69 @@ Luk venglist denne først. Er du sikker på at du vil afslutte qBittorrent? - + Are you sure you want to delete the selected item(s) in download list and in hard drive? 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: - + Offline Offline - + No peers found... Ingen kilder fundet... - + 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 - + ETA i.e: Estimated Time of Arrival / Time left Tid Tilbage @@ -783,24 +844,24 @@ Luk venglist denne først. Leechere - + qBittorrent %1 started. e.g: qBittorrent v0.x started. 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 @@ -809,57 +870,57 @@ Luk venglist denne først. Finished i.e: Torrent has finished downloading - Færdig + Færdig - + Checking... i.e: Checking already downloaded parts... Kontrollerer... - + Stalled i.e: State of a torrent whose download speed is 0kb/s Gået i stå - + Are you sure you want to quit? Er du sikker på at du vil afslutte? - + '%1' was removed. 'xxx.avi' was removed. '%1' blev fjernet. - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. '%1' lagt til download listen. - + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) '%1' fortsat. (hurtig fortsættelse) - + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. '%1' findes allerede i 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' - + None i.e: No error message Intet @@ -871,69 +932,69 @@ Luk venglist denne først. Lytter på port: %1 - + All downloads were paused. Alle downloads blev sat på pause. - + '%1' paused. xxx.avi paused. '%1' blev sat på pause. - + Connecting... i.e: Connecting to the tracker... Forbinder... - + All downloads were resumed. Alle downloads fortsættes. - + '%1' resumed. e.g: xxx.avi resumed. '%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 - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused 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 - + Firewalled? i.e: Behind a firewall/router? Bag en Firewall? - + No incoming connections... Ingen indkommende forbindelser... @@ -959,79 +1020,89 @@ Luk venglist denne først. Resultater - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... 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 - + UPnP: no WAN service detected... - + UPnP: WAN service detected! - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 - + DHT support [ON], port: %1 - + DHT support [OFF] - + UPnP support [ON], port: %1 - + UPnP support [OFF] - + PeX support [ON] - + PeX support [OFF] - + The download list is not empty. Are you sure you want to quit qBittorrent? + + + Downloads + + + + + Finished + Færdig + MainWindow @@ -1193,7 +1264,7 @@ Are you sure you want to quit qBittorrent? Transfers - Overførsler + Overførsler @@ -1220,6 +1291,11 @@ Are you sure you want to quit qBittorrent? Report a bug Rapporter en fejl + + + Downloads + + PropListDelegate @@ -2101,6 +2177,24 @@ Changelog: Opdater søge plugin + + seeding + + + Search + Søg + + + + The following torrents are finished and shared: + + + + + <u>Note:</u> It is important that you keep sharing your torrents after they are finished for the well being of the network. + + + torrentAdditionDialog diff --git a/src/lang/qbittorrent_de.qm b/src/lang/qbittorrent_de.qm index 80869b82d76119303407b7a69e9791be17020b74..1e38584ebab1076de8564bd3b5ddba8478635c4e 100644 GIT binary patch delta 3689 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 C@? zb@fK|1}9a~M(0G!#H)bn0x-4Hd%$$6Rs#ve)D=kV><@>!?ktV7n+whDN4Q7DWUN;bO$27+dm~zD9IK1EBM>n}C?y z;p`V+=99!LG&bK1`p<0Ma*zE&iCkM(pKGK=wg=8OO^p zNXRIl%aBmaIJ0CGI{chOytfH1SocN9d4c@qS=qX)^ zNBcRza2PM^LIA~2)i1n+?o*9e#Op?lD*QWtx>7a4YXe}aQcbwtpZ?aRd7x_3jT?Y@ zifVIzSGrBL_s_YsNp;LT32>OIYAkf5Evm~c;ee%EU)6)Xu|T&u>Nh+S=>faHsl9)H zALt&g4*2R0-JuRU=S_cACts}w9Lv=27qOO(4eBMA$I~b390P0Zka zxq5ZwI@+o(o!$mGyQ#PQnaA*hupZ?B6QTelpbcZ%kUSBZs<3e7*WdeGaN2jQ!MKHW7>`VORHv`)LYg?%<_ zgTveD4eitmT&atXHr~xf=V}XUn2^f_ZP}M|fj33%)^T6cAiMMJ?zY?3rK_vmMD4Ch z%g2E0dN%gcHf`ncFMz)O+A7~pv$VB(6Wyt8NV!SRX`7e)MBBBkC0toQFYUuYdYUXa zNAaxm+awH(VQJh-1h1;gK>u#SkctjELr4waPW876>E{pA(?a^I&g&0_9E-r(ySoTG z)@-F4?VhlEOZdc;0t|2zKJh7`N%V7S6+ZFryxuJAFFgx*yeU*^*3xL9=FC32S~${^ ziFtf4d=uad{OPH1Jyrt@bQOC~;vpWm(C*(wOYpr<0Z(^v)UYhNQH-qro;G*srHGN2 zx%FPr;&^|S#%qU|7|GgsT@{m0ai!jU#B_No;L~4Rs$~K`abm6;chcv)SST`}&ug(z zx()aSipwT5aoO^r&;2X(U*h2x4S;_y@zf)p3I9W4 zuM2RU8;SUoP6Rke-$|H0}gq66NY!7wA6uRMlB}SH2mY1&r$@ zKh|ESHu+hK2Yo63ch_)W{0_OJWd(hxH?`*hZ{OE@{>>klkf#ss;46EgyMD$$ECL%1 z`lPlaz$7ny%19@=L7&#qi#BvQxlX^>(*#U8tj~MYL7(Z1J2=r)fBo7yqiL=FFD~op zQ+?&vA;2`NzB-g!Jncf4)1g1Q^bWt;L-ogweo71Vch<+y2l|JWZySNwBm;Jr&@zMO zU@g62kn>Z4xa|fP7Y>ZO)@8iW?qoyaQohsUR~ynCxWf1r!}5_VT|%(I;>7?7YYipC zbLlz5M-FYk46R}H&T{^iC^l?%(9>gvJwHVPNs_^G;(?8g1jCt~JY-4h4d-S&qn8Yq zW~Kx0CL3DPYiPaUWP}aO=0`ppwO<}!(l$pww?p1WRvMs}#-c@$_@|By~ zOWAWYkgih>^sMsJijRRb zo$@N+0WC4=gp>4yQCH8Eq}?^TB=GE{cQX!1;#Q}J89mmYrDb-TjKc=k0vRsGDeiT2 zv2kh#6Ut~dCRKA`mdq04tdI*p=2c@#20!@TUSmq<$`-g9Q+J2ZB4fHAw|>DjoET%xq3*h}erlFo4 zzy}6XT)itjXv&Wo$mc&h##DAW8^}Ik+P*|fpP07iWCBaFOnb+_Me9w6%1VHoM3e2n zELvweQhp3r>Swz2`W5}v)E>kIAnpE-=uS}$c9ZPT1R4SzIR`z?2{tqk;0 z*=`R$EnCB!MVoD;pJelkYS6|yAQst}gDfn@e54{<0{=w*%dy#WvKG%z&0efyPZJ$C zPQ~+p|6@RTj6I3ZEi+`lkN11a+P&!(Wk1x)`hDETOYd1wzDhC G^#22G241HC diff --git a/src/lang/qbittorrent_de.ts b/src/lang/qbittorrent_de.ts index 53b930a22..1d3b85906 100644 --- a/src/lang/qbittorrent_de.ts +++ b/src/lang/qbittorrent_de.ts @@ -631,6 +631,67 @@ Copyright (c) 2006 Christophe Dumez<br> + + FinishedTorrents + + + Finished + Beendet + + + + Name + i.e: file name + Name + + + + Size + i.e: file size + + + + + Progress + i.e: % downloaded + + + + + 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 + + + + Status + Status + + + + ETA + i.e: Estimated Time of Arrival / Time left + + + + + Finished + i.e: Torrent has finished downloading + Beendet + + GUI @@ -644,7 +705,7 @@ Copyright (c) 2006 Christophe Dumez<br> :: By Christophe Dumez :: Copyright (c) 2006 - + qBittorrent qBittorrent @@ -669,12 +730,12 @@ Copyright (c) 2006 Christophe Dumez<br> UP Geschwindigkeit: - + Open Torrent Files Öffne Torrent Dateien - + Torrent Files Torrent Dateien @@ -720,12 +781,12 @@ Copyright (c) 2006 Christophe Dumez<br> Torrent Datei kann nicht dekodiert werden: - + This file is either corrupted or this isn't a torrent. Diese Datei ist entweder beschädigt, oder kein torrent. - + Are you sure? -- qBittorrent Sind Sie sicher? -- qBittorrent @@ -735,12 +796,12 @@ Copyright (c) 2006 Christophe Dumez<br> Wollen Sie wirklich alle Dateien aus der Download Liste löschen? - + &Yes &Ja - + &No &Nein @@ -750,7 +811,7 @@ Copyright (c) 2006 Christophe Dumez<br> 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? @@ -823,9 +884,9 @@ Copyright (c) 2006 Christophe Dumez<br> <b>qBittorrent</b><br>DL Geschwindigkeit: - + Finished - Beendet + Beendet @@ -833,12 +894,12 @@ Copyright (c) 2006 Christophe Dumez<br> Überprüfe... - + Connecting... Verbinde... - + Downloading... Herunterladen... @@ -872,7 +933,7 @@ Copyright (c) 2006 Christophe Dumez<br> Konnte nicht auf den angegebenen Ports lauschen. - + Couldn't listen on any of the given ports. Konnte nicht auf den angegebenen Ports lauschen. @@ -1058,7 +1119,7 @@ Changelog: UP Geschwindigkeit - + Status Status @@ -1089,17 +1150,17 @@ Changelog: Stehen geblieben - + Paused Pausiert - + Preview process already running Preview Prozess läuft bereits - + There is already another preview process running. Please close the other one first. Ein anderer Preview Prozess läuft zu Zeit. @@ -1131,7 +1192,7 @@ Bitte schliessen Sie diesen zuerst. Transfers - Transfer + Transfer @@ -1139,12 +1200,12 @@ Bitte schliessen Sie diesen zuerst. Wollen Sie qBittorrent wirklich beenden? - + Are you sure you want to delete the selected item(s) in download list and in hard drive? Wollen Sie wirklich die ausgewählten Elemente aus der Download Liste und von der Festplatte löschen? - + Download finished Download abgeschlossen @@ -1160,64 +1221,64 @@ Bitte schliessen Sie diesen zuerst. Suchmaschine - + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - + Connection status: Verbindungs Status: - + Offline Offline - + No peers found... Keine Peers gefunden... - + Name i.e: file name Name - + Size i.e: file size Größe - + Progress i.e: % downloaded Verlauf - + 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 - + ETA i.e: Estimated Time of Arrival / Time left voraussichtliche Ankunftszeit @@ -1235,19 +1296,19 @@ Bitte schliessen Sie diesen zuerst. Leecher - + qBittorrent %1 started. e.g: qBittorrent v0.x started. qBittorrent %1 gestartet. - + DL speed: %1 KiB/s e.g: Download speed: 10 KiB/s DL Geschwindigkeit: %1 KiB/s - + UP speed: %1 KiB/s e.g: Upload speed: 10 KiB/s UP Geschwindigkeit: %1 KiB/s @@ -1256,57 +1317,57 @@ Bitte schliessen Sie diesen zuerst. Finished i.e: Torrent has finished downloading - Beendet + Beendet - + Checking... i.e: Checking already downloaded parts... Überprüfe... - + Stalled i.e: State of a torrent whose download speed is 0kb/s Angehalten - + Are you sure you want to quit? Wollen Sie wirklich beenden? - + '%1' was removed. 'xxx.avi' was removed. '%1' wurde entfernt. - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. '%1' wurde der Download Liste hinzugefügt. - + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) '%1' wird fortgesetzt. (Schnelles Fortsetzen) - + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. '%1' befindet sich bereits in der Download Liste. - + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' Kann Torrent Datei '%1' nicht dekodieren - + None i.e: No error message Nichts @@ -1318,47 +1379,47 @@ Bitte schliessen Sie diesen zuerst. Lausche auf Port: %1 - + All downloads were paused. Alle Downloads wurden angehalten. - + '%1' paused. xxx.avi paused. '%1' angehalten. - + Connecting... i.e: Connecting to the tracker... Verbinde... - + All downloads were resumed. Alle Downloads wurden fortgesetzt. - + '%1' resumed. e.g: xxx.avi resumed. '%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 - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused Es ist ein Fehler beim lesen oder schreiben von %1 aufgetreten. Die Festplatte ist vermutlich voll. Der Download wurde angehalten @@ -1370,23 +1431,23 @@ Bitte schliessen Sie diesen zuerst. Ein Fehler ist aufgetreten (Festplatte voll?), '%1' angehalten. - + Connection Status: Verbindungs-Status: - + Online Online - + Firewalled? i.e: Behind a firewall/router? Hinter einer Firewall/Router? - + No incoming connections... Keine eingehenden Verbindungen... @@ -1412,79 +1473,84 @@ Bitte schliessen Sie diesen zuerst. Ergebnisse - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... 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 - + UPnP: no WAN service detected... - + UPnP: WAN service detected! - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 - + DHT support [ON], port: %1 - + DHT support [OFF] - + UPnP support [ON], port: %1 - + UPnP support [OFF] - + PeX support [ON] - + PeX support [OFF] - + The download list is not empty. Are you sure you want to quit qBittorrent? + + + Downloads + + MainWindow @@ -1716,7 +1782,7 @@ Are you sure you want to quit qBittorrent? Transfers - Transfer + Transfer @@ -1743,6 +1809,11 @@ Are you sure you want to quit qBittorrent? Report a bug Einen Fehler melden + + + Downloads + + PropListDelegate @@ -2935,6 +3006,24 @@ Changelog: "Such"-Plugin updaten + + seeding + + + Search + Suche + + + + The following torrents are finished and shared: + + + + + <u>Note:</u> It is important that you keep sharing your torrents after they are finished for the well being of the network. + + + torrentAdditionDialog diff --git a/src/lang/qbittorrent_el.qm b/src/lang/qbittorrent_el.qm index 5dfaf08f141e8f4bfa198fedd80d9457e14991bc..f102094236aff299518e8523147702d63691a57d 100644 GIT binary patch delta 3671 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 diff --git a/src/lang/qbittorrent_el.ts b/src/lang/qbittorrent_el.ts index 4ff21e612..31be93c4d 100644 --- a/src/lang/qbittorrent_el.ts +++ b/src/lang/qbittorrent_el.ts @@ -713,10 +713,71 @@ Copyright © 2006 από τον Christophe Dumez<br> + + FinishedTorrents + + + Finished + + + + + 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 + Διαμοιραστές/Συνδέσεις + + + + Status + Κατάσταση + + + + ETA + i.e: Estimated Time of Arrival / Time left + Χρόνος που απομένει + + + + Finished + i.e: Torrent has finished downloading + + + GUI - + Open Torrent Files Άνοιγμα Αρχείων τορεντ @@ -731,7 +792,7 @@ Copyright © 2006 από τον Christophe Dumez<br> Άγνωστο - + This file is either corrupted or this isn't a torrent. Το αρχείο είτε είναι κατεστραμμένο, ή δεν ειναι ενα τορεντ. @@ -741,17 +802,17 @@ Copyright © 2006 από τον Christophe Dumez<br> Σίγουρα θέλετε να διαγράψετε όλα τα αρχεία στην λίστα κατεβάσματος? - + &Yes &Ναι - + &No &Όχι - + Are you sure you want to delete the selected item(s) in download list? Είστε σίγουρος οτι θέλετε να διαγράψετε το(α) επιλεγμλένα αντικείμενο(α) από την λίστα κατεβάσματος? @@ -771,9 +832,9 @@ Copyright © 2006 από τον Christophe Dumez<br> kb/s - + Finished - Τελείωσε + Τελείωσε @@ -781,12 +842,12 @@ Copyright © 2006 από τον Christophe Dumez<br> Έλεγχος... - + Connecting... Σύνδεση... - + Downloading... Κατέβασμα... @@ -826,7 +887,7 @@ Copyright © 2006 από τον Christophe Dumez<br> Δεν μπόρεσε να δημιουργηθεί η κατηγορία: - + Torrent Files Αρχεία Τορεντ @@ -898,12 +959,12 @@ Copyright © 2006 από τον Christophe Dumez<br> qBittorrent - + qBittorrent qBittorrent - + Are you sure? -- qBittorrent Είστε σίγουρος? -- qBittorrent @@ -944,7 +1005,7 @@ Copyright © 2006 από τον Christophe Dumez<br> έχει τελειώσει το κατέβασμα. - + Couldn't listen on any of the given ports. Δεν "ακροάστηκα" καμία σπό τις δωσμένες θύρες. @@ -1160,7 +1221,7 @@ Changelog: UP Ταχύτητα - + Status Κατάσταση @@ -1191,17 +1252,17 @@ Changelog: Αποτυχία λειτουργίας - + Paused Παύση - + Preview process already running Προεπισκόπηση ήδη ανοικτή - + There is already another preview process running. Please close the other one first. Υπάρχει ήδη άλλη προεπισκόπηση ανοιχτή. @@ -1233,7 +1294,7 @@ Please close the other one first. Transfers - Μεταφορές + Μεταφορές @@ -1241,12 +1302,12 @@ Please close the other one first. Είστε σίγουρος/η οτι θέλετε να κλείσετε το qBittorrent? - + Are you sure you want to delete the selected item(s) in download list and in hard drive? Είστε σίγουρος/η οτι θέλετε να διαγράψετε το(α) επιλεγμένο(α) αντικείμενο(α) από τη λίστα κατεβάσματος και το σκληρό δίσκο? - + Download finished Το κατέβασμα τελείωσε @@ -1262,64 +1323,64 @@ Please close the other one first. Μηχανή Αναζήτησης - + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - + Connection status: Κατάσταση Σύνδεσης: - + Offline Offline - + No peers found... Δεν βρέθηκαν συνδέσεις... - + 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 Διαμοιραστές/Συνδέσεις - + ETA i.e: Estimated Time of Arrival / Time left Χρόνος που απομένει @@ -1337,19 +1398,19 @@ Please close the other one first. Συνδέσεις - + qBittorrent %1 started. e.g: qBittorrent v0.x started. Εκκινήθηκε το 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 @@ -1358,57 +1419,57 @@ Please close the other one first. Finished i.e: Torrent has finished downloading - Τελείωσε + Τελείωσε - + Checking... i.e: Checking already downloaded parts... Έλεγχος... - + Stalled i.e: State of a torrent whose download speed is 0kb/s Αποτυχία λειτουργίας - + Are you sure you want to quit? Είστε σίγουρος/η οτι θέλετε να κλείσετε την εφαρμογή? - + '%1' was removed. 'xxx.avi' was removed. Το '%1' αφαιρέθηκε. - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. Το '%1' προστέθηκε στη λίστα κατεβάσματος. - + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) Το '%1' ξανάρχισε. (γρήγορη επανασύνδεση) - + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. Το '%1' είναι ήδη στη λίστα κατεβάσματος. - + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' Αδύνατο να αποκωδικοποιηθεί το αρχείο τορεντ: '%1' - + None i.e: No error message Κανένα @@ -1420,47 +1481,47 @@ Please close the other one first. Ακρόαση στη θύρα: %1 - + All downloads were paused. Όλα τα κατεβάσματα είναι σε παύση. - + '%1' paused. xxx.avi paused. '%1' σε παύση. - + Connecting... i.e: Connecting to the tracker... Σύνδεση... - + All downloads were resumed. Όλα τα κατεβάσματα ξανάρχισαν. - + '%1' resumed. e.g: xxx.avi resumed. Το '%1' ξανάρχισε. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. Έχει τελειώσει το κατέβασμα του '%1'. - + I/O Error i.e: Input/Output Error I/O Λάθος - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused Ένα σφάλμα προέκυψε κατά την προσπάθεια ανάγνωσης ή εγγραφής του %1. Ο δίσκος είναι πιθανόν πλήρης, το κατέβασμα είναι σε παύση @@ -1472,23 +1533,23 @@ Please close the other one first. Ένα σφάλμα προέκυψε (δίσκος πλήρης?), το '%1' είναι σε παύση. - + Connection Status: Κατάσταση Σύνδεσης: - + Online Online - + Firewalled? i.e: Behind a firewall/router? Σε τοίχο προστασίας (firewall)? - + No incoming connections... Καμία εισερχόμενη σύνδεση... @@ -1514,79 +1575,84 @@ Please close the other one first. Αποτελέσματα - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... Κατέβασμα του '%1', παρακαλώ περιμένετε... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Ένα σφάλμα προέκυψε (δίσκος πλήρης?), το '%1' είναι σε παύση. - + Search Αναζήτηση - + RSS - + UPnP: no WAN service detected... - + UPnP: WAN service detected! - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 - + DHT support [ON], port: %1 - + DHT support [OFF] - + UPnP support [ON], port: %1 - + UPnP support [OFF] - + PeX support [ON] - + PeX support [OFF] - + The download list is not empty. Are you sure you want to quit qBittorrent? + + + Downloads + + MainWindow @@ -1741,9 +1807,9 @@ Are you sure you want to quit qBittorrent? Κατάσταση Σύνδεσης - + Downloads - Κατεβάσματα + Κατεβάσματα @@ -1838,7 +1904,7 @@ Are you sure you want to quit qBittorrent? Transfers - Μεταφορές + Μεταφορές @@ -3024,6 +3090,24 @@ Changelog: Αναβάθμιση plugin αναζήτησης + + seeding + + + Search + Αναζήτηση + + + + The following torrents are finished and shared: + + + + + <u>Note:</u> It is important that you keep sharing your torrents after they are finished for the well being of the network. + + + torrentAdditionDialog diff --git a/src/lang/qbittorrent_en.qm b/src/lang/qbittorrent_en.qm index 925ef3794a7bcdf11e9244d79b61eb38d2e84e93..e900d730290a0a64b251524029734a43e0cf584d 100644 GIT binary patch delta 3533 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

1YQ0gZsG<3vzekZib-UJzjSK&kR8d-79#f zsbk?4-sL7z=3(T$^OIl%KeX-*IEPQN&xc?0*=rhL2fwhp-p}f&7vlJmZ#Sc19>4aR zx$pzN?A0@HA7A!35q9t!jd(cvH}I9Ecj0~h3#N?7)0sb7h@E&w@E5$%?wP^2C1V25 z^+Lcb97@ll!oWva@HZjWCzHr4L5Q>BcdtBQoNXQMzt_h-1+U+Q#J!J+28LW$a5xXPiQF25 z&^JIdd)|c8MZd*JmG4&3za#^8h=U$$M1HQ~OI1_h6fx3L4>yU?GiShKVysI#ye-bi z9ZTfjPn@~x5**bn?!W(Bz2SW^=MJui|88-~atz>qLoD1ppD4gtT;Eg)r;GK!G{aru z;kuLXf_QyYChQdNnJyCrjuRiI`oP8F)2eWITAozt8)`che zMT7L}k5(3icb&gnjo_Akco!S2$5{hz>*Qk!+%XcXR; ze*dlso{;IYV)#Hd?mk8o;v|cCv*By9n;SZY6zG1U+bkz9#*-b=F25Uz6b^Qht^OEz zaI{<;o(t#8@7rC2o8%Rhr9?yK$(!sXSSnZFh=a#v>!CX~6rRW@Dsk9e8X$l5>O(k2 zK06}~u8}XL?S-f0>!(J*d-9VmOceTp{QPbXoT_-R@o=r;xwi!#Q35~rhBtb&n3Y&F z7Gkj|ag*EO93^4mTd-UinTT;Lm#xa=R}ebO(;mazl$4+E5rxGn84g2Wj z!I=oJR_aFFg+C~b7k3g3vznA|Z{d^<^H(lB>2|Wx`VS*4P;M+;4Yw=Lg73iFD$h0$ zMYyYcBX$rmMs=HpGZT@cdcTekM|`IGtUC$M>poV84n9T{>8(y2a2$?TCv{;#kqgw< z>k*;I{p!qN&A9)OZE9*dJ{&$lP3_*<@b&8K&xXMUHSI-&eE3~;UO769a94}OZE&Qz z#$AMYYRy6P8?jrxbmuXAq+aQ_lqf1ly=ssDAyLz`5Njv=RI~VX!TZ|OMh~Ls5G^_D zC77Y*CHUh0N3YgOTC&k_Mypt4f*o2#P6km-hE_8cAI5yD?I|gS*EQR&nMARDwSA=r z;3Vzr^JlPBdo%<)iEYsSd;WWPO?wuKl*GB1&3>z3jM==l4Q830m4)z(`LD>uJu(M+ zyoQ{_dzwe>Sq>+f$Cqj_&s=i?D~>;Hu0M~RCiF62t$hOH%~u-`nS|_g{Q0|$QHl+= zdUchdEXBN~?3Ry1*>pS67Hy{*ZTSv|I9rO#cCpOYdymcN)1S5F1XxVApMvHwqBtdc zR_4Mvv$M-4YJH^t*A|v-=;dJ>9g@r1+AY - GUI + FinishedTorrents - - Open Torrent Files + + Finished - - This file is either corrupted or this isn't a torrent. - - - - - &Yes - - - - - &No - - - - - Are you sure you want to delete the selected item(s) in download list? - - - - - Connecting... - - - - - Downloading... - - - - - Torrent Files - - - - - Are you sure? -- qBittorrent - - - - - Couldn't listen on any of the given ports. - - - - - Status - - - - - Paused - - - - - Preview process already running - - - - - There is already another preview process running. -Please close the other one first. - - - - - Transfers - - - - - Download finished - - - - - Are you sure you want to delete the selected item(s) in download list and in hard drive? - - - - - qBittorrent %1 - e.g: qBittorrent v0.x - - - - - Connection status: - - - - - Offline - - - - - No peers found... - - - - + 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 - + + Status + + + + ETA i.e: Estimated Time of Arrival / Time left - + + Finished + i.e: Torrent has finished downloading + + + + + GUI + + + Open Torrent Files + + + + + This file is either corrupted or this isn't a torrent. + + + + + &Yes + + + + + &No + + + + + Are you sure you want to delete the selected item(s) in download list? + + + + + Connecting... + + + + + Downloading... + + + + + Torrent Files + + + + + Are you sure? -- qBittorrent + + + + + Couldn't listen on any of the given ports. + + + + + Status + + + + + Paused + + + + + Preview process already running + + + + + There is already another preview process running. +Please close the other one first. + + + + + Download finished + + + + + Are you sure you want to delete the selected item(s) in download list and in hard drive? + + + + + qBittorrent %1 + e.g: qBittorrent v0.x + + + + + Connection status: + + + + + Offline + + + + + No peers found... + + + + + 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 + + + + + ETA + i.e: Estimated Time of Arrival / Time left + + + + qBittorrent %1 started. e.g: qBittorrent v0.x started. - + 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 - - Finished - i.e: Torrent has finished downloading - - - - + Checking... i.e: Checking already downloaded parts... - + Stalled i.e: State of a torrent whose download speed is 0kb/s - + Are you sure you want to quit? - + '%1' was removed. 'xxx.avi' was removed. - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. - + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) - + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. - + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' - + None i.e: No error message - + All downloads were paused. - + '%1' paused. xxx.avi paused. - + Connecting... i.e: Connecting to the tracker... - + All downloads were resumed. - + '%1' resumed. e.g: xxx.avi resumed. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. - + I/O Error i.e: Input/Output Error - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused - + Connection Status: - + Online - + Firewalled? i.e: Behind a firewall/router? - + No incoming connections... - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. - + Search - + RSS - + UPnP: no WAN service detected... - + UPnP: WAN service detected! - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 - + DHT support [ON], port: %1 - + DHT support [OFF] - + UPnP support [ON], port: %1 - + UPnP support [OFF] - + PeX support [ON] - + PeX support [OFF] - + The download list is not empty. Are you sure you want to quit qBittorrent? + + + Downloads + + + + + Finished + + MainWindow @@ -999,11 +1059,6 @@ Are you sure you want to quit qBittorrent? Session ratio: - - - Transfers - - Preview file @@ -1029,6 +1084,11 @@ Are you sure you want to quit qBittorrent? Report a bug + + + Downloads + + PropListDelegate @@ -1897,6 +1957,24 @@ Changelog: + + seeding + + + Search + + + + + The following torrents are finished and shared: + + + + + <u>Note:</u> It is important that you keep sharing your torrents after they are finished for the well being of the network. + + + torrentAdditionDialog diff --git a/src/lang/qbittorrent_es.qm b/src/lang/qbittorrent_es.qm index 505366ab7d35d308faf64a9049241d516a5c9b24..e7f4c4dea7e8df3786ffa149752a1bc7dcc38cfd 100644 GIT binary patch delta 3691 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 F_Fv<7SnL1* diff --git a/src/lang/qbittorrent_es.ts b/src/lang/qbittorrent_es.ts index 2c1b36371..28fb9de55 100644 --- a/src/lang/qbittorrent_es.ts +++ b/src/lang/qbittorrent_es.ts @@ -651,6 +651,67 @@ Copyright © 2006 por Christophe Dumez<br> + + FinishedTorrents + + + Finished + Terminado + + + + 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 + + + + Status + Estado + + + + ETA + i.e: Estimated Time of Arrival / Time left + Tiempo Restante Aproximado + + + + Finished + i.e: Torrent has finished downloading + Terminado + + GUI @@ -679,12 +740,12 @@ Copyright © 2006 por Christophe Dumez<br> No se pudo crear el directorio: - + Open Torrent Files Abrir archivos Torrent - + Torrent Files Archivos Torrent @@ -725,7 +786,7 @@ Copyright © 2006 por Christophe Dumez<br> Imposible decodificar el archivo torrent: - + This file is either corrupted or this isn't a torrent. Este archivo puede estar corrupto, o no ser un torrent. @@ -735,12 +796,12 @@ Copyright © 2006 por Christophe Dumez<br> ¿Seguro que quieres eliminar todos los archivos de la lista de descargas? - + &Yes &Sí - + &No &No @@ -750,7 +811,7 @@ Copyright © 2006 por Christophe Dumez<br> 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? @@ -793,9 +854,9 @@ Copyright © 2006 por Christophe Dumez<br> continuada. - + Finished - Terminada + Terminada @@ -803,12 +864,12 @@ Copyright © 2006 por Christophe Dumez<br> Verificando... - + Connecting... Conectando... - + Downloading... Bajando... @@ -846,12 +907,12 @@ Copyright © 2006 por Christophe Dumez<br> qBittorrent - + qBittorrent qBittorrent - + Are you sure? -- qBittorrent ¿Estás seguro? -- qBittorrent @@ -892,7 +953,7 @@ Copyright © 2006 por Christophe Dumez<br> No se pudo escuchar en ninguno de los puertos brindados. - + Couldn't listen on any of the given ports. No se pudo escuchar en ninguno de los puertos brindados. @@ -1088,7 +1149,7 @@ Log: Velocidad de Subida - + Status Estado @@ -1119,17 +1180,17 @@ Log: Detenida - + Paused - + Preview process already running Previsualizar procesos activos - + There is already another preview process running. Please close the other one first. Hay otro proceso de previsualización corriendo. @@ -1161,7 +1222,7 @@ Por favor cierra el otro antes. Transfers - Transferidos + Transferidos @@ -1169,12 +1230,12 @@ Por favor cierra el otro antes. ¿Seguro que deseas salir de qBittorrent? - + Are you sure you want to delete the selected item(s) in download list and in hard drive? ¿Seguro que deseas borrar el o los elementos seleccionados de la lista de descargas y del disco duro? - + Download finished Descarga terminada @@ -1190,64 +1251,64 @@ 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: - + Offline Offline - + No peers found... No se encontraron peers... - + 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 - + ETA i.e: Estimated Time of Arrival / Time left Tiempo Restante Aproximado @@ -1265,19 +1326,19 @@ Por favor cierra el otro antes. Leechers - + qBittorrent %1 started. e.g: qBittorrent v0.x started. 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 @@ -1286,57 +1347,57 @@ Por favor cierra el otro antes. Finished i.e: Torrent has finished downloading - Terminado + Terminado - + Checking... i.e: Checking already downloaded parts... Verificando... - + Stalled i.e: State of a torrent whose download speed is 0kb/s Detenida - + Are you sure you want to quit? ¿Estás seguro de que deseas salir? - + '%1' was removed. 'xxx.avi' was removed. '%1' fué removido. - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. '%1' agregado a la lista de descargas. - + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) '%1' reiniciado. (reinicio rápido) - + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. '%1' ya está en 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' - + None i.e: No error message Ninguno @@ -1348,47 +1409,47 @@ Por favor cierra el otro antes. Escuchando en el puerto: %1 - + All downloads were paused. Todas las descargas en pausa. - + '%1' paused. xxx.avi paused. '%1' en pausa. - + Connecting... i.e: Connecting to the tracker... Conectando... - + All downloads were resumed. Todas las descargas reiniciadas. - + '%1' resumed. e.g: xxx.avi resumed. '%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 - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused Un error ocurrió mientras se intentaba leer o escribir %1. El disco tal vez esté lleno, la descarga fué pausada @@ -1400,23 +1461,23 @@ Por favor cierra el otro antes. Un error ocurrió (¿disco lleno?), '%1' pausado. - + Connection Status: Estado de la conexión: - + Online En línea - + Firewalled? i.e: Behind a firewall/router? ¿Con firewall? - + No incoming connections... Sin conexiones entrantes... @@ -1442,79 +1503,84 @@ Por favor cierra el otro antes. Resultados - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... 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 Búsquedas - + RSS - + UPnP: no WAN service detected... - + UPnP: WAN service detected! - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 - + DHT support [ON], port: %1 - + DHT support [OFF] - + UPnP support [ON], port: %1 - + UPnP support [OFF] - + PeX support [ON] - + PeX support [OFF] - + The download list is not empty. Are you sure you want to quit qBittorrent? + + + Downloads + + MainWindow @@ -1669,9 +1735,9 @@ Are you sure you want to quit qBittorrent? Estado de la Conexión - + Downloads - Descargas + Descargas @@ -1766,7 +1832,7 @@ Are you sure you want to quit qBittorrent? Transfers - Transferidos + Transferidos @@ -3002,6 +3068,24 @@ Log: Actualizar plugin de búsqueda + + seeding + + + Search + Búsquedas + + + + The following torrents are finished and shared: + + + + + <u>Note:</u> It is important that you keep sharing your torrents after they are finished for the well being of the network. + + + torrentAdditionDialog diff --git a/src/lang/qbittorrent_fi.qm b/src/lang/qbittorrent_fi.qm index 92768c9fbe402537041770582a732cfa56fc60ab..64e6b3351800dd001266a85767ea71307c0546d5 100644 GIT binary patch delta 3670 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 delta 3070 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 diff --git a/src/lang/qbittorrent_fi.ts b/src/lang/qbittorrent_fi.ts index 2e82d94e4..76cd40b69 100644 --- a/src/lang/qbittorrent_fi.ts +++ b/src/lang/qbittorrent_fi.ts @@ -550,6 +550,67 @@ Tekijänoikeus © 2006 Christophe Dumez<br> + + FinishedTorrents + + + Finished + Valmis + + + + 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 + + + + + Status + Tila + + + + ETA + i.e: Estimated Time of Arrival / Time left + ETA + + + + Finished + i.e: Torrent has finished downloading + Valmis + + GUI @@ -579,7 +640,7 @@ Tekijänoikeus © 2006 Christophe Dumez<br> Haun aika tapahtui virhe... - + Are you sure? -- qBittorrent Oletko varma? — qBittorrent @@ -589,12 +650,12 @@ Tekijänoikeus © 2006 Christophe Dumez<br> 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? - + Are you sure you want to delete the selected item(s) in download list and in hard drive? Haluatko varmasti poistaa valitut kohteet latauslistasta ja tallennusmedialta? @@ -639,7 +700,7 @@ Tekijänoikeus © 2006 Christophe Dumez<br> Tarkastetaan... - + Connecting... Yhdistetään... @@ -655,7 +716,7 @@ Tekijänoikeus © 2006 Christophe Dumez<br> Tiedoston lataaminen ei onnistunut: - + Couldn't listen on any of the given ports. Minkään annetun portin käyttäminen ei onnistunut. @@ -665,7 +726,7 @@ Tekijänoikeus © 2006 Christophe Dumez<br> Latausnopeus - + Download finished Lataus tuli valmiiksi @@ -676,7 +737,7 @@ Tekijänoikeus © 2006 Christophe Dumez<br> Ladataan torrenttia - + Downloading... Ladataan... @@ -696,9 +757,9 @@ Tekijänoikeus © 2006 Christophe Dumez<br> ETA - + Finished - Valmis + Valmis @@ -732,7 +793,7 @@ Tekijänoikeus © 2006 Christophe Dumez<br> Nimi - + &No &Ei @@ -747,7 +808,7 @@ Tekijänoikeus © 2006 Christophe Dumez<br> Hakupalvelua ei ole valittu - + Open Torrent Files Avaa torrent-tiedostoja @@ -758,7 +819,7 @@ Tekijänoikeus © 2006 Christophe Dumez<br> pysäytettiin. - + Paused Pysäytetty @@ -773,7 +834,7 @@ Tekijänoikeus © 2006 Christophe Dumez<br> Odota... - + Preview process already running Esikatselu on jo käynnissä @@ -888,31 +949,31 @@ Muutoshistoria: käynnistettiin. - + Status Tila - + There is already another preview process running. Please close the other one first. Esikatselu on jo käynnissä. Uutta esikatselua ei voi aloittaa. - + This file is either corrupted or this isn't a torrent. Tiedosto ei ole kelvollinen torrent-tiedosto. - + Torrent Files Torrent-tiedostot Transfers - Siirrot + Siirrot @@ -930,7 +991,7 @@ Uutta esikatselua ei voi aloittaa. Lähetysnopeus: - + &Yes &Kyllä @@ -950,64 +1011,64 @@ Uutta esikatselua ei voi aloittaa. I/O-virhe - + qBittorrent %1 e.g: qBittorrent v0.x - + Connection status: - + Offline - + No peers found... - + 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 - + ETA i.e: Estimated Time of Arrival / Time left ETA @@ -1025,24 +1086,24 @@ Uutta esikatselua ei voi aloittaa. Lataajia - + qBittorrent %1 started. e.g: qBittorrent v0.x started. - + 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 @@ -1051,125 +1112,125 @@ Uutta esikatselua ei voi aloittaa. Finished i.e: Torrent has finished downloading - Valmis + Valmis - + Checking... i.e: Checking already downloaded parts... Tarkastetaan... - + Stalled i.e: State of a torrent whose download speed is 0kb/s Seisahtunut - + Are you sure you want to quit? - + '%1' was removed. 'xxx.avi' was removed. - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. - + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) - + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. - + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' - + None i.e: No error message Ei mikään - + All downloads were paused. - + '%1' paused. xxx.avi paused. - + Connecting... i.e: Connecting to the tracker... Yhdistetään... - + All downloads were resumed. - + '%1' resumed. e.g: xxx.avi resumed. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. - + I/O Error i.e: Input/Output Error I/O-virhe - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused - + Connection Status: - + Online - + Firewalled? i.e: Behind a firewall/router? - + No incoming connections... @@ -1180,79 +1241,84 @@ Uutta esikatselua ei voi aloittaa. Tulokset - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. - + Search Etsi - + RSS - + UPnP: no WAN service detected... - + UPnP: WAN service detected! - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 - + DHT support [ON], port: %1 - + DHT support [OFF] - + UPnP support [ON], port: %1 - + UPnP support [OFF] - + PeX support [ON] - + PeX support [OFF] - + The download list is not empty. Are you sure you want to quit qBittorrent? + + + Downloads + + MainWindow @@ -1439,7 +1505,7 @@ Are you sure you want to quit qBittorrent? Transfers - Siirrot + Siirrot @@ -1456,6 +1522,11 @@ Are you sure you want to quit qBittorrent? Report a bug + + + Downloads + + PropListDelegate @@ -2486,6 +2557,24 @@ Muutoshistoria: Päivitä hakuliitännäinen + + seeding + + + Search + Etsi + + + + The following torrents are finished and shared: + + + + + <u>Note:</u> It is important that you keep sharing your torrents after they are finished for the well being of the network. + + + torrentAdditionDialog diff --git a/src/lang/qbittorrent_fr.qm b/src/lang/qbittorrent_fr.qm index 86fd26361dcc9804638dc0f12373fdbb57d4aecb..978d63ff1f844f6de25a7c2d1349e232d7128b0d 100644 GIT binary patch delta 3723 zcmaLZ2~<;88VB$%%S&F8mju~dKny4q5m^L85m7)CDMeWnMM0?vCJ2c@kWCB%iUQh> zajSLeL0hFtu@Z4#t8^;0xL4b0ty;BWt*v^fBUYS$B<*RZp79*~-FJES-tT_jeeY4Z ziQm4J|F$FV?mwJTO|eUec#TAFT!1%;5+I*Xlw{R|D5Vlc5~W(N(};iUBrLO8PlE5u zaNSPAvqJcUnBW~m0xx1hx?vhI0>j7rfgK>y3FQ&O1L~1 z*LQl9I@=7Vq%JV)Z7Ezq2d-cscbo3)en=z_qWe2=zkD8b9Senzc&dmhBE@pv zXao8cH+d0Pe2J7rytpB66WP`C)_nC9e9l|z;YMWYHG#MNtwN$+i+KB#@$dn!wbX&g zUd?O27y%FRI<_an-}ug6sYDL(HqCtRXA5xs4d4IcTSSiD{IQ>ULjylm??~h%5N&T;(ehLvy`zc%R_Y~ineg3>tO z0Jd+*`jP^Z9d{w?KrqCVC9huxj<2maI6R-(Qh0tW{bOcsnVEQSjO zGudc(Ofc*2KG-SHjYXjS#t8JEi%n>(6)Y)1OPnlR+I-%lYLv}f;g*IPB2_)y0iOsP_J2U+ zo*-=WvARNdRH}f-g{Rcl;cekL<4qzDd*Rh8Y|tZ4_@kc`8W^W&oE49)%wSUtYBX>s zGo-PdXiy9jysjIX8I3lh0_Mqupo6U{k z!@c4)0=#cVJr&olzK7>OG+X>J-%J$RVDq8)NI7;mdYJh9AlxvzMtmz33ynU*dS~GD zj(*DeJT?%8jbS4_^+aQ4uu&%be#~X|b;~NEaJkJd*!bp7qOqIVMCD}I&d#+4Fiydi z^c@Hmib&r5OKuv!r}|4pE$wl00SG(M6% z5MCyV&yYM)d&0ev-?oe*nyiy_UtA0iNEMHZh^AbXdi~26pXfYkNVf-3;za56e>3o| zbmp}de6lA?)nRz`CheEb>+TDG=`r~`X}*_&XllE(=zcfRG^w<*8}m#XFI{2E7>7o? z^q;P)@U7=b8xDuU_0pzrq&nqXkJIg>dl%j!nm%2+Z|{3>rS#US7@`>x>5pHw!fF|9 zt%Cbyf{%{E7cxn)27fcO$y{AAZYJ3rWwTV4x)87WnHHI8o*i~L%Sl!ih8oT?$xK7A zz^u<@Rig@t(mZ6#?5;t*th#pu+I%l)&K!*k1lO3;j zAj$}leL5Yl=8Rm~nKUiYo9?oU+Ge;)cKuX1+%N0u#(HyOO|lpF3eYI#+?et38Ry>I zPNdG{hVB{!n`}PhB9#b8-7$JIJ7z0-1#o6 zYq@Vf5x}F|&BZman|toxL8Pyii7i{zd46)W4)^5;$<@}4YD+3n8 zlk%(f_}COW%Da{!Wrc?o0j8%!MM;VgUfo2+j3UVuk7MzNHro_aPq-14*eOyCL9j(p z9F5O&$*+pK_B^7}m5PlxDx$@U6qcRo@TsC@^**F1 zKyl{9bJ(VM9Ecs79x0xk`--UCS@Ap=r7BNUD!o>~%}V9UTks2IZ!Vu`$veuI8C~+T za;V!3qKYVGz$C0wk*A!vdnr7id}Fn@f~c~Oa{F=Yq_RudbPk!Q+NiwR&_%Sgzw+uq zq;6@h4*#`UHp)Kc1t=(yG?Y(9${;-%S;9XNegx6U5n^aJL8sT{Yc=X*LtdUnZ_Kwu z%R70!{?=`FRc?MoZ@tRJ(yTlyoUEW^tdmDMq{BKLf2_m)KL0BhJu2b&4u!fkvZ#+1|1*d54p^v_>B0m#o#OG7Z_;hC&3SGTJh(%E&{vtqiIRy;_y8MVC7CFX7M5 zy5wx`aFUx!!wSOV4Mt69m|sD-YLZc<%U9`g78vr38G572sLe2{iVX#-`5MiFmlIi+ zLPy@8*2^?%aH-W4|8?n1!^>V(p(Z<9^`^!;(2!}pPo>uw3k`YmeGw7+dqyq(OJ?w_ z`|2YZZz$Af8#2`S)`$fYr%rlVS2y#Goc<2^e;kEBZZq>@oy>I=ADCO+?9In&#J2j5 NkNbc1^{Kof{VydtX&`!(Mg4 zZgsJfD*uxXQI?5U096$*xz%rhsjW5v(+dE#0z|Q|c7^)%IXc$vB4~bG!Tt_tFKX#o z2)+mC3kbt(fW{TV=n^^u!Z=@AV7D4V{3-S?LMRic4VFI}+Cgmt+DHfoV*u@H2*;1o z<8~jx@M$F=IK$%v7Zi%&aj7q@gGZAW{R92Ga$&I_e0(p^2MD=Q4(LYWgTkkDEykAC z(W7?%i*Z?gfYjB3Fwa$NOvHqOZ8XnrH6~wQ!2XYI%8qtNVrn!Ok{2SPU;{mfh=wG3 z6Ol!nFaL(=iP?a@7p9lC&~QXmZlx($l)>xi%dsp!h5mxFCI)7(gu+^}nvFF$ev=ao z5AgHh=YZmkrURUy#NyTI5%ig==a@pkxLP%GF~^PfRAX)q1WXyK3GT&!d5>!A?c4N~ zYFn@FfJ2aK|HoN$xvIt-PM@gia~y$o^HdF2$Iu$p=nD%vE>ZswJDmfy>WAiFpi_|gxviP* zRkzgF)4Li+$DY7@4w|8h^XOpBEGdNMXl6gEp@%hzqZr_OEt-^XbU^3Hnw8lsMdxdp zRoRL3wWdhT>vnO~SleaLI?ZMGLi(HLKPjCoK-ZC)$79ygB+cWsFX(Q~vmUPWiPou{ zsdOH$9X94AEz(ZDz#Ti=w2>}Wpj)Um=LiGqc34|o}IE*FwR)ssZS&6?{u=bdnI~#f^8*$eItb3o=jQaU34G4BkUf?@qXQe0~^oLc%e$Oo)!y7 z&isQm2uI&zV6HyGcU~O;w=m&)godsVyM*)bx}9&+-9@wv`*{!Go-4jTJcZiCptE-X z4?nv(Vo(E9@A0J=HjpLqbP}V2SVPb8V$2Ed)N`|#AWsJR*NB-~2GGAz%yMBS2PBC( zA{QJ`F6QtS#(+Cw?j#02u(McjeIU&f*X92L3{ouOzM8vi1dA1qF4HaI=Ph-#PCU`n z3Ghl1>rW=plj6O62Ilof{K=c2dk?XjsZ;x~=HAD29jAo>gMD>feq!kcuh8|$o(lN% z&<(GeOT%e!9zjIPO=Vdlv#qTTaS_>pGd{Tx?N2lkXsx8rRXI9EFRLpBifl~f-X00bMP3+Gt7;0)>ciRJW=EN)~fgPUcu z%TGYaRM{<)r3-m3yB8$^AC$|3noabnJfwUYFm}4^KeU?OkVnsnrtjpyE{VW6cR4yM zj8@2V)?ekq_d6xf%s>|Cm7pp7QnMgQ3HfjVy{3E+&g;Z3v?x;|nY!40cCRQg_nrcA zqLSq3LpLeO$-H2EA7xqBfpn2lSjdIq-zw`qDgY83ly&bIK*D@w>!>b3qF&kFzKYIP zb|!kzJxY0hK5`RpC>6)NfutzqUdx7*w}aTIeOf# z%{YAUDIjH{@x$JyX@zmJjR7rgXPi~djae2SGR_%s0a#)%#wPL~mpT|@TX(i}lQC}Z z2zt+$Fo3B~^)V)wazbi_u|VEOUmG`elYz7dDg<&mo2&=t&{EUUEj6^k^zFO1K<+}*OCN3^_hZxROSh@j^wyW9$bDuu zyR8RS_?yj}9?~RpCnXKY8*2VDV|hhp&+aq%RVeSi**laASovs{azE$~()|zkCGBc}8iTpF)s#ZQzSsxjHRh8%*R$5OwoY$5FcXYN& z9YsUQ=>ns5wo70;>y^PisuKSpRhlE1P;w}|e@Q3b71mPU>r#pHO4+(HAV#u!jBV7; zc0vSFF%Kz7Lp$zjGY#$;u*pJIjKaori0aKLYdzB cN92JH)?bpZbhJhmMyg62*Hl{Hthu89A7cb*)c^nh diff --git a/src/lang/qbittorrent_fr.ts b/src/lang/qbittorrent_fr.ts index 6299601f7..d944029f9 100644 --- a/src/lang/qbittorrent_fr.ts +++ b/src/lang/qbittorrent_fr.ts @@ -756,6 +756,67 @@ Copyright © 2006 par Christophe Dumez<br> + + FinishedTorrents + + + Finished + Terminé + + + + 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 + Seeds/Leechs + + + + Status + Statut + + + + ETA + i.e: Estimated Time of Arrival / Time left + Restant + + + + Finished + i.e: Torrent has finished downloading + Terminé + + GUI @@ -764,7 +825,7 @@ Copyright © 2006 par Christophe Dumez<br> Impossible de trouver le dossier : ' - + Open Torrent Files Ouvrir fichiers torrent @@ -794,12 +855,12 @@ Copyright © 2006 par Christophe Dumez<br> Impossible de décoder le fichier torrent : ' - + This file is either corrupted or this isn't a torrent. Ce fichier est corrompu ou il ne s'agit pas d'un torrent. - + Are you sure? -- qBittorrent Etes vous sûr ? -- qBittorrent @@ -809,17 +870,17 @@ 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 ? @@ -844,9 +905,9 @@ Copyright © 2006 par Christophe Dumez<br> ko/s - + Finished - Terminé + Terminé @@ -854,12 +915,12 @@ Copyright © 2006 par Christophe Dumez<br> Vérification... - + Connecting... Connexion... - + Downloading... Téléchargement... @@ -899,7 +960,7 @@ Copyright © 2006 par Christophe Dumez<br> Impossible de créer le dossier : - + Torrent Files Fichiers Torrent @@ -1016,7 +1077,7 @@ Copyright © 2006 par Christophe Dumez<br> a fini de télécharger. - + Couldn't listen on any of the given ports. Impossible d'écouter sur les ports donnés. @@ -1242,7 +1303,7 @@ Changemets: Vitesse UP - + Status Statut @@ -1273,17 +1334,17 @@ Changemets: En attente - + Paused En pause - + Preview process already running Processus de prévisualisation inachevé - + There is already another preview process running. Please close the other one first. Il y a déjà un processus de prévisualisation en cours d'exécution. @@ -1315,10 +1376,10 @@ Veuillez d'abord le quitter. Transfers - Transferts + Transferts - + Download finished Téléchargement terminé @@ -1339,69 +1400,69 @@ Veuillez d'abord le quitter. Etes-vous certain de vouloir quitter qBittorrent ? - + Are you sure you want to delete the selected item(s) in download list and in 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 ? - + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - + Connection status: Statut de la connexion : - + Offline Déconnecté - + No peers found... Aucune source trouvée... - + 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 Seeds/Leechs - + ETA i.e: Estimated Time of Arrival / Time left Restant @@ -1419,24 +1480,24 @@ Veuillez d'abord le quitter. Sources partielles - + qBittorrent %1 started. e.g: qBittorrent v0.x started. 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 @@ -1445,57 +1506,57 @@ Veuillez d'abord le quitter. Finished i.e: Torrent has finished downloading - Terminé + Terminé - + Checking... i.e: Checking already downloaded parts... Vérification... - + Stalled i.e: State of a torrent whose download speed is 0kb/s En attente - + Are you sure you want to quit? Etes vous certain de vouloir quitter ? - + '%1' was removed. 'xxx.avi' was removed. '%1' a été supprimé. - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. '%1' a été ajouté à 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' 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. - + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' Impossible de décoder le torrent : '%1' - + None i.e: No error message Aucun @@ -1507,47 +1568,47 @@ Veuillez d'abord le quitter. En écoute sur le port: %1 - + All downloads were paused. Tous les téléchargements ont été mis en pause. - + '%1' paused. xxx.avi paused. '%1' a été mis en pause. - + Connecting... i.e: Connecting to the tracker... Connexion... - + All downloads were resumed. Tous les téléchargements ont été relancés. - + '%1' resumed. e.g: xxx.avi resumed. '%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 - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused Une erreur s'est produite lors de la lecture ou l'écriture de %1. Le disque dur est probablement plein, le téléchargement a été mis en pause @@ -1559,23 +1620,23 @@ 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é - + Firewalled? i.e: Behind a firewall/router? Derrière un pare-feu ou un routeur ? - + No incoming connections... Aucune connexion entrante... @@ -1601,79 +1662,84 @@ Veuillez d'abord le quitter. Résultats - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... 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 - + UPnP: no WAN service detected... - + UPnP: WAN service detected! - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 - + DHT support [ON], port: %1 - + DHT support [OFF] - + UPnP support [ON], port: %1 - + UPnP support [OFF] - + PeX support [ON] - + PeX support [OFF] - + The download list is not empty. Are you sure you want to quit qBittorrent? + + + Downloads + + MainWindow @@ -1818,9 +1884,9 @@ Are you sure you want to quit qBittorrent? Statut Connexion - + Downloads - Téléchargements + Téléchargements @@ -1915,7 +1981,7 @@ Are you sure you want to quit qBittorrent? Transfers - Transferts + Transferts @@ -2054,9 +2120,9 @@ Are you sure you want to quit qBittorrent? Changelog: - Le greffon de recherche est ancien, voulez-vous procéder à la mise à jour ? + Le greffon de recherche est ancien, voulez-vous procéder à la mise à jour ? -Changemets: +Changements: @@ -3116,6 +3182,24 @@ Changemets: Mettre à jour le greffon de recherche + + seeding + + + Search + Recherche + + + + The following torrents are finished and shared: + + + + + <u>Note:</u> It is important that you keep sharing your torrents after they are finished for the well being of the network. + + + torrentAdditionDialog diff --git a/src/lang/qbittorrent_it.qm b/src/lang/qbittorrent_it.qm index 470f19dfa060248163ef65a56e2c0e721b249797..d470753aa379adfaf4322906fd414cce047cf3ea 100644 GIT binary patch delta 3643 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 diff --git a/src/lang/qbittorrent_it.ts b/src/lang/qbittorrent_it.ts index 7356a87b3..388a02be8 100644 --- a/src/lang/qbittorrent_it.ts +++ b/src/lang/qbittorrent_it.ts @@ -581,15 +581,76 @@ Copyright © 2006 by Christophe Dumez<br> + + FinishedTorrents + + + Finished + + + + + Name + i.e: file name + Nome + + + + Size + i.e: file size + Dimensione + + + + Progress + i.e: % downloaded + Progresso + + + + DL Speed + i.e: Download speed + + + + + UP Speed + i.e: Upload speed + + + + + Seeds/Leechs + i.e: full/partial sources + Seeds/Leechs + + + + Status + Status + + + + ETA + i.e: Estimated Time of Arrival / Time left + ETA + + + + Finished + i.e: Torrent has finished downloading + + + GUI - + Open Torrent Files Apri file torrent - + This file is either corrupted or this isn't a torrent. Questo file è corrotto o non è un torrent @@ -599,24 +660,24 @@ Copyright © 2006 by Christophe Dumez<br> Sei sicuro di voler cancellare tutti i file nella lista di download? - + &Yes &Si - + &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 - Finito + Finito @@ -624,12 +685,12 @@ Copyright © 2006 by Christophe Dumez<br> Controllo in corso... - + Connecting... Connessione in corso... - + Downloading... Download in corso... @@ -664,7 +725,7 @@ Copyright © 2006 by Christophe Dumez<br> Impossibile creare la directory: - + Torrent Files Files torrent @@ -718,7 +779,7 @@ Copyright © 2006 by Christophe Dumez<br> qBittorrent - + Are you sure? -- qBittorrent Sei sicuro? -- qBittorrent @@ -748,7 +809,7 @@ Copyright © 2006 by Christophe Dumez<br> ha finito il dowload. - + Couldn't listen on any of the given ports. Impossibile mettersi in ascolto sulle porte scelte. @@ -873,7 +934,7 @@ Changelog: Velocità upload - + Status Status @@ -904,17 +965,17 @@ Changelog: In stallo - + Paused In pausa - + Preview process already running Processo di anteprima già in esecuzione - + There is already another preview process running. Please close the other one first. C'è già un altro processo di anteprima avviato. Per favore chiuderlo. @@ -946,7 +1007,7 @@ Example: Downloading www.example.com/test.torrent Transfers - Trasferimenti + Trasferimenti @@ -955,7 +1016,7 @@ Example: Downloading www.example.com/test.torrent Downloading - + Download finished Download finito @@ -976,7 +1037,7 @@ Example: Downloading www.example.com/test.torrent Sicuro di voler uscire da qBittorrent? - + Are you sure you want to delete the selected item(s) in download list and in hard drive? Sei sicuro di voler rimuovere i selezionati Downloads e i relativi files incompleti? @@ -986,64 +1047,64 @@ Example: Downloading www.example.com/test.torrent Errore I/O - + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - + Connection status: Status di connessione: - + Offline Non connesso - + No peers found... Nessun peer... - + Name i.e: file name Nome - + Size i.e: file size Dimensione - + Progress i.e: % downloaded Progresso - + 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 - + ETA i.e: Estimated Time of Arrival / Time left ETA @@ -1061,24 +1122,24 @@ Example: Downloading www.example.com/test.torrent Leechers - + qBittorrent %1 started. e.g: qBittorrent v0.x started. 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 @@ -1087,57 +1148,57 @@ Example: Downloading www.example.com/test.torrent Finished i.e: Torrent has finished downloading - Completato + Completato - + Checking... i.e: Checking already downloaded parts... Controllo in corso... - + Stalled i.e: State of a torrent whose download speed is 0kb/s In Stallo - + Are you sure you want to quit? Sei sicuro di voler uscire? - + '%1' was removed. 'xxx.avi' was removed. '%1' è stato rimosso - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. '%1' aggiunto alla lista downloads. - + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) '%1' ripreso. (fast resume) - + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. '%1' è già nella lista downloads - + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' Impossibile decifrare il file torrent: '%1' - + None i.e: No error message Nessun @@ -1149,69 +1210,69 @@ Example: Downloading www.example.com/test.torrent In ascolto sulla porta: %1 - + All downloads were paused. Tutti i downloads sono stati fermati. - + '%1' paused. xxx.avi paused. '%1' fermato. - + Connecting... i.e: Connecting to the tracker... Connessione in corso... - + All downloads were resumed. Tutti i downloads sono stati ripresi. - + '%1' resumed. e.g: xxx.avi resumed. '%1' ripreso. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 scaricato. - + I/O Error i.e: Input/Output Error Errore I/O - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused C'è stato un errore di scrittura o di lettura con %1. Probabilmente il disco rigido è pieno, il download è stato fermato - + Connection Status: Status connessione: - + Online Online - + Firewalled? i.e: Behind a firewall/router? Firewalled? - + No incoming connections... Nessuna connession in entrata... @@ -1237,79 +1298,84 @@ Example: Downloading www.example.com/test.torrent Risultati - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... Download di '%1' in corso... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. C'è stato un errore (disco pieno?), '%1' fermato. - + Search Ricerca - + RSS - + UPnP: no WAN service detected... - + UPnP: WAN service detected! - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 - + DHT support [ON], port: %1 - + DHT support [OFF] - + UPnP support [ON], port: %1 - + UPnP support [OFF] - + PeX support [ON] - + PeX support [OFF] - + The download list is not empty. Are you sure you want to quit qBittorrent? + + + Downloads + + MainWindow @@ -1486,7 +1552,7 @@ Are you sure you want to quit qBittorrent? Transfers - Trasferimenti + Trasferimenti @@ -1513,6 +1579,11 @@ Are you sure you want to quit qBittorrent? Report a bug Riporta un bug + + + Downloads + + PropListDelegate @@ -2567,6 +2638,24 @@ Changelog: Aggiorna plugin di ricerca + + seeding + + + Search + Ricerca + + + + The following torrents are finished and shared: + + + + + <u>Note:</u> It is important that you keep sharing your torrents after they are finished for the well being of the network. + + + torrentAdditionDialog diff --git a/src/lang/qbittorrent_ko.qm b/src/lang/qbittorrent_ko.qm index cb9a70881b64603a1444f76c529f740194097549..8d49ec6993336fe22afafb34ec500b2c5a3ea4fc 100644 GIT binary patch delta 3651 zcmaLZ2~-qE8VB%ij-KwG>7L>80)wMK1T-LC93sl8prQx};srW`pg3b-5QONcV9-d^ zbrhp9?t^#`L}MHkkHjM$Nr=HKUTZv~*`R1lT-}Hf_dnXn9`P;j$*-%btLm%zsu~|$ zmfg51Tka3C8-)PiY0}&S}Ii8ZvO+k5{ zWUb_vlso|wb1jro_6`y6PAN^(U=)q1#CZH9O3N*Q)(T3idV+_olu^49o~7x97?6KT z#q&%=>Hw;4L8R(DvTs@lKcKxA&{2Jve)!~PB27nXsl)r4Vbpps48AARN0!6KvH@n) z3w>pg7XsjN*>Jz*MB)(H%1f7Eg=|$fPa>;$O161f5s_9UYtSXa4B4?#S9n0ybT$(H zDr?@HLZl0jxA)C}Ig)GS{!eG3+$8U{{T7iECm(d&AI8cvOm472o_S^)d?24W4=Hx` zm0Ow;V6wbWgR|gVEH8pqa;}pX-AC@7Z^|ob-z9Q!moG`a3Wvy7{}ZWkvB;0Q9fBw1 z-$tRMtCReOAq~dJZ|P#-R{76ukKjG|lVit-+`1`TUG*?g(ce55&Q*-#V&N9W_#YeK zB}MKa1lmrgFn!Hh@sO&RUxJ*p+n`ubk_)dXD&-isy+&boE`-w*r~S&|dc}994)BVi zIkJMNgP>@x_ytBNe(KU4E>ybJU`sn3PzFanB?I$l;* zemt3|lZW!Xcx$^&XG zk%yb|sNp&cRi3ikgp-vQ%dtR@<;uH(YPgqa7mKsv@jcVsIutqTyoT|sZz6ilh3Qw- z2B$K{Uf8nNs+gRwcEWv3&ND~-Ri==^S@2Xa?=N}}W=k%Ttdl&?tkW9M{u{Hd2X?MY zU$_BgGV20R-(?w7x8w+HWUMbAo-p-_#YB1!X2+qAU^26-BO=u=Wxnavj;QN6=3I&b zE>O8A;#7BSko;8@{KI;pZlS7yAtqR@iaz`|ctWyO72SkXcy(7L1R!NzMpZ^MQtGu% zmAM}a_xi@F%HflUyz^DFlnB6kqpGMYw$_JLm8vkIPpGPt`yNhFy)_am@L8@ZI~M@2 zs20t;NA!B2YD2?SXjE+ovYL)vWt%s^ve+ zx65s)c>L0ULF{Mqu)=^+_Ov%%2xww&WniK};{3C4dIJY>Js+Ck94^YoMAXZJi?*V@ zR{=N7z7$r!G{}cb-0_GgXg@bvHxl0DrZ@uV-JUDywJS*W0ZqJTZ_#wCN*&5i$9dyR^?ZN=RRZFmg{lDUMU2hWwcjA3#A!WgD@_v=mFhKBceBdK3QAh~iwKX7Zzx-G=(SY&%wi}Ib3%|eq2)w{wA7V8Tg^T=sdzq1_`hrRHrt63dTS0i=Xq_tUCG^31Y)J|d1 za|Dn?!pcGJ&?KyOsfRVfnp}T)Ua0AbPw{BEuxWP?Oc%Bk;*5-5Ce%mVfk%YHXX@ZX z;p7iEw8`GW=~jm$ge#vb;4I< zdXK}Fr<@mkmL4HWb(V}0LwX-Td5$>B>mdA8Olm_wsZYgm+pw}R1>(f8Mz~8ffgfr6`?e8{57s7k#&sNTliaCIJ?x3{ zEp3LmFVTdt+S#%A^E_dtwz4T7KGm+ZD2XO|Y1bAy?*AmUc5?z=oHRoFNo6^#*V?yC zg#Xm;TG2q1IaYh(`7?M%`>+pInAxg*dg>BUmZ$bvKcp%vL#Ojy443J2@7{u+={g7n zM3a+sFLrctg|3I^SdUi-!1&%dizaww1r{}iz)kt}qI%QfW|h+C^pEP|5R<0>AKnep)LG#i+zNyRT0MhKF%u#mEk;*@_5Xi6MqEoM+e(q zJv!LTu4;RdtDduc?(XLGB0w&6lsR0=lHR`88qM(?c0MsQaSzaYVG=vD++sJ_*wQ9J)TA1(b>fDVt8Omj!~a&&dW0w zVSc?u+CY6)KB}c%)n}Ou`hpx(8NwV3`8`_u?c|$IwlG)GS{hy$k!ZFU!@>g#BlPhW zeQtq1cg9R}z9q|K(OYt|Ec)5zLj823apsGG98;kp|3Bu-wir>&G0y()sk6;5YV}3N zygdD6qoboa+wq>>WV95S^QQ+OBJTH)Y)1|E9LsXyW6VXSJad+zz!9)wNNT)oVDAp< ee^=YybaAuoG#1**rn^eHiW&a@a^;`F0p4GToMs5CBua@ds9JTN=kZv;_m8=P!%7O8$%hq!>$7u4{5V*C!k zGsO50!(WJ*QAMP(CML=c2Aa$!=9QC(w-8gqz(ZtsTDW1V_?wu6Sww0_VvZh$aV85% z{J0KrJ-Ho6hw2~6?czit#+=;xykRhTJcEvzZ1VN%gbyh4>TV*|nVv80hf8Q?bvxW? zvW24Z0}lO}B2J{(lDA=q$)%KdWdY(3O@3kWJ|$d7dB?vYt#)p;?iB^hf%TO;SD?-2Vf}bd2T`P&CR}|a7{TA+3ygk7l z{-W6TWvpp8>nyQHIHqseBa+h4CC{#oh$ zX%CUkSvmcT8`LYaE;qod%GZjKLo=;%WmgOgROX4uv00`v|6ePW`TfYP*;(brx-CSb zNLikI6M8Cl{DBmVN>{d9VxNs_RDK=iM+O@8yYjYv4w1Q=vPTyItCR!7gRooqxTAx} zf>&8sjE7THQ04)YpxnFWbmeW+P7a|pwn^o%zb6|(6 zLW$>E4ycTy@`$VwRF_;!VX5kRu8jeOHdSxvM)*+GyYV5BwUg?Xan5jw+HyCR(z;gd zANmO1Qzv#}#x_CfR0ktmq+ZjAf!VaGD?WLdXtYB8PV@=rVlvL;T9f-te)rTdf_itI zVKdQ~$tWCv3)OYaAHjFk^&TT$QlHdl;gGsre~ZX=ociL*J1|OptrRn~U8VkMvIc(0 zSVdxw*q&pYqmZI!42)}i7yOg)s~#q@i(?jgW5w*>G-2!T&JXPe$t7nLGo7O<>o{ zyj%7T(b!m%xh5-__q2M{pJ3i|$C8cx4b~Fbk7wTVLcRSg=0JHH+|1OgHo!Dx&cgtZh6t@AxQ_n^=SYy$?{)$vzj5OXTn@8{Ya~m|?P< z4e!FzJ2bN~UPzI{?`(QFayY@0%{q>mPRL}lg+wAp6}w7}0XR-&^Bu5~j_XEg6NADh&(jQ4o744&b` zCgu`(>G^O2t{c2g@Gls*qT<0*C+G6jDPK6o zk;o?rqC=n6{2Kq2u%2JLavagK0eneyKP=;`EqB4oe6@WAkuS$LHx9w)_+w9Y;{Es4 z^DU$B8v1_7x85!!nv%nJgoVI8d}kYSH)VhyIKG<5Z>+$UV=4U>2s($m&?va9Lh7c9 zf@{TMSS?H*)WXZcl-;w5{B4BbsSU7Dn30(Q_XuIOIq)kXBR_^Hz(vU1)Qye<^dkjW zF68y%H3>K-6l_4lKv^i>@hVIZDm!XmtI%+}lPJhcI9}fdgN0i&bK!EKUws7*2@mxX ziKcl9fA0>29|*(UMX+C^eN;dcyi?=yg%|uo<3Bus=($Qw+II#9g#pdnn}>-);x+nU zOZdKK(eN19_SETVniVcuqUrZF1%1OrGb}VE!+6k)M9rr8GvHCp`*vI5Jx$$-AfnKC zO+yHlICP!KgPJ3&dJx~%G#&YXD9lXLvo#9pH9r}ycA(H8(wdiHpoI!-z(4T`*D?sSypX=pZsiEDg+uCE^=qH(`^w zv1S|Lw^w}IOao7ed+&r3MaiP!Xs;24Sn*U1Hd&NGJd=h`aMXVBd`31=v@CXKH^MaW zR(l9sFAfc(qv(g?KM(SVVjLuUCIT*z92&b|o#g(B6TJ1*7c8VO9R~8k3@JRR53ZLY z6BfXB>G^m(C)Uv*C8c8NVpB{ONm<|bBW{ouTlf;i3DVM~cwk(%RPc-!tdUAf(NVlg zDtomAc1dObU;wjhrR~#gVVShUydIvAcILRjU!~n1_~a(oNqdj@z~$1xJnW5x{Zf6% z18BG*wO&4eO{o_S)YR&XIIGjk(tdNlo##^B1)YuXM1AlQw{RcYBWf_D3=JeI3IFy`B(w!<$cX) zH|M0>-8)E>W+s0#t_ZG?ubJaFCGE7<$MBfwMGx&%mtlBJJG<2$=Spks>PTn2|LNu0 zimv6Tc&OdAQcX11R=X>2G0{s3?Y@{PFhcuTMJe2)H6F}_{o2FZnuszIwCDeM0?%n5 z`C*V9(YJ+Bds8s7o+=k#pV_1-0fe)QE1)~ zoli76ns-+>^Ro>^S(9{e+q5u4x9=22ob|J=;UZ=_f0^!D-4Og*ckLKf=4I;~{7W?| zrH>R|L3Nv*L|#vb|KxI(dqd!I-_6eEwifnMGva(XBQZE<$S^Y5BoDtz5oCK diff --git a/src/lang/qbittorrent_ko.ts b/src/lang/qbittorrent_ko.ts index 4cff47bf2..536ca6959 100644 --- a/src/lang/qbittorrent_ko.ts +++ b/src/lang/qbittorrent_ko.ts @@ -650,6 +650,67 @@ list: + + FinishedTorrents + + + Finished + + + + + 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 + 완전체 공유/부분 공유 + + + + Status + 상태 + + + + ETA + i.e: Estimated Time of Arrival / Time left + 남은시간 + + + + Finished + i.e: Torrent has finished downloading + + + GUI @@ -673,12 +734,12 @@ list: 업로딩 속도: - + Open Torrent Files 토런트 파일 열기 - + Torrent Files 토런트 파일 @@ -743,12 +804,12 @@ list? 파일을 지우고 싶으세요? - + &Yes &예 - + &No &아니요 @@ -814,9 +875,9 @@ download list? 다시 시작됨. - + Finished - 완료 + 완료 @@ -824,12 +885,12 @@ download list? 확인중... - + Connecting... 연결중... - + Downloading... 다운로딩 중... @@ -852,7 +913,7 @@ download list? - + This file is either corrupted or this isn't a torrent. 이 파일은 오류가 있거나 토런트 파일이 아닙니다. @@ -862,7 +923,7 @@ download list? 다운로드 목록에 있는 모든 파일을 지우고 싶으세요? - + Are you sure you want to delete the selected item(s) in download list? 다운로딩 목록에서 선택하신 모든 아이템을 삭제하시겠습니까? @@ -877,12 +938,12 @@ download list? 개발자: 크리스토프 두메스 :: Copyright (c) 2006 - + qBittorrent 큐비토런트 - + Are you sure? -- qBittorrent 재확인해주십시요? -- 큐비토런트 @@ -918,7 +979,7 @@ download list? 가 완료되었습니다. - + Couldn't listen on any of the given ports. 설정하신 포트에 연결할수 없습니다. @@ -1114,7 +1175,7 @@ Changelog: 업로드 속도 - + Status 상태 @@ -1145,17 +1206,17 @@ Changelog: 대기중 - + Paused 정지됨 - + Preview process already running 미리보기가 진행중입니다 - + There is already another preview process running. Please close the other one first. 미리보기가 진행중입니다. @@ -1187,7 +1248,7 @@ Please close the other one first. Transfers - 전송 + 전송 @@ -1195,12 +1256,12 @@ Please close the other one first. 정말로 큐비토런트를 종료하시겠습니까? - + Are you sure you want to delete the selected item(s) in download list and in hard drive? 정말로 지금 선택하신 파일들을 다운로드 목록과 하드 드라이브에서 삭제하시겠습니까? - + Download finished 다운로드 완료 @@ -1216,64 +1277,64 @@ Please close the other one first. 검색 엔진 - + qBittorrent %1 e.g: qBittorrent v0.x 큐비토런트 %1 - + Connection status: 연결 상태: - + Offline 오프라인 - + No peers found... 피어가 없습니다... - + 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 완전체 공유/부분 공유 - + ETA i.e: Estimated Time of Arrival / Time left 남은시간 @@ -1291,19 +1352,19 @@ Please close the other one first. 부분 공유 - + qBittorrent %1 started. e.g: qBittorrent v0.x started. 큐비토런트 %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 @@ -1312,57 +1373,57 @@ Please close the other one first. Finished i.e: Torrent has finished downloading - 완료되었습니다 + 완료되었습니다 - + Checking... i.e: Checking already downloaded parts... 확인중... - + Stalled i.e: State of a torrent whose download speed is 0kb/s 대기중 - + Are you sure you want to quit? 정말로 종료하시겠습니까? - + '%1' was removed. 'xxx.avi' was removed. '%1' 가 삭제되었습니다. - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. '%1'가 다운로드 목록에 추가되었습니다. - + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) '%1'가 다시 시작되었습니다. (빠른 재개) - + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. '%1'는/은 이미 다운로드 목록에 포함되어 있습니다. - + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' 다음 파일을 디코드할수 없습니다: '%1' - + None i.e: No error message 없음 @@ -1374,47 +1435,47 @@ Please close the other one first. 이미 연결 된 포트: %1 - + All downloads were paused. 모든 다운로드가 멈추었습니다. - + '%1' paused. xxx.avi paused. '%1'가 정지 되었습니다. - + Connecting... i.e: Connecting to the tracker... 연결중... - + All downloads were resumed. 모든 다운로드가 다시 시작되었습니다. - + '%1' resumed. e.g: xxx.avi resumed. '%1' 가 다운로드를 다시 시작되었습니다. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1가 다운로드를 완료하였습니다. - + I/O Error i.e: Input/Output Error I/O 에러 - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused %1을 사용하려고 하던 중 오류가 발생했습니다. 디스크 용량이 꽉찼고 다운로드가 중지되었습니다 @@ -1426,23 +1487,23 @@ Please close the other one first. 오류 발생 (디스크가 꽉찼습니까?), '%1'가 정지 되었습니다. - + Connection Status: 연결 상태: - + Online 온라인 - + Firewalled? i.e: Behind a firewall/router? 방화벽이 설치되어있습니까? - + No incoming connections... 받는 연결이 없습니다... @@ -1468,79 +1529,84 @@ Please close the other one first. 결과 - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... '%1'을 다운 중입니다, 잠시 기다려 주세요... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. 오류 발생 (디스크가 꽉찼습니까?), '%1'가 정지 되었습니다. - + Search 검색 - + RSS - + UPnP: no WAN service detected... - + UPnP: WAN service detected! - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 - + DHT support [ON], port: %1 - + DHT support [OFF] - + UPnP support [ON], port: %1 - + UPnP support [OFF] - + PeX support [ON] - + PeX support [OFF] - + The download list is not empty. Are you sure you want to quit qBittorrent? + + + Downloads + + MainWindow @@ -1695,9 +1761,9 @@ Are you sure you want to quit qBittorrent? 연결 상태 - + Downloads - 다운로드 + 다운로드 @@ -1792,7 +1858,7 @@ Are you sure you want to quit qBittorrent? Transfers - 전송 + 전송 @@ -2989,6 +3055,24 @@ Changelog: 검색 엔진 업데이트 + + seeding + + + Search + 검색 + + + + The following torrents are finished and shared: + + + + + <u>Note:</u> It is important that you keep sharing your torrents after they are finished for the well being of the network. + + + torrentAdditionDialog diff --git a/src/lang/qbittorrent_nb.qm b/src/lang/qbittorrent_nb.qm index 0bdf4f8ed700941fdebe60b6bc589bbb57468cc4..fbf81e6dfaa52565e317eba19e50bd1325ab6a83 100644 GIT binary patch delta 3670 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 MD>vE#tuBWD0jyM8-T(jq diff --git a/src/lang/qbittorrent_nb.ts b/src/lang/qbittorrent_nb.ts index b9c6159d5..c4aefa625 100644 --- a/src/lang/qbittorrent_nb.ts +++ b/src/lang/qbittorrent_nb.ts @@ -570,15 +570,76 @@ Copyright © 2006 av Christophe Dumez<br> + + FinishedTorrents + + + Finished + Ferdig + + + + 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 + + + + Status + Status + + + + ETA + i.e: Estimated Time of Arrival / Time left + Gjenværende tid + + + + Finished + i.e: Torrent has finished downloading + Ferdig + + GUI - + Open Torrent Files Åpne torrentfiler - + This file is either corrupted or this isn't a torrent. Denne filen er enten ødelagt, eller det er ikke en torrent. @@ -588,24 +649,24 @@ 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 + Ferdig @@ -613,12 +674,12 @@ Copyright © 2006 av Christophe Dumez<br> Kontrollerer... - + Connecting... Kobler til... - + Downloading... Laster ned... @@ -653,7 +714,7 @@ Copyright © 2006 av Christophe Dumez<br> Klarte ikke å opprette mappen: - + Torrent Files Torrentfiler @@ -707,7 +768,7 @@ Copyright © 2006 av Christophe Dumez<br> qBittorrent - + Are you sure? -- qBittorrent Er du sikker? -- qBittorrent @@ -737,7 +798,7 @@ Copyright © 2006 av Christophe Dumez<br> er ferdig lastet ned. - + Couldn't listen on any of the given ports. Klarte ikke å lytte på noen av de oppgitte portene. @@ -862,7 +923,7 @@ Endringer: Opplastingshastighet - + Status Status @@ -893,17 +954,17 @@ Endringer: Laster ikke ned - + Paused Pauset - + Preview process already running Forhåndsvisningen kjører allerede - + There is already another preview process running. Please close the other one first. En annen forhåndsvisning kjører alt. @@ -935,7 +996,7 @@ Vennligst avslutt denne først. Transfers - Overføringer + Overføringer @@ -943,12 +1004,12 @@ Vennligst avslutt denne først. Ønsker du å avslutte qBittorrent? - + Are you sure you want to delete the selected item(s) in download list and in hard drive? Ønsker du å slette valgte element(er) i nedlastningslisten, og fra lagringsenheten? - + Download finished Nedlastingen er fullført @@ -969,64 +1030,64 @@ Vennligst avslutt denne først. Lese/Skrive feil - + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - + Connection status: Tilkoblingsstatus: - + Offline Frakoblet - + No peers found... Ingen tjenere funnet... - + Name i.e: file name Navn - + Size i.e: file size Størrelse - + Progress i.e: % downloaded Fremgang - + DL Speed i.e: Download speed Nedlastingshastighet - + UP Speed i.e: Upload speed Opplastingshastighet - + Seeds/Leechs i.e: full/partial sources Delere/Nedlastere - + ETA i.e: Estimated Time of Arrival / Time left Gjenværende tid @@ -1044,24 +1105,24 @@ Vennligst avslutt denne først. Nedlastere - + qBittorrent %1 started. e.g: qBittorrent v0.x started. 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 @@ -1070,57 +1131,57 @@ Vennligst avslutt denne først. Finished i.e: Torrent has finished downloading - Ferdig + Ferdig - + Checking... i.e: Checking already downloaded parts... Kontrollerer... - + Stalled i.e: State of a torrent whose download speed is 0kb/s Laster ikke ned - + Are you sure you want to quit? Ønsker du å avslutte qBittorrent? - + '%1' was removed. 'xxx.avi' was removed. '%1' ble fjernet. - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. '%1' ble lagt til i nedlastingslisten. - + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) '%1' ble gjenopptatt (hurtig gjenopptaging) - + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. '%1' finnes allerede i nedlastingslisten. - + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' Klarte ikke å dekode torrentfilen: '%1' - + None i.e: No error message Ingen @@ -1132,47 +1193,47 @@ Vennligst avslutt denne først. Lytter på port: %1 - + All downloads were paused. Alle nedlastinger ble pauset. - + '%1' paused. xxx.avi paused. '%1' pauset. - + Connecting... i.e: Connecting to the tracker... Kobler til... - + All downloads were resumed. Alle nedlastinger ble gjenopptatt. - + '%1' resumed. e.g: xxx.avi resumed. '%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 - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused Det oppsto en feil ved lesing eller skriving til %1. Disken er mest sannsynelig full, nedlastingen har blitt pauset @@ -1184,23 +1245,23 @@ Vennligst avslutt denne først. Det har oppstått en feil (full disk?), '%1' er pauset. - + Connection Status: Tilkoblingsstatus: - + Online Tilkoblet - + Firewalled? i.e: Behind a firewall/router? Beskyttet av en brannmur? - + No incoming connections... Ingen innkommende tilkoblinger... @@ -1226,79 +1287,84 @@ Vennligst avslutt denne først. Resultater - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... 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 - + UPnP: no WAN service detected... - + UPnP: WAN service detected! - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 - + DHT support [ON], port: %1 - + DHT support [OFF] - + UPnP support [ON], port: %1 - + UPnP support [OFF] - + PeX support [ON] - + PeX support [OFF] - + The download list is not empty. Are you sure you want to quit qBittorrent? + + + Downloads + + MainWindow @@ -1475,7 +1541,7 @@ Are you sure you want to quit qBittorrent? Transfers - Overføringer + Overføringer @@ -1502,6 +1568,11 @@ Are you sure you want to quit qBittorrent? Report a bug Send en feilrapport + + + Downloads + + PropListDelegate @@ -2561,6 +2632,24 @@ Endringer: Oppdater søkeprogramtillegget + + seeding + + + Search + Søk + + + + The following torrents are finished and shared: + + + + + <u>Note:</u> It is important that you keep sharing your torrents after they are finished for the well being of the network. + + + torrentAdditionDialog diff --git a/src/lang/qbittorrent_nl.qm b/src/lang/qbittorrent_nl.qm index dc679dc2a354a328810c781bbea957b394c2f92e..be3ceb845071c8b26acade7f62497919c1189fbb 100644 GIT binary patch delta 3698 zcmaLZc~nzZ9tZGWlJ{Qnl9vP#+{K_`0hOgLAOebjC@LOEH=;4R13FhdfM50=vNlipz7ow>)hZDuxoJka43=4=7Z0!vsK6w@%ad@31 zcNY^$7-D{4pck>j_QE7$13KVpVnx(5J`;` zd1VJYLSsvw!k1=>+IWsgHrQc2jmsN>b}>Z{Tm}!(#NrL`pub&F{I_3K1VA)*a^-H6OiD@1$V&qK!v(GhhFQ73OvePL&~ zPSkiQ3||w9s)Oa?oW^MQr8rlCv*6M!&Vy!h?JLfEirTyC#Vaegp`Mr;dQ1i=TJ25Orh4t@ZUVRMNS#24+cyo0h;Gl0;b~ zyf1n8;Sr+ly(NZG2(XQe3Jh?*q)d#7du*3jJLMAf93;8u zRRWVFKN`EjPbH7SR>CI9qm{o9^sypKLCRv(Vp*{bAw?s_jQ=cg*T!U-W6Q5 z4@&0!8$uF3%mQ9qh#wa#(P13Rft*3qRr( zO~wueU*L)_`w;mAaI1>`0k?BIkKBY8x!n&h68ZM#4z`|yleyzha8`V8aP?o#A@Uo{ z-6}$0e(!Sk{qecqI)~;4sdxx#@6SlPOpk_3r9JMWmj2&L`xnF#y`3%%ta=ZYOJki2 z;IGo;AWSgCUz$}~3oE7Bw*Dcv><;ZOE&E{;(a_n_wcn=0ZBon3^YDz+(h>vPr0XSk z-vmsOR+K-+^B=HVx?gNT$8EcTzS1v?u*1Ol(u@5uAh1z-F98dU5M_mT7E{wg6#SuVntC!kA)9RrAh=Cd(7hi~$U*oR z&wt1bSz$m9QD_(0qMSZNqZnE7#;0(JY@^Fo*eu)VRz@_sx9n(58%&hdwr_#UWG6e} z@g03kcKS{MQCO?2eoQFQm_%8_S(I$ddD-*h`9$F?&y^yB;S+eZ`+c~J_gsLIMY!@_ zWpgk=#D3nlMFl(fp*yA%MW*neHvKRRg^{GA`u!$36FgP)a$5{)h5lU84XXY59a z9KOxxKEhKIHJ4ww9QQ|^;fprSBO2G0|De7C?&YiRG{9E=c-2{=@x%DrQD!49O#D;k zGEuaG|3&Kowfw(#j3AmI;X5uZfw6Mci-klJqvf7o`@jZyKu2GEWt-(QZ?Hr$UF3;3 z55c)|Z7^QFF&E_N9o>m0a}J-$vprQrQ<~%ppLF0WUXT}eV4kVt{J<+>Sic9($__5;lxls6xqOAk#&B`(>UOvvnMTOwTMi3>r3hp(HFijZv zMSr;4;m^VtH3E9iTL_=_1eOSqQ)a_!!q^y0lsrM0HUk+88CzX(7T74{&JH76=#HYxc~D$|?O$!p+L59SF#9NtsxUoz0oAObTj%CzV+d5unt48U#y~`oTzj z#w}&WMvR{qs4V7p;`yIftSs%#qvN)6&r#fHoTj|=s0G$3ul89&WE!Hp=8P{J(=uh- z3ZyJkuJSjx!V1-J&kmyb`Ks7ncpT@yw40?-O+W2Ml$D@LFb#!QRr!(ldd}{lDr?Mw z2UJ^g70&((0UTD|rjT&(UYWE16wsb6I@|9$m9w|CIKr1l?=bqd7l zr~}L41ofnHZxt?ftM{D3P6`*Qt1loEi#YYQ$~Ks9$N(Yb^EMoGnHVr6on3`i2n~ z)B|iIte4fZ7)#GI9lX0*1E~bzoz(DTc$L3wx~_YVBa{sPLpQJ$S~z02u+S7znYXR zbUTu+Nik|Q*?M$ogKWEb9r9&ujf*XZ=EC6I&=^yWE-2VHH&in|M`Os=80KY~vT{<4 zIhq`ON{%Mql&hJm(`CMz$hH(Zvi@tmv>Y9pdR_jXmrgUi>eb}wGBPx&I@^t=G}}0h zQJ0fv%9`tgh-80+WG%^05xv?MA7RQfW|&g6*|vyn^?6lEXNn*b<&hEfG@+ha%6?tZ f*SA>aXS!M*7A&?*TGrE1%!rBqub9b&YWaTv>G2{o delta 3114 zcmb8x`(KpB9tZHxKD*EEKD*EEqJS491q1~�!W@C?FzacmZ!H2y!O@ldEVh1?3Gb zLD4+sE6fy;(Ad<(ybzctQ`FSdj>nX&BZPR&%p)fDA@(0QKkU9|=GmF~&V1*2_Ngut z9;_4Iw^I~tvX3^u_8p+82WEDA6Nv1#3z%CB2u?sW>%s&GCmU&uRWp=7y~%ntR2NkA z0z{u`K&gT_mVK2YAWkZ$u@I;F(6v?%Lrgxw`VEMcBA`;i+*259ZHR-oKaLkRK|Feh zp0xU3=s&Fj#3ArJ#tFp&cwTg)weW2BrY#sgfD@~2FxuxVtwG55yXa#~Dd_+-uOPId ziN0=i3#R6eW4*zQ@L_MW@Ceh2w*cB9Ru^LC)dbeJTK&fABSgk$x0H7lDGJOu7Y??F>w3z5~micL4ox9KFVl z`W*c7*+bfh_G)&}|AEev;{iEI;S^Xx|D%|Y#dgCuMc_3rdR#Hh<9)z*Q?dER4Z!58 z*y1vfW+?W)mrp-d95F=zHoX+5SJ={AMf2rAdR)=EHwrM@yb$`hM+3dWtd@ zD0m;d3-lf&O#IrDCJS-j)zU6uX%Ta1>nr3mhtqf=SI->VzANPa?bkwn2XkvD3#+R( z(0Ri8$Xm2n*!qMiusbL;*_{IHU4<(_J}|>RQ@E2jmko!7yQaxNpP9nLuE%tr@bvU) z+M=|z zSC$GKw|}70(kqux8d#q^kJTiBPht;d&MvKno5i`A<=4(z4c zRb^fW3=CnRnwG1ozW9XRQPm8mgZisZ=!`T<)s%RfE>~U5X`xlB>m^*_pj)b6N9X`2 zThTs*XT&K`96FULat;$cYMSXe(WjydaFN6$Z|;~&fSCHt=QLGJecs)^UCcF$JOnQ1 z#eb~X1`Hl$b)nUF#T~{(w%3b0hH=XVchcQ}>lkr|7u#L4#p?Bqv|g;?Jr38qV%@2I zfSZeWs2>A!ds95`Z4V4tDqf9J(ht=R5j?y@?)5k{SZyBr%T8eEPW3B(nSi^4I=JBn z8gI2y9o)>VcfYL;_hO1XeAUsx%%MkyI_?-(>QSdom1Y8-C)If>2H^RdI^UT)IV@GZ zLd^+>eWYHY{fYjdUOAnC4>zfcuX@ou^_rsl^rl(8`^YWeWgGRLdza`!_2*BU=tlLi z_P&6ZgZlLGbeg69v50|r?Nt9flGnX1_BcY;2&0+v5mPjMW{1;8jl<7Oowq^bS{O<9 zY5Zyy(JPwB-i5$OUrpS2_8*z8S+>5On%gwl-4{kVTTRxKUf9a|Cz=i4rqElO@_F9? zqg9&n#}U+DvsuXpi_d$S%Ca_kPjgTx2Yg*L$BVc!-$czNSGM~$XzoUH0^b)}&v+iv zvD37}A7#-}ZID|g;8&&%HuJjK?@#TkmW{wTFRK@|5p|D&@g>?>rs?#6cK%jddcVgB zL$nFqflNr&7WN+u_&ZTf=pU+GF*b+3tzDTj2zX_wwz#5$wrMNuwgUkX+KPdtbglM_ zx=wmVTmSq6-v0p|+LOI_8%}i7Hry!$CM9W42L;eG+Ov(!U7(Nl;j!iP4N1M8TN!vn zGCBVY1oe{K^O(AzwnN5b;7+(B1`1AEzts;y}}Lb!+1% z(I>hO9XA3qJatuHj;Bq!+5m3xjAuR0^wAy8yUV}$eBF`5J87-%?#8LWEEnCc=I>9l zP^ibpC3L@D`RNJzyIxwJ#CL&xdPhfgjQpv`C`YTY`sh49+oLM*XmC94Gc=vpj1Kw=Oo>YK0v4V+ZT!7YROG-FVT!y?RqZo)^BCmPD0OC){n7NG2xjZ{bzZ+Z^aI2I33~n16=?1G;41S|d z04Z*U8G}#KLc`2129$Ehu%MO;Gp9xxV#l8aQY#IKY5ZZ@PD5h%%F_EAl0F_!GYqLO zbL-O^3`;85;dKW?v9y~e8P>lf(XR}9zhJ*5V+@yDAJdNv*9NTuGVBf4d-FdfBhfh0 z{FJsEecii&%qHXPhJipJTwl^KEjNYma^jJUwf zRC|#tEwGrbS9Jo*hnTL{b7z)!zg;YEwg~bGg~h?xrYJug*}FW{Cd+c)CQD_p*r({q zXT%vS=}vVvmhh3z3d^oh{*oQ|@`X9b!V={0I}2$@EN_`Gq5M;Oy~W4BO=HQNT&7Cw zhv~>e5|$y6pLir7mA_9yrj`Rh&5sndEIu@Won4E~Rf%tyN c7VpRwTT4vJK|9Otm9dKQm{mm + + FinishedTorrents + + + Finished + + + + + 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 + + + + Status + Status + + + + ETA + i.e: Estimated Time of Arrival / Time left + Geschatte resterende tijd + + + + Finished + i.e: Torrent has finished downloading + + + GUI @@ -742,7 +803,7 @@ Copyright 2006 door Christophe Dumez<br> gestart. - + qBittorrent qBittorrent @@ -762,12 +823,12 @@ Copyright 2006 door Christophe Dumez<br> UP snelheid: - + Open Torrent Files Open Torrent bestanden - + Torrent Files Torrent bestanden @@ -808,12 +869,12 @@ Copyright 2006 door Christophe Dumez<br> Torrentfile kan niet gedecodeerd worden: - + This file is either corrupted or this isn't a torrent. Dit bestand is corrupt of is geen torrent. - + Are you sure? -- qBittorrent Weet u het zeker? -- qBittorrent @@ -823,12 +884,12 @@ Copyright 2006 door Christophe Dumez<br> Weet u zeker dat u alle bestanden uit de downloadlijst wilt verwijderen? - + &Yes &Ja - + &No &Nee @@ -838,7 +899,7 @@ Copyright 2006 door Christophe Dumez<br> 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? @@ -906,7 +967,7 @@ Copyright 2006 door Christophe Dumez<br> is klaar met downloaden. - + Couldn't listen on any of the given ports. Kan niet luisteren op de aangegeven poorten. @@ -922,9 +983,9 @@ Copyright 2006 door Christophe Dumez<br> /s - + Finished - Klaar + Klaar @@ -932,12 +993,12 @@ Copyright 2006 door Christophe Dumez<br> Controleren... - + Connecting... Verbinding maken... - + Downloading... Downloaden... @@ -1111,7 +1172,7 @@ Changelog: UP snelheid - + Status Status @@ -1142,17 +1203,17 @@ Changelog: Stilstand - + Paused Gepauzeerd - + Preview process already running Vooruitkijk proccess is al bezig - + There is already another preview process running. Please close the other one first. Er is al een ander vooruitkijk proccess actief. @@ -1185,10 +1246,10 @@ Stop het eerste proccess eerst. Transfers - Overdrachten + Overdrachten - + Download finished Download afgerond @@ -1209,69 +1270,69 @@ Stop het eerste proccess eerst. Weet u zeker dat u qBittorrent af wil sluiten? - + Are you sure you want to delete the selected item(s) in download list and in hard drive? 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: - + Offline Offline - + No peers found... Geen peers gevonden... - + 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 - + ETA i.e: Estimated Time of Arrival / Time left Geschatte resterende tijd @@ -1289,19 +1350,19 @@ Stop het eerste proccess eerst. Downloaders - + qBittorrent %1 started. e.g: qBittorrent v0.x started. 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 @@ -1310,57 +1371,57 @@ Stop het eerste proccess eerst. Finished i.e: Torrent has finished downloading - Voltooid + Voltooid - + Checking... i.e: Checking already downloaded parts... Controleren... - + Stalled i.e: State of a torrent whose download speed is 0kb/s Stilstaand - + Are you sure you want to quit? Weet u zeker dat u wilt afsluiten? - + '%1' was removed. 'xxx.avi' was removed. '%1' is verwijderd. - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. '%1' toegevoegd aan de downloadlijst. - + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) '%1' hervat. (snelle hervatting) - + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. '%1' staat al in 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' - + None i.e: No error message Geen @@ -1372,69 +1433,69 @@ Stop het eerste proccess eerst. Aan het luisteren op poort: %1 - + All downloads were paused. Alle downloads gepauzeerd. - + '%1' paused. xxx.avi paused. '%1' gepauzeerd. - + Connecting... i.e: Connecting to the tracker... Verbinding maken... - + All downloads were resumed. Alle downloads hervat. - + '%1' resumed. e.g: xxx.avi resumed. '%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 - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused 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 - + Firewalled? i.e: Behind a firewall/router? Geblokkeerd? - + No incoming connections... Geen inkomende verbindingen... @@ -1460,79 +1521,84 @@ Stop het eerste proccess eerst. Resultaten - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... 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 - + UPnP: no WAN service detected... - + UPnP: WAN service detected! - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 - + DHT support [ON], port: %1 - + DHT support [OFF] - + UPnP support [ON], port: %1 - + UPnP support [OFF] - + PeX support [ON] - + PeX support [OFF] - + The download list is not empty. Are you sure you want to quit qBittorrent? + + + Downloads + + MainWindow @@ -1687,9 +1753,9 @@ Are you sure you want to quit qBittorrent? Verbindingsstatus - + Downloads - Downloads + Downloads @@ -1784,7 +1850,7 @@ Are you sure you want to quit qBittorrent? Transfers - Overdrachten + Overdrachten @@ -2936,6 +3002,24 @@ selecteer alstublieft een er van: Zoeken plugin bijwerken + + seeding + + + Search + Zoeken + + + + The following torrents are finished and shared: + + + + + <u>Note:</u> It is important that you keep sharing your torrents after they are finished for the well being of the network. + + + torrentAdditionDialog diff --git a/src/lang/qbittorrent_pl.qm b/src/lang/qbittorrent_pl.qm index 7651f6f2636a93cc5cfa8d0f1d64d0fde8c09446..abf93a6aba831597877bf7a7e0b1ea77ae265626 100644 GIT binary patch delta 3690 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 delta 3079 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 + + FinishedTorrents + + + Finished + Zakończono + + + + 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 + + + + Status + Status + + + + ETA + i.e: Estimated Time of Arrival / Time left + ETA + + + + Finished + i.e: Torrent has finished downloading + Zakończono + + GUI @@ -735,12 +796,12 @@ Wszystkie prawa zastrżeżone © 2006 Christophe Dumez<br> Prędkość UP: - + Open Torrent Files Otwórz pliki Torrent - + Torrent Files Pliki Torrent @@ -781,7 +842,7 @@ Wszystkie prawa zastrżeżone © 2006 Christophe Dumez<br> Problem z odkodowaniem pliku torrent: - + This file is either corrupted or this isn't a torrent. Plik jest uszkodzony lub nie jest plikiem torrent. @@ -791,12 +852,12 @@ Wszystkie prawa zastrżeżone © 2006 Christophe Dumez<br> Czy chcesz usunać wszystkie pliki z listy pobierania? - + &Yes &Tak - + &No &Nie @@ -806,7 +867,7 @@ Wszystkie prawa zastrżeżone © 2006 Christophe Dumez<br> List pobierania wyczyszczona. - + Are you sure you want to delete the selected item(s) in download list? Czy chcesz usunać wybrane elementy z listy pobierania? @@ -854,9 +915,9 @@ Wszystkie prawa zastrżeżone © 2006 Christophe Dumez<br> wznowiony. - + Finished - Ukończone + Ukończone @@ -864,12 +925,12 @@ Wszystkie prawa zastrżeżone © 2006 Christophe Dumez<br> Sprawdzanie.... - + Connecting... Łączenie... - + Downloading... Ściąganie... @@ -897,12 +958,12 @@ Wszystkie prawa zastrżeżone © 2006 Christophe Dumez<br> qBittorrent - + qBittorrent qBittorrent - + Are you sure? -- qBittorrent Jesteś pewny? -- qBittorrent @@ -943,7 +1004,7 @@ Wszystkie prawa zastrżeżone © 2006 Christophe Dumez<br> zakończył sciąganie. - + Couldn't listen on any of the given ports. Nie można nasłuchiwać na zaðnym z podanych portów. @@ -1141,7 +1202,7 @@ Changelog: Prędkość UP - + Status Status @@ -1172,17 +1233,17 @@ Changelog: Zablokowany - + Paused Zatrzymany - + Preview process already running Podgląd jest już uruchomiony - + There is already another preview process running. Please close the other one first. Podgląd jest już uruchomiony. @@ -1214,7 +1275,7 @@ Zamknij najpierw okno podglądu. Transfers - Prędkość + Prędkość @@ -1222,12 +1283,12 @@ Zamknij najpierw okno podglądu. Czy na pewno chcesz zakończyć aplikację qBittorrent? - + Are you sure you want to delete the selected item(s) in download list and in hard drive? Czy na pewno chcesz usunać wybrany element z listy i z dysku? - + Download finished Pobieranie zakończone @@ -1243,64 +1304,64 @@ Zamknij najpierw okno podglądu. Wyszukiwarka - + qBittorrent %1 e.g: qBittorrent v0.x qBittorent %1 - + Connection status: Status połączenia: - + Offline Niepołączony - + No peers found... Nie znaleziono perów... - + 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 - + ETA i.e: Estimated Time of Arrival / Time left ETA @@ -1318,19 +1379,19 @@ Zamknij najpierw okno podglądu. Leechers - + qBittorrent %1 started. e.g: qBittorrent v0.x started. qBittorrent %1 uruchomiony. - + DL speed: %1 KiB/s e.g: Download speed: 10 KiB/s DL prędkość: %1 KiB/s - + UP speed: %1 KiB/s e.g: Upload speed: 10 KiB/s UP prędkość: %1 KiB/ @@ -1339,57 +1400,57 @@ Zamknij najpierw okno podglądu. Finished i.e: Torrent has finished downloading - Zakończono + Zakończono - + Checking... i.e: Checking already downloaded parts... Sprawdzanie.... - + Stalled i.e: State of a torrent whose download speed is 0kb/s Zablokowany - + Are you sure you want to quit? Czy na pewno chcesz zakończyć aplikację? - + '%1' was removed. 'xxx.avi' was removed. '%1' został usunięty. - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. '%1' dodany do listy pobierania. - + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) '%1' wzniowiony. (szybkie wznawianie) - + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. '%1' jest już na liście pobierania. - + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' Problem z odczytem pliku torrent: '%1' - + None i.e: No error message Brak @@ -1401,47 +1462,47 @@ Zamknij najpierw okno podglądu. Nasłuchuje na porcie: %1 - + All downloads were paused. Wszystkie zadania pobierania wstrzymane. - + '%1' paused. xxx.avi paused. '%1' wstrzymany. - + Connecting... i.e: Connecting to the tracker... Łączenie... - + All downloads were resumed. Wszystkie zadania pobierania wzniowione. - + '%1' resumed. e.g: xxx.avi resumed. '%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 - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused Wystąpił błąd podczas próby odczytu lub zapisu %1. Prawdopodobnie brak miejsca na dysku, zadania pobierania zostały wstrzymane @@ -1453,23 +1514,23 @@ Zamknij najpierw okno podglądu. Wystąpił błąd (brak miejsca?), '%1' wstrzymany. - + Connection Status: Status połączenia: - + Online Połączony - + Firewalled? i.e: Behind a firewall/router? Zablokowany? - + No incoming connections... Brak połączeń przychodzących... @@ -1495,79 +1556,84 @@ Zamknij najpierw okno podglądu. Wyniki - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... 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 - + UPnP: no WAN service detected... - + UPnP: WAN service detected! - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 - + DHT support [ON], port: %1 - + DHT support [OFF] - + UPnP support [ON], port: %1 - + UPnP support [OFF] - + PeX support [ON] - + PeX support [OFF] - + The download list is not empty. Are you sure you want to quit qBittorrent? + + + Downloads + + MainWindow @@ -1722,9 +1788,9 @@ Are you sure you want to quit qBittorrent? Status połączenia - + Downloads - Ściąganie...Pobieranie + Ściąganie...Pobieranie @@ -1819,7 +1885,7 @@ Are you sure you want to quit qBittorrent? Transfers - Prędkość + Prędkość @@ -3002,6 +3068,24 @@ Changelog: Aktualizacja wtyczki wyszukiwania + + seeding + + + Search + Szukaj + + + + The following torrents are finished and shared: + + + + + <u>Note:</u> It is important that you keep sharing your torrents after they are finished for the well being of the network. + + + torrentAdditionDialog diff --git a/src/lang/qbittorrent_pt.qm b/src/lang/qbittorrent_pt.qm index ff9f7fff13e8172a6672aa8b665181b4345c87b2..4b6a6ccfe9a020048b09ed920f92429c13970999 100644 GIT binary patch delta 3713 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 WCB-)Vf)F8zQ6v5-iBZ-M6#oILp&ao5 delta 3055 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 I$!^_$0Ry8~WB>pF diff --git a/src/lang/qbittorrent_pt.ts b/src/lang/qbittorrent_pt.ts index d90d0d3cd..c11ec7f6f 100644 --- a/src/lang/qbittorrent_pt.ts +++ b/src/lang/qbittorrent_pt.ts @@ -580,10 +580,71 @@ Copyright ©2007 por Christophe Dumez<br> + + FinishedTorrents + + + Finished + Concluído + + + + Name + i.e: file name + Nome + + + + Size + i.e: file size + Tamanho + + + + Progress + i.e: % downloaded + Progresso + + + + DL Speed + i.e: Download speed + Velocidade de download + + + + UP Speed + i.e: Upload speed + Velocidade de Upload + + + + Seeds/Leechs + i.e: full/partial sources + Seeds/Leechs + + + + Status + Estado + + + + ETA + i.e: Estimated Time of Arrival / Time left + ETA + + + + Finished + i.e: Torrent has finished downloading + Concluído + + GUI - + Open Torrent Files Abrir Arquivos Torrent @@ -593,7 +654,7 @@ Copyright ©2007 por Christophe Dumez<br> Desconhecido - + This file is either corrupted or this isn't a torrent. Este arquivo está corrompido ou não é um torrent. @@ -603,17 +664,17 @@ Copyright ©2007 por Christophe Dumez<br> Tem certeza que deseja apagar todos os arquivos na lista de downloads? - + &Yes &Sim - + &No &Não - + Are you sure you want to delete the selected item(s) in download list? Tem certeza que deseja apagar o(s) arquivo(s) selecionado(s) na lista de downloads? @@ -628,9 +689,9 @@ Copyright ©2007 por Christophe Dumez<br> iniciado - + Finished - Concluído + Concluído @@ -638,12 +699,12 @@ Copyright ©2007 por Christophe Dumez<br> Checando... - + Connecting... Conectando... - + Downloading... Baixando... @@ -683,7 +744,7 @@ Copyright ©2007 por Christophe Dumez<br> Não pode criar o diretório: - + Torrent Files Arquivos Torrent @@ -737,12 +798,12 @@ Copyright ©2007 por Christophe Dumez<br> qBittorrent - + qBittorrent qBittorrent - + Are you sure? -- qBittorrent Tem certeza? -- qBittorrent @@ -772,7 +833,7 @@ Copyright ©2007 por Christophe Dumez<br> download finalizado. - + Couldn't listen on any of the given ports. Não foi possível escutar pelas portas dadas. @@ -942,7 +1003,7 @@ Registro de mudanças: Velocidade de Upload - + Status Estado @@ -968,17 +1029,17 @@ Registro de mudanças: Parado - + Paused Pausado - + Preview process already running Processo de pré-visualização já está rodando - + There is already another preview process running. Please close the other one first. Há um outro processo de pré-visualização rodando. @@ -993,10 +1054,10 @@ Por favor feche o outro primeiro. Transfers - Transferências + Transferências - + Download finished Download finalizado @@ -1017,7 +1078,7 @@ Por favor feche o outro primeiro. Você tem certeza que quer sair do qBittorrent? - + Are you sure you want to delete the selected item(s) in download list and in hard drive? Você tem certeza que quer deletar o(s) arquivo(s) selecionado(s) da lista de download e do seu disco rígido? @@ -1027,64 +1088,64 @@ Por favor feche o outro primeiro. Erro de Entrada/Saída - + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - + Connection status: Estado da conexão: - + Offline Offline - + No peers found... Peers não encontrados... - + Name i.e: file name Nome - + Size i.e: file size Tamanho - + Progress i.e: % downloaded Progresso - + DL Speed i.e: Download speed Velocidade de download - + UP Speed i.e: Upload speed Velocidade de Upload - + Seeds/Leechs i.e: full/partial sources Seeds/Leechs - + ETA i.e: Estimated Time of Arrival / Time left ETA @@ -1102,19 +1163,19 @@ Por favor feche o outro primeiro. Leechers - + qBittorrent %1 started. e.g: qBittorrent v0.x started. qBittorrent %1 iniciado. - + DL speed: %1 KiB/s e.g: Download speed: 10 KiB/s Velocidade de download: %1 KiB/s - + UP speed: %1 KiB/s e.g: Upload speed: 10 KiB/s Velocidade de Upload: %1 KiB/s @@ -1123,57 +1184,57 @@ Por favor feche o outro primeiro. Finished i.e: Torrent has finished downloading - Concluído + Concluído - + Checking... i.e: Checking already downloaded parts... Checando... - + Stalled i.e: State of a torrent whose download speed is 0kb/s Parado - + Are you sure you want to quit? Você tem certeza que quer sair? - + '%1' was removed. 'xxx.avi' was removed. '%1' foi deletado. - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. '%1' adicionado a lista de download. - + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) '%1' continuando. (continue rápido) - + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. '%1' já está na lista de download. - + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' Incapaz de decodificar arquivo torrent: '%1' - + None i.e: No error message Nenhum @@ -1185,47 +1246,47 @@ Por favor feche o outro primeiro. Escutando a porta: %1 - + All downloads were paused. Todos os downloads pausados. - + '%1' paused. xxx.avi paused. '%1' pausado. - + Connecting... i.e: Connecting to the tracker... Conectando... - + All downloads were resumed. Todos os downloads foram resumidos. - + '%1' resumed. e.g: xxx.avi resumed. '%1' resumido. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 download finalizado. - + I/O Error i.e: Input/Output Error Erro de Entrada/Saída - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused Ocorreu um erro quando tentava ler ou escrever %1. Provavelmente o seu disco está cheio, o download foi pausado @@ -1237,23 +1298,23 @@ Por favor feche o outro primeiro. Ocorreu um erro (disco cheio?), '%1' pausado. - + Connection Status: Estado da conexão: - + Online Online - + Firewalled? i.e: Behind a firewall/router? Sob firewall? - + No incoming connections... Sem conexão... @@ -1279,79 +1340,84 @@ Por favor feche o outro primeiro. Resultados - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... baixando '%1', por favor espere... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Ocorreu um erro (disco cheio?), '%1' pausado. - + Search Busca - + RSS - + UPnP: no WAN service detected... - + UPnP: WAN service detected! - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 - + DHT support [ON], port: %1 - + DHT support [OFF] - + UPnP support [ON], port: %1 - + UPnP support [OFF] - + PeX support [ON] - + PeX support [OFF] - + The download list is not empty. Are you sure you want to quit qBittorrent? + + + Downloads + + MainWindow @@ -1491,9 +1557,9 @@ Are you sure you want to quit qBittorrent? Estado da conexão - + Downloads - Downloads + Downloads @@ -1588,7 +1654,7 @@ Are you sure you want to quit qBittorrent? Transfers - Transferências + Transferências @@ -2856,6 +2922,24 @@ Copyright ©2007 por Christophe Dumez<br> Atualizar plugin de busca + + seeding + + + Search + Busca + + + + The following torrents are finished and shared: + + + + + <u>Note:</u> It is important that you keep sharing your torrents after they are finished for the well being of the network. + + + torrentAdditionDialog diff --git a/src/lang/qbittorrent_ro.qm b/src/lang/qbittorrent_ro.qm index 4496c90dd189adfbd78e5a12ea1ed18b3cf9aa01..3ef06b0acded81afcbee4f5b9973ece5cc804c62 100644 GIT binary patch delta 3705 zcmaLZ30PBC76t^__1Jh zh44KW!Of+vnbw54M1l=O<4(fUM9Fp^5v4+5FQSY}7*3RFucwo6-yvvmxSB*)-$MN> z5`Qa(*NF+I0 zxkSt$Vs>tY*$(SS{z)V1r^#?kuolWSk7(^ZWkS0Z=Kpj;@qzn-!#&lT@($!UdQkSn;Ymk=3bDu<>0B8ZHX9s}hO2O%}A4JHu;&wo_3= z-NOX!8`I!qVGo~7xXs}cq2H4tBIj7);4Rl+oiOqXKX^fyX>cKO$r0wB+zdYy7F8g{ zE@y@2wge(qfv`l5yWl!NXn|I8EfQMpBKNNQg$o+rA?ndbSe<$i4i&Ea1*z$gFFfqB zAD$JSj>f>A1BF*K8L(J*O%)425#H~7NYu+!__(zdCW)M#)o`9D#5f1Gh_cu?_)s+I z=60gqLqz&W1lrpoG8~gyQ8*@=TZWwUNfON~)5B^}jSv&}*)FnmDnP;t)f~pRsSRFc zg6leoJQ+qi7)RzA&ghPO1}8GQr}p-FObLU#;MvTqUidyyf3?F=4vQQ%Fl&?=eBQ>a z@yE$|DdBoJidhqYb}tjNsrnGy!C1QrKQc|CMMMK!nU?*3ff>x!UWjx+BlFE*S0e8P z%$YP1+#u0TK5#drIJe(2rOW~ zA8Y4ngh%i=;i$6W}RnpX=vH?;N{XS!df)6IeaGFQ-K|ZcuG(7M~9FU>9tHO6taf(%fsyrX=evMFcO7&vC&=z zqA&p)W5wrT!R#2@5;(2Pp*`8emWM<`FR&@9@kHSgcB(yq@C3H3w)dOIhWBN6v~<7>cGuGn;2d^eH$1+>TiF9w z%7`N7vaQh(@Dh9U5K%sN{TW3NS%b7#H|Z z39Go*8`9xDZdk}>qUa)S#N=%F0TEh3xj(R%nsax+-{FF8X9I{)h0CbER6C zFL!gpxa2hs&vcn0kY~=qt3Jh3Zk^_Y9j45bzcmawOgSgF`eK1pZ+X>F3)IQyJ6(jE zz$#m{ELZrHD~0>zs}ad ztMXI27NUvq^2>)KV3E9|6YEWEw922|Dna2K@6N;$y&1=Qw6wuG-v877@O+ngI^xmhiLMAer5M2_#OX&-j67!7vC@tui~5p ze#5pPSjB%_f;*D4n{SG^1@G|(PHrN~9mIco1D7_}%%AA6yO#g^K@t3d|9;M5qC7GG zbZ|SYR!Es$c>eSDE2Iaole{|$w+vjODZLc^vvA~7@)cf74#BMse^rFNwwGvXoFd6{ zA2cYEI}y;-rHZW0*qMe?Ob$N^vlJRV`f1}88vDky`xM%B;jmqy8-%0JAF3#ol>vogr~ zm`ER|4DsnCD)3gOy5VswsCRf!nSQ_>^-g7`@pYo=9(&4r?h=MnaJR*+`4Q#oU8o$*;9B>`CtfkXtdBjkiWaDzpJ>q;mB0I&L^HirL8GzG%n7QI&2Pii zs&UKwlqlR#ZQPHY6t}20AIC|U;#KDxJ7B5m{4N}w>4=`l+}pNF-X!pjqcnZQQ2~fUdOSUV4wd_mwG&?L?>h#|SVEZgGS!^qd_26DI!ZrHC?j3Q&PInQ8Ln{|0+b*ZsLJzc9UdOneTDKr%S+j{wCEvh3=SrZ+zaWwrC3r)l;S4B*?$7!m=Os8 delta 3087 zcma*pi(gdL76gV-Nf z*hHM~e%M8v-vE(XPh4;n3??qZ7v`DWN!-Gd=(iA8!@;Ly{IkKj4-K#e;=W8JVz&@? z>@aLK+fVX=IwH=W+?ufDOwBG|m)W_86Aa zjOsJ6$?OA)D4a|rSQ{zQ{R1?n(_5w6V3FDV6mxX}`uB$vEzM4)xye{aTuia08{lUY z+mQ{=QG5mFiw`LwtC&c#qJ-)`7)pk^t#An~F2Mby9aL133xA@TM+i(dPA1ddwP>uM zW7jcJuBC?upTJ&vv>y``7wT^bfV)+rL&}J>6IE04Fs{u|gpE{6~e^Hz25izPA+OJZzX3>Y|Q_BrGB z$5Nu<(-^O>yWkdP+F3Vvg-N~CKxAoPmX@G~mX*x%j!1ZdDUeZP%TA_nP%96n@G)v@ zwVGL1_aVH-Y@B-s_A=XlM+vN*m@`(VU?p=U)R&B8{WEhvJ%Px^lj+jG0kfDV1HJGf z)7REUWUHtxEl0y3^`yKtFjqYfbHMxg1@P=rXj#ryw$niYv4Nd`^6~52u1xt zaTc7Ru3&KA5&3GM{X(9>@7S1j?AXqejdwIbBfF{*f!W<=E54df^y&!qdjyV(X6n1KwuqJ)navds5QD2=+|+J($B@Sl$WuvNy`GLx)@JFB2r9 z(K2T}9cN_p6mDDuO5`|-bFJ@yJ2~I#0oclAcp+ns&$-NVhlrf4xXc$AcM9SPj2sSu zQx5m(`j6qQA)Q&X9^6h{I+1eUdbKV8_z#H67PmGUIbNe@*h7nx7x*RU$8c%%z z8@a=;Ah5A&?q6Qku#>wQt0sC)#gCkg!~0se*)Mpb-@{!*;}m|Xe=dyV!&-lYYt5eK z!#a?97vdv5Q6d)uZwNyTUAFM4&Dg2S6+TmpA#!cuSFi}c^(kNIh)lY<@T+(%=r*5U zCHw>{`PESf-0d7+dexK2{WX4l$*(Zc$nR;ogGMpG_vef7EPtr)4E!(O{K%Hbqk?Zc zkqz(icS{i1cpd*>BCd~*Fk7Z!yixPFz%D5=`vsepJRes8V;#1FL*r5 zgP}s`*j%DX_ClBu*Nv0r2ydD;VW4bCKObRsV=s~4b777?ipbwtNZM`*7n$89EEo*L z|CUfZ!kK9DR)_^BHw&x$mc!@5>g5hZ0cV8L>c_BOsJ7ZcG-aVsZC?Qo2uBVR#G!6NJ|L#Y9srg|^Tj_^!}?8nv6cTX@pE65ba1jYwsXv#57`09T4G zD^R*=)}m`gHf$Fs^y-L$ZA72iIQYI8IH`dsgb{;NlA*g8Ix-8!iOGeLutH2Jzl?=L zt_?PbLOHRZ8;?n7pjfmP6GPt>OSb30TjJ)n8ltdOV#ED**e*8LpC)?4LcBL47lwiEXa!rPMFS(???Xmjkn&x0L~rhviXIKX+fwNOZuHg&sXQ$hCP|;!ZGx3j z-8TV5vuvb>Af$NKn`YmWj;!cHze#F3vJ3V|U7I3^X3v*?Fpe-*?VLn z+@yS2fU}X@rql=ZKx3cMdTBpVil6esL!8o-HOj^QLH8-Q|EY!-l+HC9h~CjDFTA?p zHm!y`4%@YwR_x@R=UTf2oSjrB?U;E;b?Q>>*iENl%aCb|*8laBL}^jlXy+DKq>ULs zKxv<9=QUts#`%`olz?`k`5D^uEd1euXl?r7&K8{0X6z1t&$OB2k^1y7?UHItNZ+L` z75BhzwHsd*i84a9`;KB>#tQA_?p}CBd);9T(L%lU#&G;kS?I5uXzYVWb(35Mh!*Y8 z#kJZKWm@T0P9KNoKXaC@qGK5b&g*t8XNj^H-Hw86Xw>bC^nqQvgB4{&**QAXmnpDE zcet{NXmO(M{L2^c6Wud!Y+!M#?vD#M;RD?ZUzB2rqh9Y)4s-ST54+$_y{(c@l#`uL1XB=D$m+5C!>fj0ezEg-euUy}70Xtp#s{Te@KaAGj zIF8IL{X7f5{$pa4dX?#xwo_I0oBktHv&DC8RfLVbNwP_ls%EBZO%0>_^`F tC#!HQ=r2#JO0%&xMTa|zriLh6OOwTdnqj7hf-F^)u5f~Bb>ZKI{{sg*PC5Vp diff --git a/src/lang/qbittorrent_ro.ts b/src/lang/qbittorrent_ro.ts index bcebc69f9..f7238cd00 100644 --- a/src/lang/qbittorrent_ro.ts +++ b/src/lang/qbittorrent_ro.ts @@ -590,10 +590,71 @@ Copyright © 2006 by Christophe Dumez<br> + + FinishedTorrents + + + Finished + Finişat + + + + Name + i.e: file name + Nume + + + + Size + i.e: file size + Capacitate + + + + Progress + i.e: % downloaded + Progress + + + + DL Speed + i.e: Download speed + Viteză DL + + + + UP Speed + i.e: Upload speed + Viteză UP + + + + Seeds/Leechs + i.e: full/partial sources + + + + + Status + Stare + + + + ETA + i.e: Estimated Time of Arrival / Time left + ETA + + + + Finished + i.e: Torrent has finished downloading + Finişat + + GUI - + Open Torrent Files Deschide Fişiere Torrent @@ -603,7 +664,7 @@ Copyright © 2006 by Christophe Dumez<br> Necunoscut - + This file is either corrupted or this isn't a torrent. Acest fişier este deteriorat sau nu este torrent. @@ -613,17 +674,17 @@ Copyright © 2006 by Christophe Dumez<br> Sunteţi siguri să ştergeţi toate fişierele din lista de download? - + &Yes &Yes - + &No &No - + Are you sure you want to delete the selected item(s) in download list? Sunteţi siguri să ştergeţi itemii selectaţi din lista download? @@ -638,9 +699,9 @@ Copyright © 2006 by Christophe Dumez<br> început - + Finished - Finişat + Finişat @@ -648,12 +709,12 @@ Copyright © 2006 by Christophe Dumez<br> Verificare... - + Connecting... Conectare... - + Downloading... Downloading... @@ -693,7 +754,7 @@ Copyright © 2006 by Christophe Dumez<br> Nu pot crea directoriul: - + Torrent Files Fişiere Torrent @@ -747,12 +808,12 @@ Copyright © 2006 by Christophe Dumez<br> qBittorrent - + qBittorrent qBittorrent - + Are you sure? -- qBittorrent Sunteţi siguri? -- qBittorrent @@ -782,7 +843,7 @@ Copyright © 2006 by Christophe Dumez<br> am terminat descărcarea. - + Couldn't listen on any of the given ports. Nu pot asculta pe orice port dat. @@ -953,7 +1014,7 @@ Changelog: Viteză UP - + Status Stare @@ -984,17 +1045,17 @@ Changelog: Oprit - + Paused Pauzat - + Preview process already running Procesul de preview de acum este pornit - + There is already another preview process running. Please close the other one first. De acum alt proces de preview este pornit. @@ -1026,7 +1087,7 @@ Vă rugăm să-l opriţi. Transfers - Transferuri + Transferuri @@ -1034,12 +1095,12 @@ Vă rugăm să-l opriţi. Doriti să eşiţi din qBittorrent? - + Are you sure you want to delete the selected item(s) in download list and in hard drive? Doriti să ştergeţi item(ii) selectaţi? - + Download finished @@ -1060,64 +1121,64 @@ Vă rugăm să-l opriţi. Eroare de intrare/eşire - + qBittorrent %1 e.g: qBittorrent v0.x - + Connection status: - + Offline - + No peers found... - + Name i.e: file name Nume - + Size i.e: file size Capacitate - + Progress i.e: % downloaded Progress - + DL Speed i.e: Download speed Viteză DL - + UP Speed i.e: Upload speed Viteză UP - + Seeds/Leechs i.e: full/partial sources - + ETA i.e: Estimated Time of Arrival / Time left ETA @@ -1129,19 +1190,19 @@ Vă rugăm să-l opriţi. Seederi - + qBittorrent %1 started. e.g: qBittorrent v0.x started. - + DL speed: %1 KiB/s e.g: Download speed: 10 KiB/s - + UP speed: %1 KiB/s e.g: Upload speed: 10 KiB/s @@ -1150,125 +1211,125 @@ Vă rugăm să-l opriţi. Finished i.e: Torrent has finished downloading - Finişat + Finişat - + Checking... i.e: Checking already downloaded parts... Verificare... - + Stalled i.e: State of a torrent whose download speed is 0kb/s Oprit - + Are you sure you want to quit? - + '%1' was removed. 'xxx.avi' was removed. - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. - + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) - + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. - + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' - + None i.e: No error message Nimic - + All downloads were paused. - + '%1' paused. xxx.avi paused. - + Connecting... i.e: Connecting to the tracker... Conectare... - + All downloads were resumed. - + '%1' resumed. e.g: xxx.avi resumed. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. - + I/O Error i.e: Input/Output Error Eroare de intrare/eşire - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused - + Connection Status: - + Online - + Firewalled? i.e: Behind a firewall/router? - + No incoming connections... @@ -1279,79 +1340,84 @@ Vă rugăm să-l opriţi. Rezultate - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. - + Search Caută - + RSS - + UPnP: no WAN service detected... - + UPnP: WAN service detected! - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 - + DHT support [ON], port: %1 - + DHT support [OFF] - + UPnP support [ON], port: %1 - + UPnP support [OFF] - + PeX support [ON] - + PeX support [OFF] - + The download list is not empty. Are you sure you want to quit qBittorrent? + + + Downloads + + MainWindow @@ -1491,9 +1557,9 @@ Are you sure you want to quit qBittorrent? Starea Conectării - + Downloads - Descărcări + Descărcări @@ -1588,7 +1654,7 @@ Are you sure you want to quit qBittorrent? Transfers - Transferuri + Transferuri @@ -2758,6 +2824,24 @@ Changelog: Înnoirea plugin-ului cautat + + seeding + + + Search + Caută + + + + The following torrents are finished and shared: + + + + + <u>Note:</u> It is important that you keep sharing your torrents after they are finished for the well being of the network. + + + torrentAdditionDialog diff --git a/src/lang/qbittorrent_ru.qm b/src/lang/qbittorrent_ru.qm index a140e8129a5851c9c91ebc8da86e01dec505c662..549b15d0510f5f0c65e0b1fbd3976d67b50a6069 100644 GIT binary patch delta 3706 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 + + FinishedTorrents + + + Finished + Завершено + + + + 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 + Раздающих/Качающих + + + + Status + Статус + + + + ETA + i.e: Estimated Time of Arrival / Time left + + + + + Finished + i.e: Torrent has finished downloading + Завершено + + GUI @@ -665,7 +726,7 @@ Copyright © 2006 by Christophe Dumez<br> начат. - + qBittorrent qBittorrent @@ -685,12 +746,12 @@ Copyright © 2006 by Christophe Dumez<br> Скорость Загр.: - + Open Torrent Files Открыть файлы Torrent - + Torrent Files Файлы Torrent @@ -731,12 +792,12 @@ Copyright © 2006 by Christophe Dumez<br> Невозможно декодировать torrent файл: - + This file is either corrupted or this isn't a torrent. Этот файл либо поврежден, либо не torrent типа. - + Are you sure? -- qBittorrent Вы уверены? -- qBittorrent @@ -746,12 +807,12 @@ Copyright © 2006 by Christophe Dumez<br> Вы уверены что хотите удалить все файлы из списка закачек? - + &Yes &Да - + &No &Нет @@ -761,7 +822,7 @@ Copyright © 2006 by Christophe Dumez<br> Список закачек очищен. - + Are you sure you want to delete the selected item(s) in download list? Вы уверены что хотите удалить выделенные пункты из списка закачек? @@ -829,7 +890,7 @@ Copyright © 2006 by Christophe Dumez<br> скачивание завершено. - + Couldn't listen on any of the given ports. Невозможно прослушать ни один из заданных портов. @@ -845,9 +906,9 @@ Copyright © 2006 by Christophe Dumez<br> - + Finished - Закончено + Закончено @@ -855,12 +916,12 @@ Copyright © 2006 by Christophe Dumez<br> Проверка... - + Connecting... Подключение... - + Downloading... Скачивание... @@ -1054,7 +1115,7 @@ Changelog: Скорость загр - + Status Статус @@ -1085,17 +1146,17 @@ Changelog: Заглохло - + Paused Пауза - + Preview process already running Процесс предпросмотра уже работает - + There is already another preview process running. Please close the other one first. Есть уже другой процесс предпросмотра. @@ -1127,7 +1188,7 @@ Please close the other one first. Transfers - Передачи + Передачи @@ -1135,12 +1196,12 @@ Please close the other one first. Вы действительно хотите покинуть qBittorrent? - + Are you sure you want to delete the selected item(s) in download list and in hard drive? Вы действительно хотите удалить выбранный(-е) элемент(ы) из списка скачек и с жесткого диска? - + Download finished Скачивание завершено @@ -1156,64 +1217,64 @@ Please close the other one first. Поисковый движок - + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - + Connection status: Состояние связи: - + Offline Не в сети - + No peers found... Не найдено пиров... - + 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 Раздающих/Качающих - + ETA i.e: Estimated Time of Arrival / Time left Оцен. время @@ -1231,19 +1292,19 @@ Please close the other one first. Качающие - + qBittorrent %1 started. e.g: qBittorrent v0.x started. qBittorrent %1 запущен. - + DL speed: %1 KiB/s e.g: Download speed: 10 KiB/s Скорость скач.: %1 KiB/с - + UP speed: %1 KiB/s e.g: Upload speed: 10 KiB/s Скорость загр.: %1 KiB/с @@ -1252,57 +1313,57 @@ Please close the other one first. Finished i.e: Torrent has finished downloading - Завершено + Завершено - + Checking... i.e: Checking already downloaded parts... Проверка... - + Stalled i.e: State of a torrent whose download speed is 0kb/s Простаивает - + Are you sure you want to quit? Вы действительно хотите выйти? - + '%1' was removed. 'xxx.avi' was removed. '%1' был удален. - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. '%1' добавлен в список закачек. - + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) '%1' запущен. (быстрый запуск) - + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. '%1' уже присутствует в списке закачек. - + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' Не удалось раскодировать torrent файл: '%1' - + None i.e: No error message Нет @@ -1314,47 +1375,47 @@ Please close the other one first. Прослушивание порта: %1 - + All downloads were paused. Все закачки были приостановлены. - + '%1' paused. xxx.avi paused. '%1' приостановлен. - + Connecting... i.e: Connecting to the tracker... Подключение... - + All downloads were resumed. Все закачки были запущены. - + '%1' resumed. e.g: xxx.avi resumed. '%1' запущена. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. скачивание %1 завершено. - + I/O Error i.e: Input/Output Error Ошибка ввода/вывода - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused При попытке чтения/записи %1 произошла ошибка. Возможно, на диске не хватает места, закачка приостановлена @@ -1366,23 +1427,23 @@ Please close the other one first. Произошла ошибка (нет места?), '%1' остановлен. - + Connection Status: Состояние связи: - + Online В сети - + Firewalled? i.e: Behind a firewall/router? Файерволл? - + No incoming connections... Нет входящих соединений... @@ -1408,79 +1469,84 @@ Please close the other one first. Результаты - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... Скачивание '%1', подождите... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Произошла ошибка (нет места?), '%1' остановлен. - + Search Поиск - + RSS - + UPnP: no WAN service detected... - + UPnP: WAN service detected! - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 - + DHT support [ON], port: %1 - + DHT support [OFF] - + UPnP support [ON], port: %1 - + UPnP support [OFF] - + PeX support [ON] - + PeX support [OFF] - + The download list is not empty. Are you sure you want to quit qBittorrent? + + + Downloads + + MainWindow @@ -1625,9 +1691,9 @@ Are you sure you want to quit qBittorrent? Состояние соединения - + Downloads - Закачки + Закачки @@ -1722,7 +1788,7 @@ Are you sure you want to quit qBittorrent? Transfers - Передачи + Передачи @@ -2888,6 +2954,24 @@ Changelog: Обновить плагин поиска + + seeding + + + Search + Поиск + + + + The following torrents are finished and shared: + + + + + <u>Note:</u> It is important that you keep sharing your torrents after they are finished for the well being of the network. + + + torrentAdditionDialog diff --git a/src/lang/qbittorrent_sk.qm b/src/lang/qbittorrent_sk.qm index 4ae36bfb5394c384829c334e3db24702ae8e902f..b07724c9285894a4f6acbf15bcb9fbb0a063a844 100644 GIT binary patch delta 3675 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 T`7A?pVJA)ff14#P2~hnLv(OYf delta 3101 zcmajhdsr0Z9tZI6&hE_4%+BtrfOkL?lbZ+`pm;?>5e-E_6caT-K@^OuV7e5P7x0oO zUeY?4M>&d`tar-GQ8Kki<9Myi6g{G5nGerNO*~&>|8Jj%{k-$;%=`Y{-|w9nz9|<@ zmkFz#bwwY#MA_nt0bK@!Vq`?lSIxK;>YX@UDy?Wz#OO>>%AJVgzDB_yGEDm*7bCw4Z0nx@&T)&J7kTfi*$7h zo#Ii$;Il@+*8W3b*q1)+xF^i`ZV%95 zfiS;_HSF-2kW(K;zZY^%tg#b>{J$J7^{xOyIzsH|p)}bAc{C`itHr zG*SOUMkl&U-xRilUe`A*`5ovQtpC-$4=px0Z*{Y=@s%MY>=VgS z_4rcsuC50>#)v@`EwoHb31H?t&WovM_tR!E^#%KTdW*Rt_d?HD@uQ_1=y8Y5;zzdD zj$XdvW=k?n7dQJdb-gO-HrgO=_GiDRD()<020TZJ)%s=hZL#LWzvyo9KxYQ#`G@#T zfD7=7B3_Es(_pD{TS%eR~j-PgVssmC$9ruf@EuJ43@&{Spu&lDaxO< z@;V|VgtL}jzezJ{xl->yDOHI9d{imVzyN%PNckR2rOys&p~MM&ev}r78*5 z+;_ZGe952MrKLr`0Dd0QwnH~)oV5MkMOrECe|nlW*reKr+$4RcOLbq&q5GwuiWphn zCh1NfPw@A4m|_(Av*!Mv7(2#A0sT4~yWU~x`Xw7Z3n$V)jRUHu0|9-Ep+82`WyXme z3h5c+j8Kjf*uj`pdX%Ocvs?QEw>h*uHI{w59(XmtS1%dY z>iM7vvKTAZ+^36-p9$skknxKmt}y7i@uDaDgAM&f_Ir{Egm}v% zdS}oVa=4AZ4~UV+*jLixHf;k3$T-c=- zFlZI!go6&s3qx|~WBHvNcVO@txwzsHFl3Ni;k=1{Ay>GS0Ye4(aLqG1Qa<`(Bb_H7 zZ_m4KXtjLu=R)59!@iR1Mhpdpx0BDEVhxACCqJ$&php#{lqn5^V)eK~6BMsJ)-dd* z;$1ce7*VS9Yqrp9%4=KWfbikU;NU&bgq$NZIrAIbhTfrMCJMEl_Tb%Ak9d zM}|v4vK zZ`cm7QLZKrcBaqN*)3gwH~iX+)~VTE79je9y5M08Fiuj7TR70T5$dv;!|7plh0hV% ztZwPP5*XiCt@=EaUQzc9Wy)hzhoS1hyha{psfP}JOg~Z^S4IL8MD>B~avd9QoA7A~ zJ!jJIJ_bx|Z&C_U=s{EW?!0hfW1F$A4yT(E^7!nJU2mG*jw_A5V_G!05QvL0*}OSH z+!j;Gzp&!saoH}Q3PO!KIz2j1+Y`R?_k z@ebE$BdiSM%`;l~gonViURuQXB$}y>jOIAgezR#4CNXu1eH~8KX8iPs$E&nCPW|a0 z+T6JuaC)}3pqoFf(Mn1<(Tq@S>AYfKW}vq8B?FkbPFp*yEAZABZGDGox>4Jh=0k65 zTmASbPIA$<9}J``v|YK}BT1*V>Y?|k?GNqbcRPXP*R*f%a@QtjY8RiixZeW|?&XaZ6en~ma8YBw8CawRE0nY+hx56v=}J*P6&vj&=buRKMI9G)}}c=Z@C zTQiUEb)2S~V_F!{?49PRd$=%LYLq!K^c;{{Wlm1xiD|pc$*n7!)5DzdX(%l*r}ky) z=Ug?6Xe{mt)w%s|ph%*Fg~2k9rw%MuHKx!&edSB0jScO2$8bI+R_nwo)mzUC|L zi|How)ed~u%zI!7v^@nf-n9gKwebGWjJL#{bOSQ~Ybl7}dwG72rK~=SKDBJhF#vD( zvuw(p17vNo?1*}e{$klzRsv+_SnRtJX_Mu^nnOTNyyfecFMwQFp7iH}a=k3iFI=Nz zEiZytn%t#UtJgBxV70Dj1oCv&PFgl!DtUXYf2A<*xz*Qg3Xng<8aSF0<d(Zu?yNFoqdNnPFLRBy3l^s zT4pHk>f&bq!FiQx-{9WVuDmwjh5gsSaK)e>6*t-*J}6waUkT4M#8@yMSx7+!GLek} z8T?56Q)07bW@OJw$;vkJsP!TpcLx6c^zxbM&h|GV`>OT>6Fi-nOSCKB9p1$rHapzK a-fht=UHOg0D_XlpmfMP5?MH0R>i+>SR9$QU diff --git a/src/lang/qbittorrent_sk.ts b/src/lang/qbittorrent_sk.ts index 876b3316e..158ff6564 100644 --- a/src/lang/qbittorrent_sk.ts +++ b/src/lang/qbittorrent_sk.ts @@ -597,10 +597,71 @@ Copyright © 2006 by Christophe Dumez<br> + + FinishedTorrents + + + Finished + Skončené + + + + Name + i.e: file name + + + + + Size + i.e: file size + + + + + Progress + i.e: % downloaded + Priebeh + + + + DL Speed + i.e: Download speed + + + + + UP Speed + i.e: Upload speed + + + + + Seeds/Leechs + i.e: full/partial sources + Seederi/Leecheri + + + + Status + Status + + + + ETA + i.e: Estimated Time of Arrival / Time left + + + + + Finished + i.e: Torrent has finished downloading + Skončené + + GUI - + Open Torrent Files Otvoriť torrent súbory @@ -610,7 +671,7 @@ Copyright © 2006 by Christophe Dumez<br> Nezne - + This file is either corrupted or this isn't a torrent. Tento súbor je buď poškodený alebo to nie je torrent. @@ -620,17 +681,17 @@ Copyright © 2006 by Christophe Dumez<br> Určite chcete zmazať všetky súbory v zozname sťahovaných? - + &Yes &Áno - + &No &Nie - + Are you sure you want to delete the selected item(s) in download list? Určite chcete zmazať vybrané položky v zozname sťahovaných? @@ -645,9 +706,9 @@ Copyright © 2006 by Christophe Dumez<br> spusten - + Finished - hotovo + hotovo @@ -655,12 +716,12 @@ Copyright © 2006 by Christophe Dumez<br> kontroluje sa... - + Connecting... pripája sa... - + Downloading... sťahuje sa... @@ -700,7 +761,7 @@ Copyright © 2006 by Christophe Dumez<br> Nebolo možné vytvoriť adresár: - + Torrent Files Torrent súbory @@ -750,12 +811,12 @@ Copyright © 2006 by Christophe Dumez<br> qBittorrent - + qBittorrent qBittorrent - + Are you sure? -- qBittorrent Ste si istý? -- qBittorrent @@ -785,7 +846,7 @@ Copyright © 2006 by Christophe Dumez<br> skončilo sťahovanie. - + Couldn't listen on any of the given ports. Nepodarilo sa počúvať na žiadnom zo zadaných portov. @@ -974,7 +1035,7 @@ Záznam zmien: rýchlosť nahrávania - + Status Status @@ -1005,22 +1066,22 @@ Záznam zmien: Bez pohybu - + Paused Pozastavený Transfers - Prenosy + Prenosy - + Preview process already running Proces náhľadu už beží - + There is already another preview process running. Please close the other one first. Iný proces náhľadu už beží. @@ -1055,12 +1116,12 @@ Najskôr ho prosím zatvorte. Ste si istý, že chcete zatvoriť qBittorrent? - + Are you sure you want to delete the selected item(s) in download list and in hard drive? Ste si istý, že chcete zmazať vybrané položky v zozname sťahovaných a na pevnom disku? - + Download finished Sťahovanie dokončené @@ -1081,64 +1142,64 @@ Najskôr ho prosím zatvorte. V/V Chyba - + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - + Connection status: Stav spojenia: - + Offline Offline - + No peers found... Neboli nájdení rovesníci... - + Name i.e: file name Názov - + Size i.e: file size Veľkosť - + Progress i.e: % downloaded Priebeh - + DL Speed i.e: Download speed Rýchlosť sťahovania - + UP Speed i.e: Upload speed Rýchlosť nahrávania - + Seeds/Leechs i.e: full/partial sources Seederi/Leecheri - + ETA i.e: Estimated Time of Arrival / Time left Odhadované @@ -1156,19 +1217,19 @@ Najskôr ho prosím zatvorte. Leecheri - + qBittorrent %1 started. e.g: qBittorrent v0.x started. qBittorrent %1 spustený. - + DL speed: %1 KiB/s e.g: Download speed: 10 KiB/s Rýchlosť sťahovania: %1 KiB/s - + UP speed: %1 KiB/s e.g: Upload speed: 10 KiB/s Rýchlosť nahrávania: %1 KiB/s @@ -1177,57 +1238,57 @@ Najskôr ho prosím zatvorte. Finished i.e: Torrent has finished downloading - Skončené + Skončené - + Checking... i.e: Checking already downloaded parts... kontroluje sa... - + Stalled i.e: State of a torrent whose download speed is 0kb/s Bez pohybu - + Are you sure you want to quit? Ste si istý, že chcete skončiť? - + '%1' was removed. 'xxx.avi' was removed. '%1' bol odstránený. - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. '%1' bol pridaný do zoznamu na sťahovanie. - + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) '%1' bol obnovený. (rýchle obnovenie) - + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. '%1' sa už nachádza v zozname sťahovaných. - + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' Nebol omožné dekodovať torrent súbor: '%1' - + None i.e: No error message Žiadna @@ -1239,47 +1300,47 @@ Najskôr ho prosím zatvorte. Počúvam na porte: %1 - + All downloads were paused. Všetky sťahovania pozastavené. - + '%1' paused. xxx.avi paused. '%1' pozastavené. - + Connecting... i.e: Connecting to the tracker... pripája sa... - + All downloads were resumed. Všetky sťahovania obnovené. - + '%1' resumed. e.g: xxx.avi resumed. '%1' obnovené. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 je stiahnutý. - + I/O Error i.e: Input/Output Error V/V Chyba - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused Vyskytla sa chyba pri pokuse o čítanie alebo zapisovanie do %1. Disk je pravdepodobne plný, sťahovanie bolo pozastavené @@ -1291,23 +1352,23 @@ Najskôr ho prosím zatvorte. Vyskytla sa chyba (plný disk?), '%1' pozastavené. - + Connection Status: Stav spojenia: - + Online Online - + Firewalled? i.e: Behind a firewall/router? Za firewallom? - + No incoming connections... Žiadne prichádzajúce spojenia... @@ -1333,79 +1394,84 @@ Najskôr ho prosím zatvorte. Výsledky - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... Sťahuje sa '%1', čakajte prosím... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Vyskytla sa chyba (plný disk?), '%1' pozastavené. - + Search Vyhľadávanie - + RSS - + UPnP: no WAN service detected... - + UPnP: WAN service detected! - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 - + DHT support [ON], port: %1 - + DHT support [OFF] - + UPnP support [ON], port: %1 - + UPnP support [OFF] - + PeX support [ON] - + PeX support [OFF] - + The download list is not empty. Are you sure you want to quit qBittorrent? + + + Downloads + + MainWindow @@ -1545,9 +1611,9 @@ Are you sure you want to quit qBittorrent? Stav spojenia - + Downloads - Sťahovania + Sťahovania @@ -1637,7 +1703,7 @@ Are you sure you want to quit qBittorrent? Transfers - Prenosy + Prenosy @@ -2861,6 +2927,24 @@ Záznam zmien: Aktualizovať vyhľadávací zásuvný modul + + seeding + + + Search + Vyhľadávanie + + + + The following torrents are finished and shared: + + + + + <u>Note:</u> It is important that you keep sharing your torrents after they are finished for the well being of the network. + + + torrentAdditionDialog diff --git a/src/lang/qbittorrent_sv.qm b/src/lang/qbittorrent_sv.qm index b48e61b158ba9997b61c7ce557252f37294e1d40..7642eb1a9c7a8de6a18acfb5fcd9d76b394752d7 100644 GIT binary patch delta 3562 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 diff --git a/src/lang/qbittorrent_sv.ts b/src/lang/qbittorrent_sv.ts index f51c3d3fe..2563fc181 100644 --- a/src/lang/qbittorrent_sv.ts +++ b/src/lang/qbittorrent_sv.ts @@ -548,55 +548,116 @@ Copyright © 2006 by Christophe Dumez<br> + + FinishedTorrents + + + Finished + Färdig + + + + Name + i.e: file name + Namn + + + + Size + i.e: file size + Storlek + + + + Progress + i.e: % downloaded + Förlopp + + + + DL Speed + i.e: Download speed + Hämtningshastighet + + + + UP Speed + i.e: Upload speed + Sändningshastighet + + + + Seeds/Leechs + i.e: full/partial sources + Dist/Repr + + + + Status + Status + + + + ETA + i.e: Estimated Time of Arrival / Time left + Färdig om + + + + Finished + i.e: Torrent has finished downloading + Färdig + + GUI - + Open Torrent Files Öppna Torrent-filer - + This file is either corrupted or this isn't a torrent. Denna fil är antingen skadad eller så är den inte en torrent-fil. - + &Yes &Ja - + &No &Nej - + Are you sure you want to delete the selected item(s) in download list? Är du säker på att du vill ta bort de markerade post(erna) i hämtningslistan? - + Connecting... Ansluter... - + Downloading... Hämtar... - + Torrent Files Torrent-filer - + Are you sure? -- qBittorrent Är du säker? -- qBittorrent - + Couldn't listen on any of the given ports. Kunde inte lyssna på någon av de angivna portarna. @@ -666,7 +727,7 @@ Changelog: Resultat - + Status Status @@ -676,17 +737,17 @@ Changelog: Sökmotor - + Paused Pausad - + Preview process already running Förhandsvisningsprocess kör redan - + There is already another preview process running. Please close the other one first. Det finns redan en annan förhandsvisningsprocess. @@ -695,7 +756,7 @@ Stäng den först. Transfers - Överföringar + Överföringar @@ -703,12 +764,12 @@ Stäng den först. Är du säker på att du vill avsluta qBittorrent? - + Are you sure you want to delete the selected item(s) in download list and in hard drive? Är du säker på att du vill ta bort de markerade objekten i hämtningslistan och på hårddisken? - + Download finished Hämtningen är färdig @@ -718,64 +779,64 @@ Stäng den först. Sökmotor - + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - + Connection status: Anslutningsstatus: - + Offline Frånkopplad - + No peers found... Inga parter hittades... - + Name i.e: file name Namn - + Size i.e: file size Storlek - + Progress i.e: % downloaded Förlopp - + DL Speed i.e: Download speed Hämtningshastighet - + UP Speed i.e: Upload speed Sändningshastighet - + Seeds/Leechs i.e: full/partial sources Dist/Repr - + ETA i.e: Estimated Time of Arrival / Time left Färdig om @@ -793,24 +854,24 @@ Stäng den först. Reciprokörer - + qBittorrent %1 started. e.g: qBittorrent v0.x started. qBittorrent %1 startad. - + qBittorrent qBittorrent - + DL speed: %1 KiB/s e.g: Download speed: 10 KiB/s Hämtning: %1 KiB/s - + UP speed: %1 KiB/s e.g: Upload speed: 10 KiB/s Sändning: %1 KiB/s @@ -819,57 +880,57 @@ Stäng den först. Finished i.e: Torrent has finished downloading - Färdig + Färdig - + Checking... i.e: Checking already downloaded parts... Kontrollerar... - + Stalled i.e: State of a torrent whose download speed is 0kb/s Avstannad - + Are you sure you want to quit? Är du säker på att du vill avsluta? - + '%1' was removed. 'xxx.avi' was removed. \"%1\" togs bort. - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. \"%1\" lades till i hämtningslistan. - + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) \"%1\" återupptogs. (snabbt läge) - + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. \"%1\" finns redan i hämtningslistan. - + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' Kunde inte avkoda torrent-fil: \"%1\" - + None i.e: No error message Ingen @@ -881,47 +942,47 @@ Stäng den först. Lyssnar på port: %1 - + All downloads were paused. Alla hämtningar har pausats. - + '%1' paused. xxx.avi paused. \"%1\" pausad. - + Connecting... i.e: Connecting to the tracker... Ansluter... - + All downloads were resumed. Alla hämtningar har återupptagits. - + '%1' resumed. e.g: xxx.avi resumed. \"%1\" återupptogs. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 har hämtats färdigt. - + I/O Error i.e: Input/Output Error In/Ut-fel - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused Ett fel inträffade vid försök att läsa eller skriva %1. Disken är antagligen full, hämtningen har pausats @@ -933,23 +994,23 @@ Stäng den först. Ett fel inträffade (full disk?), \"%1\" pausad. - + Connection Status: Anslutningsstatus: - + Online Ansluten - + Firewalled? i.e: Behind a firewall/router? Brandvägg? - + No incoming connections... Inga inkommande anslutningar... @@ -975,79 +1036,89 @@ Stäng den först. Resultat - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... Hämtar \"%1\", vänta... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Ett fel inträffade (full disk?), \"%1\" pausad. - + Search Sök - + RSS - + UPnP: no WAN service detected... - + UPnP: WAN service detected! - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 - + DHT support [ON], port: %1 - + DHT support [OFF] - + UPnP support [ON], port: %1 - + UPnP support [OFF] - + PeX support [ON] - + PeX support [OFF] - + The download list is not empty. Are you sure you want to quit qBittorrent? + + + Downloads + + + + + Finished + Färdig + MainWindow @@ -1209,7 +1280,7 @@ Are you sure you want to quit qBittorrent? Transfers - Överföringar + Överföringar @@ -1236,6 +1307,11 @@ Are you sure you want to quit qBittorrent? Report a bug Rapportera ett fel + + + Downloads + + PropListDelegate @@ -2116,6 +2192,24 @@ Changelog: Uppdatera sökinstick + + seeding + + + Search + Sök + + + + The following torrents are finished and shared: + + + + + <u>Note:</u> It is important that you keep sharing your torrents after they are finished for the well being of the network. + + + torrentAdditionDialog diff --git a/src/lang/qbittorrent_tr.qm b/src/lang/qbittorrent_tr.qm index d4a5ac176e0969351307ae518bc062a397b08793..4f115ef1bc3530034d3036c966423d4aa10b0b76 100644 GIT binary patch delta 3700 zcmaLZd0dl68VB$v$D6!w-Zu%CH$uDtk)t38DvF3AT0{j=Ks1^tU`!B#C?27LRVrH7 zC|IlAmAXn5X(gi8+bZ^>t<F8A9ocC?l0wS_o$!!>pL@fXXcrCX5PF< znkDC3Bm)`o0s4tq6ttc5KVF#K$KDp6Nyrt^|>THehRJ;b&%|b zrKsN}`B!rIikN}Bh-Ci6gtx&IVust{5@O;8!jDA1ZC9=&8#DVDk=&1%Z48_sS|aKY zy++LL8AJ?2%%^oQSac@wd#X_1M1F@60P~pqF7zQ%c#&UI5KJKdZU{tCL?Hvu5h*<= z_M1wmr%@%3;T{`}EZvw8p($1*Wq=^#-3h8HkY1~o$nS9xlEB9&?dmslKRE&M6Lmn zhRe}#iKKC760DSV^ht$}+jR?(`n}8{a$6z|`s5xwBOP|ekI0>orkXwA3h9hXHSmNq zrwA!_e=fB)#1nb+lIHU`3m$RO0%#+T<HI+?q>4kpUNEX!b#ERBtY zpUcu89)K@pS;G)$=NOs!3#AQ(_hoMtA}3v3WXlV);8PqHhU& zLw3X52`-g2Mz4g`vc{E9;Z51k-u;NW4Ul_OVoSSCk%vb&!zJ$%w?S)vTT2_jNc}(qzkKo5lU1vnvN6MTJ z>HwRWD@ihc=RC4l=_SMa;=>VTtHLMN9)y(eEckd;n7B zGgOfpgOvJM6*CTF;XZq9icD?-k#DtPfgAz&-cl6wz}EV8P%KtpLccc^i`gIGQpJ+- zSb^U@Me&sYqW-RmRYiY;F^cU6ZbGAC$HR;8BgMWKr{Q;s!%a9V{<9SIN3-Es#jPR) z=KoxAKN!Cc2oSYpE2SaG{ebPtj>+*v0a|6(`^aU$G-dC?N$|dMQ1x`8Ko{jCw?de! zoDqou0{19$S094Um3hwgpkUDj%CfI2P_I+2`C<-ysI*TxOBAe8+MgxBQOXT6yl+Al zDYvbEg!>;-qx?i_M?+J)q1}~7i?G7bXywJ;cpx-Kc`p?cg?_^N>2Z2PTUq~R3(>%# z?1(;QqOg8!j19ksrLkijYvH@?hKH~TwaX#wthqu(a?eHxl>5l&^hdr!;9dbImK%1;L!V=w#R*pMqPt+oNq}6fSd*iTTl42YRY#EQQQ_)+RZxnQe_x| zSML~uYED}hxUSv!G*zCDhG?u#wXmrTCaH?sFwWR@s#2SNI0_e3TRqnjjpJ2SMA!5R{iu%JyAk9Pal@ROkTF<7~IKoi;VCQ z@9BwtWu3^KZM{#79Xa zzjE7pe3Z=MH@c``1;68N3~b`7FCoyRaQ@Rq2VBmd*yauo^Jk{u)tvN%|8iO;QSu`G za%L_3n!kNI3byerZJ2Lzn2mq+C?5r*;KhuDcZ43b4fyH_75abN8!i_;DvZz~pp>UV z%)}<5DN}^l#945^Fe(89O$`?&PR0&S%@N%$%((R!^_xPrdkDUsTm_Q}HiRR><=cI z79{M>#~GP6N2rc^1m71=m%Rh4gw~)&qUrtA zO6Cym|MYaV@+4L=eU;iX1&3(*K6URjZ29ySb)U7Th-So!mZ=B5aSZkE)rq~16X_M| z32g{S@2gI$!OHZ<)ftiJh-P+B8?x}+tgdQAPS*t6UchEe zm`@wgoTHjap16*gv7)mz$tS%~->ylugu?GNi(>KjoYh%V){qM;G@Gq*_=RS3zVrTP z$7y!PyDZOwf()O5}EV0!DBFwdAoM>-WBk^_RaNv8X`-W zcIOGK#PWA-%?0d4PLcLnRSR@zuN}hH<-E!wnm^XDng2{;-x|Srk%I6s9h(%bgf649 z%vpJvMnjS%H`i#k<~fqpwK1X(*WzNk?&#U@DXZvuJ7`EICm( zDaU9uyml~0C$CtoT{^&4&Zcpp$l8c7x^ATybuo(xb=xxXjs-`(tg>EmV3 Ym>(FXL6>o_%jw8*|1YPj=7+NX0&)Kid;kCd delta 3084 zcma*piC0zC9tZH>J@=mZ+Hc5tgmx)vzM6pBm5iNua5hYeYN1~*m{!C&{o`q>4XK4O#76qUQnQW3zTS!cSH$jT;ZrjF(a<;y4`^l+`$;;HrhwSv zN8w-1UL^U`Mk1CY*LEz(E+yBClVAT+mzI}n@EyqRT1td1<<PjB5kH>uFFm$-CL^N zH*Ubos&^gjiS%Pt4R062Sk*Co4E#dXU1~*SFF_SBb}2l@ULM< zxHGQ5y+Jghi19jnAD(1_&$&VqlYY5{$g+%iqZ~D~Y-0+0qv0Kn zsI65wv$=6QJjZNX*asgldwxX;tSy-?>r=3d`8Ld#3}pQ+b0;H_$i|krub%}Im?x&^ zuz`8e-3|NHR#xMQM(Whl)|9~@b+QlvtJF(>JO+=evx5=fD3v zNTuyajbG?97@&#m!H#YBY8E*d;Vn&RD*_ukM^kfXIjqpU7lkKj>|wLFhPAUW8*aAL z>>*8kqoJC}?iLzNM6a-##?Su-JvGhlL$1B_hb+cg&p@4^Ai^-Ao}-bwS5 zrvwvNn+Ti{`;F}6NR((?HtW*d3r(zVor!4t1UAzP85_Td%{qSs7P46{hsK-OA_I#< zF#a0*!It-k90JW|n5|*==`t|h$?kJQ${ZQ^G4x{hd0^ZznQhv37S^-P>aDPcZ9VmO zq6rFnbTk5+kj8%FWkWP^0edxG4cBnCF*v*vj|@9W<_vxhKO~y8oSW&N2S4J%Pv3-h zhIO*x!h4Z=r${c^10{0W%O!=QhEA8b^mgoYvX09VV~LzaZmk9ZI0tgY4#=c)K3B?N zLFXo}RJaFkavSC&aF-EW#Z?cO$89P9H~h%JeSEABjWgWAA1@KPa@>&@UC^Iv9~cEs zaou0!5V?)vekey^ZjsyrZ(MgPGkbz(d{A?@|L`LdqKVwoc-sdko%^T!#FB+Xuln-- z&1o>5UuanZ&+zF1nE&caK7ZQ@A`e3(UodpRW24z~e9eVDM4l|a{i~JGpRZkf9;WiO z&tqU6zgvwLi}!hc|E@>S#2;pAiKYbdUzB5KQ_}fM6EQyJZT@}|7MOBDa9xH&>SHIk zKU)Kr3SpD-h^EdK!VS1?m|7ydX54{+mSKJ4gqYUnMAHNzPCp-d3rqG`!CbTT!iu3l zru7LWVFI+3s+1J41!so4nL;)({ z#LM^b{0BG-Cr98h49FBt-zg!QQ6Y4P1;K8i=PYVB<5%HH`+A~4Pm$Y(R0bA_dWQ$_ zyy(0ZrJETcy42*rUqsL6I-;NeacX@6JRk;6Yat4@6GKu{V1yWEn+?~9DaFz7pqRS# z3KkB2G}Isp86y_;<1qend`~X?UfkKepC~j_Y`N0|kBIHfXW=j6?Kycw zVNT*>%~kjh@oB~+qHw+VzxwI0MKoP0gC;AZ0V^awlOxgWFlq5E1B=Gb zQgYu>qB${AMxZr3CapA$f%k@uY>^6_bwp7G(z*c?Y>+BUxKY$SY3s5OqUZ_IU+i|k zRH?Be01ikkK}hjy4rXJewzc=s-zptz`w(_W_jg1R&2^G~GJMyKMzu@_Dq*{<{HXQFaqERiM+K)pPcUC^P7_Z>C7xLFBS@;;) zC|}8Hh2P7!yMl<~IeE~8h2n$c-yaphT*aQ91^X3;)?T87K*jCQL|ARMTM5%6kc2@c zJZ^w!QMwYbU?CEU)-DleC#6F>F&U{&WweuaoQ3nu?$-KG=|um5cEN;`L}@y0tO)_7 zd25qfurWj0m)g{T9-{PDv>Dm>!)1=zjG>(^dq%5l1e=&7(!_gPIP{8eZCB$X&@sqW~m zW3Wf}_3tl!s{KvB-q>J~r>T8tV{dGYF$4%24r+BJW#vHHt zf<`?jAK=|SCE5_$9%PV+2GrxdGZ)mCt rhl2j>q}nGNtc~%rd_-f{ytS6bs`Q&9jQ`C~Q`H_R^fcNRc?$mr&z?;_ diff --git a/src/lang/qbittorrent_tr.ts b/src/lang/qbittorrent_tr.ts index 1e1b5aab9..ec83caa3d 100644 --- a/src/lang/qbittorrent_tr.ts +++ b/src/lang/qbittorrent_tr.ts @@ -713,10 +713,71 @@ Telif Hakkı © 2006 Christophe Dumez<br> + + FinishedTorrents + + + Finished + Tamamlandı + + + + Name + i.e: file name + İsim + + + + Size + i.e: file size + Boyut + + + + Progress + i.e: % downloaded + İlerleme + + + + DL Speed + i.e: Download speed + DL Hızı + + + + UP Speed + i.e: Upload speed + UP Hızı + + + + Seeds/Leechs + i.e: full/partial sources + + + + + Status + Durum + + + + ETA + i.e: Estimated Time of Arrival / Time left + ETA + + + + Finished + i.e: Torrent has finished downloading + Tamamlandı + + GUI - + Open Torrent Files Torrent Dosyasını Aç @@ -731,7 +792,7 @@ Telif Hakkı © 2006 Christophe Dumez<br> Bilinmeyen - + This file is either corrupted or this isn't a torrent. Bu dosya bozuk ya da torrent dosyası değil. @@ -741,17 +802,17 @@ Telif Hakkı © 2006 Christophe Dumez<br> Download listesindeki bütün dosyaları silmek istediğinizden emin misiniz? - + &Yes &Evet - + &No &Hayır - + Are you sure you want to delete the selected item(s) in download list? Download listesindeki seçili öğeleri silmek istediğinize emin misiniz? @@ -771,9 +832,9 @@ Telif Hakkı © 2006 Christophe Dumez<br> kb/s - + Finished - Tamamlandı + Tamamlandı @@ -781,12 +842,12 @@ Telif Hakkı © 2006 Christophe Dumez<br> Kontrol ediliyor... - + Connecting... Bağlanılıyor... - + Downloading... Download ediliyor... @@ -826,7 +887,7 @@ Telif Hakkı © 2006 Christophe Dumez<br> Klasör yaratılamıyor: - + Torrent Files Torrent Dosyaları @@ -898,12 +959,12 @@ Telif Hakkı © 2006 Christophe Dumez<br> qBittorrent - + qBittorrent qBittorrent - + Are you sure? -- qBittorrent Emin misiniz? -- qBittorrent @@ -944,7 +1005,7 @@ Telif Hakkı © 2006 Christophe Dumez<br> download tamamlandı. - + Couldn't listen on any of the given ports. Verilen portların hiçbiri dinlenemedi. @@ -1150,7 +1211,7 @@ Changelog: UP Hızı - + Status Durum @@ -1181,17 +1242,17 @@ Changelog: Hız kaybetti - + Paused Duraklatıldı - + Preview process already running Önizleme işlemi zaten çalışıyor - + There is already another preview process running. Please close the other one first. Zaten başka bir önizleme işlemi çalışıyor. @@ -1223,7 +1284,7 @@ Lütfen önce diğerini kapatın. Transfers - Aktarımlar + Aktarımlar @@ -1231,12 +1292,12 @@ Lütfen önce diğerini kapatın. qBittorrent ten çıkmak istediğinize emin misiniz? - + Are you sure you want to delete the selected item(s) in download list and in hard drive? Seçilenleri download listesinden ve sabit diskinizden silmek istediğinize emin misiniz? - + Download finished @@ -1252,64 +1313,64 @@ Lütfen önce diğerini kapatın. Arama Motoru - + qBittorrent %1 e.g: qBittorrent v0.x - + Connection status: - + Offline - + No peers found... - + Name i.e: file name İsim - + Size i.e: file size Boyut - + Progress i.e: % downloaded İlerleme - + DL Speed i.e: Download speed DL Hızı - + UP Speed i.e: Upload speed UP Hızı - + Seeds/Leechs i.e: full/partial sources - + ETA i.e: Estimated Time of Arrival / Time left ETA @@ -1327,19 +1388,19 @@ Lütfen önce diğerini kapatın. Leechers - + qBittorrent %1 started. e.g: qBittorrent v0.x started. - + DL speed: %1 KiB/s e.g: Download speed: 10 KiB/s - + UP speed: %1 KiB/s e.g: Upload speed: 10 KiB/s @@ -1348,125 +1409,125 @@ Lütfen önce diğerini kapatın. Finished i.e: Torrent has finished downloading - Tamamlandı + Tamamlandı - + Checking... i.e: Checking already downloaded parts... Kontrol ediliyor... - + Stalled i.e: State of a torrent whose download speed is 0kb/s Hız kaybetti - + Are you sure you want to quit? - + '%1' was removed. 'xxx.avi' was removed. - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. - + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) - + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. - + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' - + None i.e: No error message Yok - + All downloads were paused. - + '%1' paused. xxx.avi paused. - + Connecting... i.e: Connecting to the tracker... Bağlanılıyor... - + All downloads were resumed. - + '%1' resumed. e.g: xxx.avi resumed. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. - + I/O Error i.e: Input/Output Error I/O Hatası - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused - + Connection Status: - + Online - + Firewalled? i.e: Behind a firewall/router? - + No incoming connections... @@ -1477,79 +1538,84 @@ Lütfen önce diğerini kapatın. Sonuçlar - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. - + Search Arama - + RSS - + UPnP: no WAN service detected... - + UPnP: WAN service detected! - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 - + DHT support [ON], port: %1 - + DHT support [OFF] - + UPnP support [ON], port: %1 - + UPnP support [OFF] - + PeX support [ON] - + PeX support [OFF] - + The download list is not empty. Are you sure you want to quit qBittorrent? + + + Downloads + + MainWindow @@ -1704,9 +1770,9 @@ Are you sure you want to quit qBittorrent? Bağlantı Durumu - + Downloads - Downloadlar + Downloadlar @@ -1801,7 +1867,7 @@ Are you sure you want to quit qBittorrent? Transfers - Aktarımlar + Aktarımlar @@ -2987,6 +3053,24 @@ Changelog: Arama pluginini güncelle + + seeding + + + Search + Arama + + + + The following torrents are finished and shared: + + + + + <u>Note:</u> It is important that you keep sharing your torrents after they are finished for the well being of the network. + + + torrentAdditionDialog diff --git a/src/lang/qbittorrent_uk.qm b/src/lang/qbittorrent_uk.qm index 9160fc288a12322a2dcc00daf22381835f2f4092..dac867c742d17cb0cbdf66bf86fd19bc46b7b0ae 100644 GIT binary patch delta 3628 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 delta 3079 zcma*pjb9Yi8VB%aXJ=+-c4l``z!y+J#CVMt5m6&~6I4>qIXeE59NIm4OroaZ?+!;KwG z$5y7yLQ(jhWt?H|4@8OvqKHAy5k(IAm?)-*h_N7wL!a>==HzJ@VNy@ZTN}`?CiZ(4 zo+Zxb0Q{Xe-vJ`!IN}1zVK{NKd|-~r{lqOhf&LldsyNtBh8GRib!dQHK-?!uMC@C{ zecl9{P2M5t(>fx~id=Hw@(K=K_Nd?6R9K$Eq(}B z(9DW9SZVSC&B~cdB1jhEt;)fm?lDFQFL6KSm#bDYbFbasjz zmoLK%#ZG%0*sQ31HwQjYH0#2N%;FX8>&#)7qVqx^(Xi2qp4uoP!?1W}gi{;_YEAyh zxcs$-X!u;l^RsUF0ptIb3;c~q`k{fyd_A+K5H&PE%w%GsctL$nkk9A3j3H{f1m`G_Dq|_DOk$<8013+vizO7krG2RB7o`E&46c_M+1FC zBVS>jwztDa@r?@JSH6{xQjAVi zZp=@EmC8~E_Z{7?G!D}fS;Z;OI~T)J_yne~5gpj^m@nCda*~pUF&< z2TlHmt*$e?Lu5M=jRP>5tvmV=Jjm9&4f=pRq1F=F*|Tja*Wpa|T-Hrkz+NiG4($%J z_dV3`HfI@vGcwMcbDV_|*^8WWeJ3pAd@2TD7q`?C85^(WQqLZSlepAp7$2X?=?xqX z!T4R=zc;@R{~pr8!Q>onk2ZzKp@7@tij+CD!Ts=0ZjU?0CwOrON>0Npu3otX?&TU! zeGGr$nnoe8mpr)dJS~YF-MFqOC5+*%!f|*VYfL`l4Ze5w5;;ZjuTIH;H~HY!pNX7p zO(yWcok+d&Za&N%C360aj|)Z(T^#wO7VOj|olg}bh+LQR*(?HZ-OcBWLnhs1ejSem z-Gcaa!Y!D=ub+p&-KzMaE_c|^Z!Ua5^zs@5zrXn^8Z~^)-ShAv1m3)ekLO?IjnZ`9mVs~Qm<2H#Uz-A3s=e^oi;M-q80RZXdX z9hRvghv&n`s-$U{KhamUw&WNzY*b|qUYPjJklt3R((iW>c_*v3ezP1_sLB_eg~wIp zec|wbsvSzaSSI_cs5F^h%PjKsOJT2(i1&;TI-<6Oso5 z@pBRKM~{bhAQpU8Bdqhyf}z6tEL+$s6jeMVn!Z@5u-Fa16e?^=iTurlqmBJ=o^b40 zC7yr(Y~kcEJcj-)LhFruqJXnPd(d>EK%LNW8np||6dtwY!Gj`Sf>Z|fiMnyOiGt>e zPT443(0S3hG@U3oU-anH!VYm#bu`foAJK1e18fun5)8Jtn7HKv z77l3}Y`{mNz6Xy<=u2Ym+n5+yA{Opi1@DSw?NvlG4PwKM4%jKS)So7rWg%XlnE_{s z57{nwSA3i@foQge_;>YG_=`Ajp@1mNO|5;BOZ1vX?R3T+?o|5@*b~hORWG_?;Ly0J zj=$POG}lj^;%5P?)XN7(!;3?Pf341R(h|)xs&jh>;C*$`0B$tjS-oXR0NkhkV9Yjn zU0rv48b0Og)eX~;;s~S3+v+3P-9!s))y+rt!bR%tZL{Dh^?k!n?fB-qNVKmQ7D>ua zPrx=w%v(wnwOSf81{0$`GI@2#XtflVjdy!=fVA8UJB;2YZSX_sq902JXDqOAic~x` z2kNDNnO%iV(x$5IM2pTzJI&NYv5Zu6GZ@B7hR=J9Xw*rks&L3+f0e#kgjaB!rSxq= zD%>YsNNpsF7o_WL)8Ry^e*g=`ACsQn)59LwhMPgOI8q+h*a<(BT@O0I>q913%RxE> zk}zKmUeF7V$RYESi4p}lG#vLye9Is&ScudmULW#xGdbznL!#G1<#cmz*dni7i5n)x z$+_0L#D>A2eG2^-CozkZ%^e15e4% zJbQ?i`D;|%F_@)MwPGjBKGckf!P!~%t;Qi9sa`H?CTu$mV@y_Prc6A6{x!|~@h6E= zJv9*n2q-mA6W@T18PXgziPJiW(lRwEY52qR0!_-`&eET1mhPKIv?5lM`Z7|#;$zLq z3QSnZYKp}DFjiACR)j}2wMQ{;)kMvOo<3NnxoBGepKC4+$2TP-TYjV+UB%(}r?V-|Q*s3*t zl1P;0u5H@h4EJcieg2F{KUe$28ynE;wSS$v3@f$Id{7E~mrm!jg(%xir`y^M<8&kC zOrjiF_ab9Ci8@!CSo|xLvsdRe8w=%pr<-}`ZK7Oz-Q4Y3_@=J*6e7+G(KVdIPV*k< zF4grD<)`Z|9YbdF+tP^E*%%qws4(8r+)|YPq1#m6G|9qv#;l$#A29-#M!c&wp0NAV z%y`plq{8Uwy+JI$VksI=`~Pke4PZUlSJ^;z2J3_N6oK%=<5!GYyCfrX z+0wO{D)f{yqh~8{BIy5{QXZ(YFdm+LQZzP19yd2OEuUy + + FinishedTorrents + + + Finished + Закінчено + + + + 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 + Сідерів/Лічерів + + + + Status + Статус + + + + ETA + i.e: Estimated Time of Arrival / Time left + ETA + + + + Finished + i.e: Torrent has finished downloading + Закінчено + + GUI - + Open Torrent Files Відкрити Torrent-файли @@ -655,7 +716,7 @@ Copyright © 2006 by Christophe Dumez<br> Невідомо - + This file is either corrupted or this isn't a torrent. Цей файл пошкоджено, або він не є torrent-файлом. @@ -665,17 +726,17 @@ Copyright © 2006 by Christophe Dumez<br> Ви впевнені що хочете видалити всі файли зі списку завантажень? - + &Yes &Так - + &No &Ні - + Are you sure you want to delete the selected item(s) in download list? Ви впевнені що хочете видалити вибрані файли зі списку завантажень? @@ -690,9 +751,9 @@ Copyright © 2006 by Christophe Dumez<br> почато - + Finished - Закінчено + Закінчено @@ -700,12 +761,12 @@ Copyright © 2006 by Christophe Dumez<br> Перевіряю... - + Connecting... З'єднуюсь... - + Downloading... Завантажую... @@ -745,7 +806,7 @@ Copyright © 2006 by Christophe Dumez<br> Неможливо створити директорію: - + Torrent Files Torrent файли @@ -817,12 +878,12 @@ Copyright © 2006 by Christophe Dumez<br> qBittorrent - + qBittorrent qBittorrent - + Are you sure? -- qBittorrent Ви впевнені? -- qBittorrent @@ -858,7 +919,7 @@ Copyright © 2006 by Christophe Dumez<br> завантажено. - + Couldn't listen on any of the given ports. Не можу слухати по жодному з вказаних портів. @@ -1064,7 +1125,7 @@ Changelog: UP швидкість - + Status Статус @@ -1095,17 +1156,17 @@ Changelog: Заглохло - + Paused Призупинено - + Preview process already running Процес перегляду вже запущений - + There is already another preview process running. Please close the other one first. Вже запущений інший процес перегляду. @@ -1137,7 +1198,7 @@ Please close the other one first. Transfers - Трансфери + Трансфери @@ -1145,12 +1206,12 @@ Please close the other one first. Ви впевнені, що хочете вийти з qBittorrent? - + Are you sure you want to delete the selected item(s) in download list and in hard drive? Ви впевнені, що хочете видалити вибрані завантаження зі списку та з вінчестера? - + Download finished Завантаження завершено @@ -1166,64 +1227,64 @@ Please close the other one first. Пошуковик - + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - + Connection status: Статус з'єднання: - + Offline Офлайн - + No peers found... Не знайдено пірів... - + 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 Сідерів/Лічерів - + ETA i.e: Estimated Time of Arrival / Time left ETA @@ -1241,19 +1302,19 @@ Please close the other one first. Лічери - + qBittorrent %1 started. e.g: qBittorrent v0.x started. qBittorrent %1 запущено. - + DL speed: %1 KiB/s e.g: Download speed: 10 KiB/s Швидкість прийому: %1 КіБ/с - + UP speed: %1 KiB/s e.g: Upload speed: 10 KiB/s Швидкість віддачі: %1 КіБ/с @@ -1262,57 +1323,57 @@ Please close the other one first. Finished i.e: Torrent has finished downloading - Закінчено + Закінчено - + Checking... i.e: Checking already downloaded parts... Перевіряю... - + Stalled i.e: State of a torrent whose download speed is 0kb/s Заглохло - + Are you sure you want to quit? Ви впевнені, що хочете вийти? - + '%1' was removed. 'xxx.avi' was removed. '%1' було видалено. - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. '%1' додано до списку завантажень. - + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) '%1' відновлено. (швидке відновлення) - + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. '%1' вже є у списку завантажень. - + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' Неможливо декодувати торрент-файл: '%1' - + None i.e: No error message Немає @@ -1324,47 +1385,47 @@ Please close the other one first. Прослуховую порт: %1 - + All downloads were paused. Всі завантаження були призупинені. - + '%1' paused. xxx.avi paused. '%1' призупинено. - + Connecting... i.e: Connecting to the tracker... З'єднуюсь... - + All downloads were resumed. Всі завантаження було відновлено. - + '%1' resumed. e.g: xxx.avi resumed. '%1' відновлено. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. Завантаження '%1' закінчилось. - + I/O Error i.e: Input/Output Error Помилка вводу/виводу - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused Сталася помилка під час запису чи зчитування %1. Можливо диск заповнено, завантаження було призупинено @@ -1376,23 +1437,23 @@ Please close the other one first. Сталася помилка (заповнено диск?), '%1' призупинено. - + Connection Status: Статус з'єднання: - + Online Онлайн - + Firewalled? i.e: Behind a firewall/router? Захищено фаєрволом? - + No incoming connections... Немає вхідних з'єднань... @@ -1418,79 +1479,84 @@ Please close the other one first. Результати - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... Завантажую '%1', будь-ласка зачекайте... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Сталася помилка (заповнено диск?), '%1' призупинено. - + Search Пошук - + RSS - + UPnP: no WAN service detected... - + UPnP: WAN service detected! - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 - + DHT support [ON], port: %1 - + DHT support [OFF] - + UPnP support [ON], port: %1 - + UPnP support [OFF] - + PeX support [ON] - + PeX support [OFF] - + The download list is not empty. Are you sure you want to quit qBittorrent? + + + Downloads + + MainWindow @@ -1635,9 +1701,9 @@ Are you sure you want to quit qBittorrent? Статус з'єднання - + Downloads - Завантаження + Завантаження @@ -1732,7 +1798,7 @@ Are you sure you want to quit qBittorrent? Transfers - Трансфери + Трансфери @@ -2908,6 +2974,24 @@ Changelog: Оновити пошуковий плагін + + seeding + + + Search + Пошук + + + + The following torrents are finished and shared: + + + + + <u>Note:</u> It is important that you keep sharing your torrents after they are finished for the well being of the network. + + + torrentAdditionDialog diff --git a/src/lang/qbittorrent_zh.qm b/src/lang/qbittorrent_zh.qm index ef51d91b7705499ca0fc934e59bc29144347063f..4e6824929d124e8ea035ec7460266ceed5b74b1f 100644 GIT binary patch delta 3759 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 LlWN;B$0Ga%ev3i) diff --git a/src/lang/qbittorrent_zh.ts b/src/lang/qbittorrent_zh.ts index 01e0471ec..b20f44275 100644 --- a/src/lang/qbittorrent_zh.ts +++ b/src/lang/qbittorrent_zh.ts @@ -626,10 +626,71 @@ Copyright © 2006 by Christophe Dumez<br> + + FinishedTorrents + + + Finished + 完成 + + + + 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 + 完整种子/不完整种子 + + + + Status + 状态 + + + + ETA + i.e: Estimated Time of Arrival / Time left + 剩余时间 + + + + Finished + i.e: Torrent has finished downloading + 完成 + + GUI - + Open Torrent Files 打开Torrent文件 @@ -639,7 +700,7 @@ Copyright © 2006 by Christophe Dumez<br> 无效 - + This file is either corrupted or this isn't a torrent. 该文件不是torrent文件或已经损坏. @@ -649,17 +710,17 @@ Copyright © 2006 by Christophe Dumez<br> 确定删除下载列表中的所有文件? - + &Yes &是 - + &No &否 - + Are you sure you want to delete the selected item(s) in download list? 确定删除所选中的文件? @@ -674,9 +735,9 @@ Copyright © 2006 by Christophe Dumez<br> 开始 - + Finished - 完成 + 完成 @@ -684,12 +745,12 @@ Copyright © 2006 by Christophe Dumez<br> 检查中... - + Connecting... 连接中... - + Downloading... 下载中... @@ -729,7 +790,7 @@ Copyright © 2006 by Christophe Dumez<br> 无法创建文档: - + Torrent Files Torrent文件 @@ -778,7 +839,7 @@ Copyright © 2006 by Christophe Dumez<br> 使用端口: - + Are you sure? -- qBittorrent 确定? -- qBittorrent @@ -808,7 +869,7 @@ Copyright © 2006 by Christophe Dumez<br> 下载完毕. - + Couldn't listen on any of the given ports. 所给端口无响应. @@ -1003,7 +1064,7 @@ Changelog: 上传速度 - + Status 状态 @@ -1034,17 +1095,17 @@ Changelog: 等待中 - + Paused 暂停中 - + Preview process already running 预览程序已存在 - + There is already another preview process running. Please close the other one first. 另一预览程序正在运行中. @@ -1076,7 +1137,7 @@ Please close the other one first. Transfers - 传输 + 传输 @@ -1084,12 +1145,12 @@ Please close the other one first. 确实要退出qBittorrent吗? - + Are you sure you want to delete the selected item(s) in download list and in hard drive? 确定从硬盘及下载列表中删除所选中的项目? - + Download finished 下载完毕 @@ -1110,64 +1171,64 @@ Please close the other one first. 完整种子/不完整种子 - + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - + Connection status: 连接状态: - + Offline 离线 - + No peers found... 找不到资源... - + 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 完整种子/不完整种子 - + ETA i.e: Estimated Time of Arrival / Time left 剩余时间 @@ -1185,24 +1246,24 @@ Please close the other one first. 不完整种子 - + qBittorrent %1 started. e.g: qBittorrent v0.x started. qBittorrent %1开始. - + qBittorrent qBittorrent - + 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 @@ -1211,57 +1272,57 @@ Please close the other one first. Finished i.e: Torrent has finished downloading - 完成 + 完成 - + Checking... i.e: Checking already downloaded parts... 检查中... - + Stalled i.e: State of a torrent whose download speed is 0kb/s 等待中 - + Are you sure you want to quit? 确实要退出吗? - + '%1' was removed. 'xxx.avi' was removed. '%1'已移除. - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. '%1'添加到下载列表. - + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) '%1'重新开始(快速) - + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. '%1'已存在于下载列表中. - + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' 无法解码torrent文件:'%1' - + None i.e: No error message @@ -1273,69 +1334,69 @@ Please close the other one first. 使用端口:'%1' - + All downloads were paused. 所有下载已暂停. - + '%1' paused. xxx.avi paused. '%1'暂停. - + Connecting... i.e: Connecting to the tracker... 连接中... - + All downloads were resumed. 重新开始所有下载. - + '%1' resumed. e.g: xxx.avi resumed. '%1'重新开始. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. '%1'下载完毕. - + I/O Error i.e: Input/Output Error 输入/输出错误 - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused 读或写%1过程中出现错误.磁盘已满,下载被暂停 - + Connection Status: 连接状态: - + Online 联机 - + Firewalled? i.e: Behind a firewall/router? 存在防火墙? - + No incoming connections... 无对内连接... @@ -1361,79 +1422,84 @@ Please close the other one first. 结果 - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... '%1'下载中,请等待... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. 出现错误(磁盘已满?),'%1'暂停. - + Search 搜索 - + RSS - + UPnP: no WAN service detected... - + UPnP: WAN service detected! - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 - + DHT support [ON], port: %1 - + DHT support [OFF] - + UPnP support [ON], port: %1 - + UPnP support [OFF] - + PeX support [ON] - + PeX support [OFF] - + The download list is not empty. Are you sure you want to quit qBittorrent? + + + Downloads + + MainWindow @@ -1573,9 +1639,9 @@ Are you sure you want to quit qBittorrent? 连接状态 - + Downloads - 下载 + 下载 @@ -1670,7 +1736,7 @@ Are you sure you want to quit qBittorrent? Transfers - 传输 + 传输 @@ -2863,6 +2929,24 @@ Changelog: 更新搜索插件 + + seeding + + + Search + 搜索 + + + + The following torrents are finished and shared: + + + + + <u>Note:</u> It is important that you keep sharing your torrents after they are finished for the well being of the network. + + + torrentAdditionDialog diff --git a/src/lang/qbittorrent_zh_HK.qm b/src/lang/qbittorrent_zh_HK.qm index 9a821975bbbf5d27f3a3870dfd7f4b4bcb213fa4..15d4ace6944d6d9912dca0fef1e5579d479a8b1e 100644 GIT binary patch delta 3671 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 IQ+f;YA6@D4kpKVy delta 3021 zcmX}udt6l276yiyLEjeni$blqmpv$N6zQ|_1$|P_TFo+wa*#KPpVFt zRXgoeMQ;sBHzZyrQtcv29?!9Ma-F2INa)FQs3E#{!-Fh)IcM# zLA9`!*bocsBsS6ne)cn_E07s{6_32Cx|p| zRuf1(T!Vf-`JBRrngit1;Q`yprza5pPJY9%G3!p_gAhDhOmSaV!4{fY+)Ko1X05hOb{+p|Cul%orB6Xsu<2wOpbtsLW^9wkNzYH^M@7_7ns-Xumq=f)-v!|LI+5+R%-CG{P0`<=$JYlQGt_rEN?bU=tJtndntVuqP z6WhgW3XdTmyIf7_k(b~{nzyHa3OlU!J$J|`tI1Z4RvR=`HQR}XT!V&MB72plrs+fI ztEuxFaGs`Fr@%Kf=dy0WYE8%5?_r1LdNEFBZ_)f1pd)hdV28xvZa5^ep7AJ+!x7fI zuAOM8h7GE)KyP+QATl*{7Q5`r<8T$b?CHSxE;g4%?T0q9?-;hejm9JPodF%~tOm31 zDp}~i#J=l`R5@;k2jEfmUH^gcZ`sO==XDm$)Pz!&Y@gP%YWb!t7TkFJ5ug^oJ;UWX`FxI z(qmA&;l5nvDV%ipd~TVL48P#kX%N8helE`qnRE%{3OQ`(GMg*p@4y0X!wU%9rJ6Hd z^@si3)}o(?M)+|D8gIZP19$NLB{T}S<4?}PI_^}D1AN4_onB7lI*Gekguq;va(Bn# zx$6$A&01zWYVO*jwNFhTa`VJNRgi93szHKE{COp85O? z^A5cKo(G>dyqx)@V|_$k2l!d~7vKec-X2@n_grs#e(^vc-VuC(<49Nmv7z^AzA$7h zyw7h~JA%k3f;U$5!nJ&b-9FgNSGbhIANZzY{Y1VF{K=<#VFZ6>kOA+%?@GSqb^!)% z@@>%(M1HpX`Bv12g>g1oSDeMwn2Q z3U3SH!SzJ`?n30k1#pHC?UW63g#~#DuufRGtrOlD5buA0O33ZTYZBlm$>}!p^ozct@zeeV!PYi1q)3$qT9A868^0Fm-7yyASYeTxGuOtSMzBYEYa0RAk{%9t#;`?UWezw z_PWN8--9u_t{w5vsQc0IbsHL|McQ8sdqwr(W}*;VQCPnO&JmrRF)?I=)%UGl5YyM; z+aB_h__7U78tNc!3`Yq=SBeI2Y!JF%ES{JLzZ3sybAxE2M%+@l3w|r^w$TxVslP>J3H~AN8C*vc=_&2a_JL_ql^;I6ksGChACHBN(xF`3k;q=DF5&@El)+tUxm=6J zEa~Ds+}0?gbg6&9I_bZkso_=W`%T-4qSeyVz-~BI*0LvIp{#AeNusM|=QP}*=uUZ5 z22vd($R0adVX)O#<=-10Hjywae$;lQ36w@zf)Z<`=*hqO{*m=Cq9ivnBbijD5Bz0whg_~Q<$CE&ALuj9V{A&* zX2tGT&J;0SHcuTkRx}L{RZNFQA2;vt9K>nV(^99KkB+&P0zgmM&Rs s3QQTQ`+skZ$t}snTpQfLnoGmq6wOQHKbK6cskcoJ=LDEj)6TGe0gpU5r~m)} diff --git a/src/lang/qbittorrent_zh_HK.ts b/src/lang/qbittorrent_zh_HK.ts index d94038b82..cc218a616 100644 --- a/src/lang/qbittorrent_zh_HK.ts +++ b/src/lang/qbittorrent_zh_HK.ts @@ -606,10 +606,71 @@ Copyright © 2006 by Christophe Dumez<br> + + FinishedTorrents + + + Finished + 完成 + + + + 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 + + + + + Status + 狀態 + + + + ETA + i.e: Estimated Time of Arrival / Time left + ETA + + + + Finished + i.e: Torrent has finished downloading + 完成 + + GUI - + Open Torrent Files 打開Torrent文件 @@ -619,7 +680,7 @@ Copyright © 2006 by Christophe Dumez<br> 無效 - + This file is either corrupted or this isn't a torrent. 該文件不是torrent文件或已經損壞. @@ -629,17 +690,17 @@ Copyright © 2006 by Christophe Dumez<br> 確定刪除下在列表中的所有文件? - + &Yes &是 - + &No &否 - + Are you sure you want to delete the selected item(s) in download list? 確定刪除所選中的文件? @@ -654,9 +715,9 @@ Copyright © 2006 by Christophe Dumez<br> 開始 - + Finished - 完成 + 完成 @@ -664,12 +725,12 @@ Copyright © 2006 by Christophe Dumez<br> 檢查中... - + Connecting... 連接中... - + Downloading... 下載中... @@ -709,7 +770,7 @@ Copyright © 2006 by Christophe Dumez<br> 無法建立目錄: - + Torrent Files Torrent檔案 @@ -758,7 +819,7 @@ Copyright © 2006 by Christophe Dumez<br> 使用端口: - + Are you sure? -- qBittorrent 確定? -- qBittorrent @@ -788,7 +849,7 @@ Copyright © 2006 by Christophe Dumez<br> 下載完畢. - + Couldn't listen on any of the given ports. 所給端口無回應. @@ -961,7 +1022,7 @@ Changelog: 上傳速度 - + Status 狀態 @@ -986,28 +1047,23 @@ Changelog: 搜尋引擎 - + Paused 暫停 - + Preview process already running - + There is already another preview process running. Please close the other one first. - - Transfers - - - - + Download finished @@ -1023,69 +1079,69 @@ Please close the other one first. 搜索引擎 - + Are you sure you want to delete the selected item(s) in download list and in hard drive? - + qBittorrent %1 e.g: qBittorrent v0.x - + Connection status: - + Offline - + No peers found... - + 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 - + ETA i.e: Estimated Time of Arrival / Time left ETA @@ -1103,24 +1159,24 @@ Please close the other one first. 不完整種子 - + qBittorrent %1 started. e.g: qBittorrent v0.x started. - + 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 @@ -1129,125 +1185,125 @@ Please close the other one first. Finished i.e: Torrent has finished downloading - 完成 + 完成 - + Checking... i.e: Checking already downloaded parts... 檢查中... - + Stalled i.e: State of a torrent whose download speed is 0kb/s - + Are you sure you want to quit? - + '%1' was removed. 'xxx.avi' was removed. - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. - + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) - + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. - + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' - + None i.e: No error message - + All downloads were paused. - + '%1' paused. xxx.avi paused. - + Connecting... i.e: Connecting to the tracker... 連接中... - + All downloads were resumed. - + '%1' resumed. e.g: xxx.avi resumed. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. - + I/O Error i.e: Input/Output Error 輸入/輸出錯誤 - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused - + Connection Status: - + Online - + Firewalled? i.e: Behind a firewall/router? - + No incoming connections... @@ -1258,79 +1314,84 @@ Please close the other one first. 結果 - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. - + Search 搜索 - + RSS - + UPnP: no WAN service detected... - + UPnP: WAN service detected! - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 - + DHT support [ON], port: %1 - + DHT support [OFF] - + UPnP support [ON], port: %1 - + UPnP support [OFF] - + PeX support [ON] - + PeX support [OFF] - + The download list is not empty. Are you sure you want to quit qBittorrent? + + + Downloads + + MainWindow @@ -1470,9 +1531,9 @@ Are you sure you want to quit qBittorrent? 連接狀態 - + Downloads - 下載 + 下載 @@ -1559,11 +1620,6 @@ Are you sure you want to quit qBittorrent? Session ratio: session 比率 - - - Transfers - - Preview file @@ -2480,6 +2536,24 @@ Changelog: 更新搜尋plugin + + seeding + + + Search + 搜索 + + + + The following torrents are finished and shared: + + + + + <u>Note:</u> It is important that you keep sharing your torrents after they are finished for the well being of the network. + + + torrentAdditionDialog diff --git a/src/search.ui b/src/search.ui index 6abfc1cde..5822f0595 100644 --- a/src/search.ui +++ b/src/search.ui @@ -382,5 +382,22 @@ - + + + search_pattern + returnPressed() + search_button + click() + + + 421 + 37 + + + 685 + 45 + + + + diff --git a/src/src.pro b/src/src.pro index fd931c51f..bcb4650ea 100644 --- a/src/src.pro +++ b/src/src.pro @@ -127,7 +127,8 @@ SOURCES += GUI.cpp \ properties_imp.cpp \ createtorrent_imp.cpp \ bittorrent.cpp \ - searchEngine.cpp + searchEngine.cpp \ + FinishedTorrents.cpp !contains(DEFINES, NO_UPNP){ message(UPnP Enabled) HEADERS += UPnP.h