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 ba82352f0..df7676fe5 100644 Binary files a/src/lang/qbittorrent_bg.qm and b/src/lang/qbittorrent_bg.qm differ 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 4d25fbf8b..eece0aa09 100644 Binary files a/src/lang/qbittorrent_ca.qm and b/src/lang/qbittorrent_ca.qm differ diff --git a/src/lang/qbittorrent_ca.ts b/src/lang/qbittorrent_ca.ts index 391303433..b186820ae 100644 --- a/src/lang/qbittorrent_ca.ts +++ b/src/lang/qbittorrent_ca.ts @@ -723,6 +723,67 @@ Copyright © 2006 by Christophe Dumez<br> + + 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 f3ba4ad5b..86203c00f 100644 Binary files a/src/lang/qbittorrent_da.qm and b/src/lang/qbittorrent_da.qm differ 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 80869b82d..1e38584eb 100644 Binary files a/src/lang/qbittorrent_de.qm and b/src/lang/qbittorrent_de.qm differ 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 5dfaf08f1..f10209423 100644 Binary files a/src/lang/qbittorrent_el.qm and b/src/lang/qbittorrent_el.qm differ 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 925ef3794..e900d7302 100644 Binary files a/src/lang/qbittorrent_en.qm and b/src/lang/qbittorrent_en.qm differ diff --git a/src/lang/qbittorrent_en.ts b/src/lang/qbittorrent_en.ts index b6b9f7647..6d9c41ff9 100644 --- a/src/lang/qbittorrent_en.ts +++ b/src/lang/qbittorrent_en.ts @@ -518,379 +518,439 @@ Copyright © 2006 by Christophe Dumez<br> - 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 505366ab7..e7f4c4dea 100644 Binary files a/src/lang/qbittorrent_es.qm and b/src/lang/qbittorrent_es.qm differ 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 92768c9fb..64e6b3351 100644 Binary files a/src/lang/qbittorrent_fi.qm and b/src/lang/qbittorrent_fi.qm differ 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 86fd26361..978d63ff1 100644 Binary files a/src/lang/qbittorrent_fr.qm and b/src/lang/qbittorrent_fr.qm differ 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 470f19dfa..d470753aa 100644 Binary files a/src/lang/qbittorrent_it.qm and b/src/lang/qbittorrent_it.qm differ 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 cb9a70881..8d49ec699 100644 Binary files a/src/lang/qbittorrent_ko.qm and b/src/lang/qbittorrent_ko.qm differ 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 0bdf4f8ed..fbf81e6df 100644 Binary files a/src/lang/qbittorrent_nb.qm and b/src/lang/qbittorrent_nb.qm differ 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 dc679dc2a..be3ceb845 100644 Binary files a/src/lang/qbittorrent_nl.qm and b/src/lang/qbittorrent_nl.qm differ diff --git a/src/lang/qbittorrent_nl.ts b/src/lang/qbittorrent_nl.ts index 0f98a3f2d..31b619102 100644 --- a/src/lang/qbittorrent_nl.ts +++ b/src/lang/qbittorrent_nl.ts @@ -724,6 +724,67 @@ Copyright 2006 door Christophe Dumez<br> + + 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 7651f6f26..abf93a6ab 100644 Binary files a/src/lang/qbittorrent_pl.qm and b/src/lang/qbittorrent_pl.qm differ diff --git a/src/lang/qbittorrent_pl.ts b/src/lang/qbittorrent_pl.ts index f26805f07..b22670284 100644 --- a/src/lang/qbittorrent_pl.ts +++ b/src/lang/qbittorrent_pl.ts @@ -712,6 +712,67 @@ Wszystkie prawa zastrżeżone © 2006 Christophe Dumez<br> + + 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 ff9f7fff1..4b6a6ccfe 100644 Binary files a/src/lang/qbittorrent_pt.qm and b/src/lang/qbittorrent_pt.qm differ 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 4496c90dd..3ef06b0ac 100644 Binary files a/src/lang/qbittorrent_ro.qm and b/src/lang/qbittorrent_ro.qm differ 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 a140e8129..549b15d05 100644 Binary files a/src/lang/qbittorrent_ru.qm and b/src/lang/qbittorrent_ru.qm differ diff --git a/src/lang/qbittorrent_ru.ts b/src/lang/qbittorrent_ru.ts index 5d42967d9..0b0bb6185 100644 --- a/src/lang/qbittorrent_ru.ts +++ b/src/lang/qbittorrent_ru.ts @@ -647,6 +647,67 @@ 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 @@ -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 4ae36bfb5..b07724c92 100644 Binary files a/src/lang/qbittorrent_sk.qm and b/src/lang/qbittorrent_sk.qm differ 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 b48e61b15..7642eb1a9 100644 Binary files a/src/lang/qbittorrent_sv.qm and b/src/lang/qbittorrent_sv.qm differ 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 d4a5ac176..4f115ef1b 100644 Binary files a/src/lang/qbittorrent_tr.qm and b/src/lang/qbittorrent_tr.qm differ 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 9160fc288..dac867c74 100644 Binary files a/src/lang/qbittorrent_uk.qm and b/src/lang/qbittorrent_uk.qm differ diff --git a/src/lang/qbittorrent_uk.ts b/src/lang/qbittorrent_uk.ts index 10b3d2562..4a0fa1982 100644 --- a/src/lang/qbittorrent_uk.ts +++ b/src/lang/qbittorrent_uk.ts @@ -642,10 +642,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-файли @@ -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 ef51d91b7..4e6824929 100644 Binary files a/src/lang/qbittorrent_zh.qm and b/src/lang/qbittorrent_zh.qm differ 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 9a821975b..15d4ace69 100644 Binary files a/src/lang/qbittorrent_zh_HK.qm and b/src/lang/qbittorrent_zh_HK.qm differ 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