mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-24 18:26:11 +03:00
- Started to work on queueuing
This commit is contained in:
parent
9f6e28b741
commit
d29cc3325b
63 changed files with 8078 additions and 7638 deletions
|
@ -40,7 +40,8 @@
|
|||
#define SEEDSLEECH 5
|
||||
#define RATIO 6
|
||||
#define ETA 7
|
||||
#define HASH 8
|
||||
#define PRIORITY 8
|
||||
#define HASH 9
|
||||
|
||||
class DLListDelegate: public QItemDelegate {
|
||||
Q_OBJECT
|
||||
|
|
13
src/GUI.cpp
13
src/GUI.cpp
|
@ -1110,6 +1110,19 @@ void GUI::configureSession(bool deleteOptions) {
|
|||
} else {
|
||||
displayRSSTab(false);
|
||||
}
|
||||
// Queueing System
|
||||
if(options->isQueueingSystemEnabled()) {
|
||||
if(!BTSession->isDlQueueingEnabled()) {
|
||||
BTSession->setMaxActiveDlTorrents(options->getMaxActiveDownloads());
|
||||
BTSession->setDlQueueingEnabled(true);
|
||||
downloadingTorrentTab->hidePriorityColumn(false);
|
||||
}
|
||||
} else {
|
||||
if(BTSession->isDlQueueingEnabled()) {
|
||||
BTSession->setDlQueueingEnabled(false);
|
||||
downloadingTorrentTab->hidePriorityColumn(true);
|
||||
}
|
||||
}
|
||||
// Clean up
|
||||
if(deleteOptions) {
|
||||
delete options;
|
||||
|
|
BIN
src/Icons/skin/queued.png
Normal file
BIN
src/Icons/skin/queued.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 711 B |
|
@ -56,13 +56,13 @@ class about : public QDialog, private Ui::AboutDlg{
|
|||
"<i>- <u>Brazilian:</u> Nick Marinho (nickmarinho@gmail.com)<br>\
|
||||
- <u>Bulgarian:</u> Tsvetan & Boiko Bankov (emerge_life@users.sourceforge.net)<br>\
|
||||
- <u>Catalan:</u> Gekko Dam Beer (gekko04@users.sourceforge.net)<br>\
|
||||
- <u>Chinese (Simplified):</u> Guo Yue (guoyue0418@hotmail.com)<br>\
|
||||
- <u>Chinese (Simplified):</u> Guo Yue (yue.guo0418@gmail.com)<br>\
|
||||
- <u>Danish:</u> Mathias Nielsen (comoneo@gmail.com)<br>\
|
||||
- <u>Dutch:</u> Joost Schipper (heavyjoost@users.sourceforge.net)<br>\
|
||||
- <u>Finnish:</u> Niklas Laxström (nikerabbit@users.sourceforge.net)<br>\
|
||||
- <u>German:</u> Niels Hoffmann (zentralmaschine@users.sourceforge.net)<br>\
|
||||
- <u>Greek:</u> Tsvetan Bankov (emerge_life@users.sourceforge.net)<br>\
|
||||
- <u>Hungarian:</u> Majoros Péter (majoros.j.p@t-online.hu)<br>\
|
||||
- <u>Hungarian:</u> Majoros Péter (majoros.peterj@gmail.com)<br>\
|
||||
- <u>Italian:</u> Mirko Ferrari (mirkoferrari@gmail.com) and Ferraro Luciano (luciano.ferraro@gmail.com)<br>\
|
||||
- <u>Japanese:</u> Nardog (nardog@e2umail.com)<br>\
|
||||
- <u>Korean:</u> Jin Woo Sin (jin828sin@users.sourceforge.net)<br>\
|
||||
|
|
|
@ -43,7 +43,7 @@
|
|||
#define MAX_TRACKER_ERRORS 2
|
||||
|
||||
// Main constructor
|
||||
bittorrent::bittorrent() : timerScan(0), DHTEnabled(false), preAllocateAll(false), addInPause(false), maxConnecsPerTorrent(500), maxUploadsPerTorrent(4), max_ratio(-1), UPnPEnabled(false), NATPMPEnabled(false), LSDEnabled(false), folderScanInterval(5) {
|
||||
bittorrent::bittorrent() : timerScan(0), DHTEnabled(false), preAllocateAll(false), addInPause(false), maxConnecsPerTorrent(500), maxUploadsPerTorrent(4), max_ratio(-1), UPnPEnabled(false), NATPMPEnabled(false), LSDEnabled(false), folderScanInterval(5), dlQueueingEnabled(false) {
|
||||
// To avoid some exceptions
|
||||
fs::path::default_name_check(fs::no_check);
|
||||
// Creating bittorrent session
|
||||
|
@ -72,6 +72,7 @@ bittorrent::bittorrent() : timerScan(0), DHTEnabled(false), preAllocateAll(false
|
|||
deleter = new deleteThread(this);
|
||||
BigRatioTimer = 0;
|
||||
filterParser = 0;
|
||||
downloadQueue = 0;
|
||||
qDebug("* BTSession constructed");
|
||||
}
|
||||
|
||||
|
@ -98,6 +99,12 @@ bittorrent::~bittorrent() {
|
|||
if(filterParser != 0)
|
||||
delete filterParser;
|
||||
delete downloader;
|
||||
if(dlQueueingEnabled) {
|
||||
Q_ASSERT(downloadQueue);
|
||||
delete downloadQueue;
|
||||
Q_ASSERT(queuedDownloads);
|
||||
delete queuedDownloads;
|
||||
}
|
||||
// Delete BT session
|
||||
qDebug("Deleting session");
|
||||
delete s;
|
||||
|
@ -147,6 +154,68 @@ void bittorrent::setDownloadLimit(QString hash, long val) {
|
|||
saveTorrentSpeedLimits(hash);
|
||||
}
|
||||
|
||||
bool bittorrent::isDlQueueingEnabled() const {
|
||||
return dlQueueingEnabled;
|
||||
}
|
||||
|
||||
void bittorrent::setMaxActiveDlTorrents(int val) {
|
||||
maxActiveDlTorrents = val;
|
||||
}
|
||||
|
||||
void bittorrent::decreaseDlTorrentPriority(QString hash) {
|
||||
int index = downloadQueue->indexOf(hash);
|
||||
Q_ASSERT(index != -1);
|
||||
if(index > 0) {
|
||||
downloadQueue->swap(index-1, index);
|
||||
saveDlTorrentPriority(hash, index-1);
|
||||
saveDlTorrentPriority(downloadQueue->at(index), index);
|
||||
updateDownloadQueue();
|
||||
}
|
||||
}
|
||||
|
||||
void bittorrent::increaseDlTorrentPriority(QString hash) {
|
||||
int index = downloadQueue->indexOf(hash);
|
||||
Q_ASSERT(index != -1);
|
||||
if(index >= 0 && index < (downloadQueue->size()-1)) {
|
||||
downloadQueue->swap(index+1, index);
|
||||
saveDlTorrentPriority(hash, index+1);
|
||||
saveDlTorrentPriority(downloadQueue->at(index), index);
|
||||
updateDownloadQueue();
|
||||
}
|
||||
}
|
||||
|
||||
void bittorrent::saveDlTorrentPriority(QString hash, int prio) {
|
||||
// Write .queued file
|
||||
QFile prio_file(misc::qBittorrentPath()+"BT_backup"+QDir::separator()+hash+".prio");
|
||||
prio_file.open(QIODevice::WriteOnly | QIODevice::Text);
|
||||
prio_file.write(QByteArray::number(prio));
|
||||
prio_file.close();
|
||||
}
|
||||
|
||||
int bittorrent::loadDlTorrentPriority(QString hash) {
|
||||
if(QFile::exists(misc::qBittorrentPath()+"BT_backup"+QDir::separator()+hash+".prio")) {
|
||||
// Read .queued file
|
||||
QFile prio_file(misc::qBittorrentPath()+"BT_backup"+QDir::separator()+hash+".prio");
|
||||
if(!prio_file.exists()) {
|
||||
return -1;
|
||||
}
|
||||
prio_file.open(QIODevice::ReadOnly | QIODevice::Text);
|
||||
bool ok = false;
|
||||
int prio = prio_file.readAll().toInt(&ok);
|
||||
prio_file.close();
|
||||
if(!ok) {
|
||||
return -1;
|
||||
}
|
||||
return prio;
|
||||
}
|
||||
return -1;
|
||||
}
|
||||
|
||||
bool bittorrent::isDownloadQueued(QString hash) const {
|
||||
Q_ASSERT(dlQueueingEnabled);
|
||||
return queuedDownloads->contains(hash);
|
||||
}
|
||||
|
||||
void bittorrent::setUploadLimit(QString hash, long val) {
|
||||
qDebug("Set upload limit rate to %ld", val);
|
||||
QTorrentHandle h = getTorrentHandle(hash);
|
||||
|
@ -163,6 +232,92 @@ void bittorrent::startTorrentsInPause(bool b) {
|
|||
addInPause = b;
|
||||
}
|
||||
|
||||
void bittorrent::setDlQueueingEnabled(bool enable) {
|
||||
if(dlQueueingEnabled != enable) {
|
||||
dlQueueingEnabled = enable;
|
||||
if(enable) {
|
||||
// Load priorities
|
||||
QList<QPair<int, QString> > tmp_list;
|
||||
QStringList noprio;
|
||||
QStringList finished = getUnfinishedTorrents();
|
||||
foreach(QString hash, finished) {
|
||||
int prio = loadDlTorrentPriority(hash);
|
||||
if(prio != -1) {
|
||||
misc::insertSort2<QString>(tmp_list, QPair<int,QString>(prio,hash), Qt::AscendingOrder);
|
||||
} else {
|
||||
noprio << hash;
|
||||
}
|
||||
}
|
||||
downloadQueue = new QStringList();
|
||||
QPair<int,QString> couple;
|
||||
foreach(couple, tmp_list) {
|
||||
downloadQueue->append(couple.second);
|
||||
}
|
||||
(*downloadQueue)<<noprio;
|
||||
// save priorities
|
||||
int i=0;
|
||||
foreach(QString hash, *downloadQueue) {
|
||||
saveDlTorrentPriority(hash, i);
|
||||
++i;
|
||||
}
|
||||
queuedDownloads = new QStringList();
|
||||
updateDownloadQueue();
|
||||
} else {
|
||||
delete downloadQueue;
|
||||
downloadQueue = 0;
|
||||
delete queuedDownloads;
|
||||
queuedDownloads = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
int bittorrent::getDlTorrentPriority(QString hash) const {
|
||||
Q_ASSERT(downloadQueue != 0);
|
||||
return downloadQueue->indexOf(hash);
|
||||
}
|
||||
|
||||
void bittorrent::updateDownloadQueue() {
|
||||
Q_ASSERT(dlQueueingEnabled);
|
||||
int currentActiveTorrents = 0;
|
||||
// Check if it is necessary to queue torrents
|
||||
foreach(QString hash, *downloadQueue) {
|
||||
QTorrentHandle h = getTorrentHandle(hash);
|
||||
if(!h.is_paused()) {
|
||||
if(currentActiveTorrents < maxActiveDlTorrents) {
|
||||
++currentActiveTorrents;
|
||||
} else {
|
||||
// Queue it
|
||||
h.pause();
|
||||
if(!queuedDownloads->contains(hash)) {
|
||||
queuedDownloads->append(hash);
|
||||
// Create .queued file
|
||||
if(!QFile::exists(misc::qBittorrentPath()+"BT_backup"+QDir::separator()+hash+".queued")) {
|
||||
QFile queued_file(misc::qBittorrentPath()+"BT_backup"+QDir::separator()+hash+".queued");
|
||||
queued_file.open(QIODevice::WriteOnly | QIODevice::Text);
|
||||
queued_file.close();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
if(currentActiveTorrents < maxActiveDlTorrents) {
|
||||
// Could not fill download slots, unqueue torrents
|
||||
foreach(QString hash, *downloadQueue) {
|
||||
if(downloadQueue->size() != 0 && currentActiveTorrents < maxActiveDlTorrents) {
|
||||
if(downloadQueue->contains(hash)) {
|
||||
QTorrentHandle h = getTorrentHandle(hash);
|
||||
h.resume();
|
||||
queuedDownloads->removeAll(hash);
|
||||
QFile::remove(misc::qBittorrentPath()+"BT_backup"+QDir::separator()+hash+".queued");
|
||||
++currentActiveTorrents;
|
||||
}
|
||||
} else {
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Calculate the ETA using GASA
|
||||
// GASA: global Average Speed Algorithm
|
||||
qlonglong bittorrent::getETA(QString hash) const {
|
||||
|
@ -275,6 +430,14 @@ void bittorrent::deleteTorrent(QString hash, bool permanent) {
|
|||
std::cerr << "Error: Torrent " << hash.toStdString() << " is neither in finished or unfinished list\n";
|
||||
}
|
||||
}
|
||||
// Remove it from downloadQueue
|
||||
if(dlQueueingEnabled) {
|
||||
downloadQueue->removeAll(hash);
|
||||
queuedDownloads->removeAll(hash);
|
||||
if(QFile::exists(misc::qBittorrentPath()+"BT_backup"+QDir::separator()+hash+".prio"))
|
||||
QFile::remove(misc::qBittorrentPath()+"BT_backup"+QDir::separator()+hash+".prio");
|
||||
updateDownloadQueue();
|
||||
}
|
||||
if(permanent && files_arb != 0) {
|
||||
// Remove from Hard drive
|
||||
qDebug("Removing this on hard drive: %s", qPrintable(savePath+QDir::separator()+fileName));
|
||||
|
@ -312,6 +475,14 @@ void bittorrent::setUnfinishedTorrent(QString hash) {
|
|||
TorrentsStartData[hash] = h.total_payload_download();
|
||||
TorrentsStartTime[hash] = QDateTime::currentDateTime();
|
||||
}
|
||||
// Add it to downloadQueue
|
||||
if(dlQueueingEnabled) {
|
||||
if(!downloadQueue->contains(hash)) {
|
||||
downloadQueue->append(hash);
|
||||
saveDlTorrentPriority(hash, downloadQueue->size()-1);
|
||||
updateDownloadQueue();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Add the given hash to the list of finished torrents
|
||||
|
@ -331,6 +502,14 @@ void bittorrent::setFinishedTorrent(QString hash) {
|
|||
// Remove it from TorrentsStartTime hash table
|
||||
TorrentsStartTime.remove(hash);
|
||||
TorrentsStartData.remove(hash);
|
||||
// Remove it from downloadQueue
|
||||
if(dlQueueingEnabled) {
|
||||
downloadQueue->removeAll(hash);
|
||||
queuedDownloads->removeAll(hash);
|
||||
if(QFile::exists(misc::qBittorrentPath()+"BT_backup"+QDir::separator()+hash+".prio"))
|
||||
QFile::remove(misc::qBittorrentPath()+"BT_backup"+QDir::separator()+hash+".prio");
|
||||
updateDownloadQueue();
|
||||
}
|
||||
// Save fast resume data
|
||||
saveFastResumeAndRatioData(hash);
|
||||
}
|
||||
|
@ -559,6 +738,12 @@ void bittorrent::addTorrent(QString path, bool fromScanDir, QString from_url, bo
|
|||
finishedTorrents << hash;
|
||||
}else{
|
||||
unfinishedTorrents << hash;
|
||||
// Add it to downloadQueue
|
||||
if(dlQueueingEnabled) {
|
||||
downloadQueue->append(hash);
|
||||
saveDlTorrentPriority(hash, downloadQueue->size()-1);
|
||||
updateDownloadQueue();
|
||||
}
|
||||
}
|
||||
// If download from url, remove temp file
|
||||
if(!from_url.isNull()) QFile::remove(file);
|
||||
|
|
|
@ -70,6 +70,10 @@ class bittorrent : public QObject{
|
|||
FilterParserThread *filterParser;
|
||||
QString filterPath;
|
||||
int folderScanInterval; // in seconds
|
||||
bool dlQueueingEnabled;
|
||||
int maxActiveDlTorrents;
|
||||
QStringList *downloadQueue;
|
||||
QStringList *queuedDownloads;
|
||||
|
||||
protected:
|
||||
QString getSavePath(QString hash);
|
||||
|
@ -97,6 +101,10 @@ class bittorrent : public QObject{
|
|||
bool has_filtered_files(QString hash) const;
|
||||
unsigned int getFinishedPausedTorrentsNb() const;
|
||||
unsigned int getUnfinishedPausedTorrentsNb() const;
|
||||
bool isDlQueueingEnabled() const;
|
||||
int getDlTorrentPriority(QString hash) const;
|
||||
bool isDownloadQueued(QString hash) const;
|
||||
int loadDlTorrentPriority(QString hash);
|
||||
|
||||
public slots:
|
||||
void addTorrent(QString path, bool fromScanDir = false, QString from_url = QString(), bool resumed = false);
|
||||
|
@ -116,6 +124,7 @@ class bittorrent : public QObject{
|
|||
void enablePeerExchange();
|
||||
void enableIPFilter(QString filter);
|
||||
void disableIPFilter();
|
||||
void setDlQueueingEnabled(bool enable);
|
||||
void resumeUnfinishedTorrents();
|
||||
void saveTorrentSpeedLimits(QString hash);
|
||||
void loadTorrentSpeedLimits(QString hash);
|
||||
|
@ -123,6 +132,10 @@ class bittorrent : public QObject{
|
|||
void loadDownloadUploadForTorrent(QString hash);
|
||||
void handleDownloadFailure(QString url, QString reason);
|
||||
void loadWebSeeds(QString fileHash);
|
||||
void updateDownloadQueue();
|
||||
void increaseDlTorrentPriority(QString hash);
|
||||
void decreaseDlTorrentPriority(QString hash);
|
||||
void saveDlTorrentPriority(QString hash, int prio);
|
||||
// Session configuration - Setters
|
||||
void setListeningPortsRange(std::pair<unsigned short, unsigned short> ports);
|
||||
void setMaxConnections(int maxConnec);
|
||||
|
@ -149,6 +162,7 @@ class bittorrent : public QObject{
|
|||
bool enableDHT(bool b);
|
||||
void reloadTorrent(const QTorrentHandle &h, bool full_alloc);
|
||||
void setTimerScanInterval(int secs);
|
||||
void setMaxActiveDlTorrents(int val);
|
||||
|
||||
protected slots:
|
||||
void scanDirectory();
|
||||
|
|
|
@ -239,6 +239,11 @@
|
|||
<string>Buy it</string>
|
||||
</property>
|
||||
</action>
|
||||
<action name="actionHOSColPriority" >
|
||||
<property name="text" >
|
||||
<string>Priority</string>
|
||||
</property>
|
||||
</action>
|
||||
<zorder>tabBottom</zorder>
|
||||
<zorder></zorder>
|
||||
</widget>
|
||||
|
|
|
@ -49,7 +49,7 @@ DownloadingTorrents::DownloadingTorrents(QObject *parent, bittorrent *BTSession)
|
|||
// tabBottom->setTabIcon(1, QIcon(QString::fromUtf8(":/Icons/filter.png")));
|
||||
|
||||
// Set Download list model
|
||||
DLListModel = new QStandardItemModel(0,9);
|
||||
DLListModel = new QStandardItemModel(0,10);
|
||||
DLListModel->setHeaderData(NAME, Qt::Horizontal, tr("Name", "i.e: file name"));
|
||||
DLListModel->setHeaderData(SIZE, Qt::Horizontal, tr("Size", "i.e: file size"));
|
||||
DLListModel->setHeaderData(PROGRESS, Qt::Horizontal, tr("Progress", "i.e: % downloaded"));
|
||||
|
@ -58,9 +58,12 @@ DownloadingTorrents::DownloadingTorrents(QObject *parent, bittorrent *BTSession)
|
|||
DLListModel->setHeaderData(SEEDSLEECH, Qt::Horizontal, tr("Seeds/Leechs", "i.e: full/partial sources"));
|
||||
DLListModel->setHeaderData(RATIO, Qt::Horizontal, tr("Ratio"));
|
||||
DLListModel->setHeaderData(ETA, Qt::Horizontal, tr("ETA", "i.e: Estimated Time of Arrival / Time left"));
|
||||
DLListModel->setHeaderData(PRIORITY, Qt::Horizontal, tr("Priority"));
|
||||
downloadList->setModel(DLListModel);
|
||||
DLDelegate = new DLListDelegate(downloadList);
|
||||
downloadList->setItemDelegate(DLDelegate);
|
||||
// Hide priority column
|
||||
downloadList->hideColumn(PRIORITY);
|
||||
// Hide hash column
|
||||
downloadList->hideColumn(HASH);
|
||||
loadHiddenColumns();
|
||||
|
@ -108,6 +111,7 @@ DownloadingTorrents::DownloadingTorrents(QObject *parent, bittorrent *BTSession)
|
|||
connect(actionHOSColSeedersLeechers, SIGNAL(triggered()), this, SLOT(hideOrShowColumnSeedersLeechers()));
|
||||
connect(actionHOSColRatio, SIGNAL(triggered()), this, SLOT(hideOrShowColumnRatio()));
|
||||
connect(actionHOSColEta, SIGNAL(triggered()), this, SLOT(hideOrShowColumnEta()));
|
||||
connect(actionHOSColPriority, SIGNAL(triggered()), this, SLOT(hideOrShowColumnPriority()));
|
||||
|
||||
// Set info Bar infos
|
||||
setInfoBar(tr("qBittorrent %1 started.", "e.g: qBittorrent v0.x started.").arg(QString::fromUtf8(""VERSION)));
|
||||
|
@ -121,6 +125,13 @@ DownloadingTorrents::~DownloadingTorrents() {
|
|||
delete DLListModel;
|
||||
}
|
||||
|
||||
void DownloadingTorrents::enablePriorityColumn(bool enable) {
|
||||
if(enable) {
|
||||
downloadList->showColumn(PRIORITY);
|
||||
} else {
|
||||
downloadList->hideColumn(PRIORITY);
|
||||
}
|
||||
}
|
||||
|
||||
void DownloadingTorrents::notifyTorrentDoubleClicked(const QModelIndex& index) {
|
||||
unsigned int row = index.row();
|
||||
|
@ -323,7 +334,13 @@ void DownloadingTorrents::displayDLListMenu(const QPoint& pos) {
|
|||
void DownloadingTorrents::displayDLHoSMenu(const QPoint& pos){
|
||||
QMenu hideshowColumn(this);
|
||||
hideshowColumn.setTitle(tr("Hide or Show Column"));
|
||||
for(int i=0; i<=ETA; i++) {
|
||||
int lastCol;
|
||||
if(BTSession->isDlQueueingEnabled()) {
|
||||
lastCol = PRIORITY;
|
||||
} else {
|
||||
lastCol = ETA;
|
||||
}
|
||||
for(int i=0; i <= lastCol; ++i) {
|
||||
hideshowColumn.addAction(getActionHoSCol(i));
|
||||
}
|
||||
// Call menu
|
||||
|
@ -361,6 +378,10 @@ void DownloadingTorrents::hideOrShowColumn(int index) {
|
|||
}
|
||||
}
|
||||
|
||||
void DownloadingTorrents::hidePriorityColumn(bool hide) {
|
||||
downloadList->setColumnHidden(PRIORITY, hide);
|
||||
}
|
||||
|
||||
// save the hidden columns in settings
|
||||
void DownloadingTorrents::saveHiddenColumns() {
|
||||
QSettings settings("qBittorrent", "qBittorrent");
|
||||
|
@ -436,6 +457,9 @@ void DownloadingTorrents::hideOrShowColumnEta() {
|
|||
hideOrShowColumn(ETA);
|
||||
}
|
||||
|
||||
void DownloadingTorrents::hideOrShowColumnPriority() {
|
||||
hideOrShowColumn(PRIORITY);
|
||||
}
|
||||
|
||||
void DownloadingTorrents::on_actionClearLog_triggered() {
|
||||
infoBar->clear();
|
||||
|
@ -468,6 +492,9 @@ QAction* DownloadingTorrents::getActionHoSCol(int index) {
|
|||
case ETA :
|
||||
return actionHOSColEta;
|
||||
break;
|
||||
case PRIORITY :
|
||||
return actionHOSColPriority;
|
||||
break;
|
||||
default :
|
||||
return NULL;
|
||||
}
|
||||
|
@ -524,6 +551,18 @@ void DownloadingTorrents::updateDlList() {
|
|||
row = getRowFromHash(hash);
|
||||
}
|
||||
Q_ASSERT(row != -1);
|
||||
// Update Priority
|
||||
if(BTSession->isDlQueueingEnabled()) {
|
||||
DLListModel->setData(DLListModel->index(row, PRIORITY), QVariant((int)BTSession->getDlTorrentPriority(hash)));
|
||||
if(h.is_paused() && BTSession->isDownloadQueued(hash)) {
|
||||
qDebug("Download queued");
|
||||
DLListModel->setData(DLListModel->index(row, NAME), QVariant(QIcon(QString::fromUtf8(":/Icons/time.png"))), Qt::DecorationRole);
|
||||
if(!downloadList->isColumnHidden(ETA)) {
|
||||
DLListModel->setData(DLListModel->index(row, ETA), QVariant((qlonglong)-1));
|
||||
}
|
||||
setRowColor(row, QString::fromUtf8("grey"));
|
||||
}
|
||||
}
|
||||
// No need to update a paused torrent
|
||||
if(h.is_paused()) continue;
|
||||
if(BTSession->getTorrentsToPauseAfterChecking().indexOf(hash) != -1) {
|
||||
|
@ -633,6 +672,8 @@ void DownloadingTorrents::addTorrent(QString hash) {
|
|||
DLListModel->setData(DLListModel->index(row, UPSPEED), QVariant((double)0.));
|
||||
DLListModel->setData(DLListModel->index(row, SEEDSLEECH), QVariant(QString::fromUtf8("0/0")));
|
||||
DLListModel->setData(DLListModel->index(row, ETA), QVariant((qlonglong)-1));
|
||||
if(BTSession->isDlQueueingEnabled())
|
||||
DLListModel->setData(DLListModel->index(row, PRIORITY), QVariant((int)BTSession->getDlTorrentPriority(hash)));
|
||||
DLListModel->setData(DLListModel->index(row, HASH), QVariant(hash));
|
||||
// Pause torrent if it was paused last time
|
||||
if(BTSession->isPaused(hash)) {
|
||||
|
|
|
@ -55,6 +55,7 @@ class DownloadingTorrents : public QWidget, public Ui::downloading{
|
|||
QString getHashFromRow(unsigned int row) const;
|
||||
QStringList getSelectedTorrents(bool only_one=false) const;
|
||||
unsigned int getNbTorrentsInList() const;
|
||||
void enablePriorityColumn(bool enable);
|
||||
|
||||
signals:
|
||||
void unfinishedTorrentsNumberChanged(unsigned int);
|
||||
|
@ -92,6 +93,7 @@ class DownloadingTorrents : public QWidget, public Ui::downloading{
|
|||
void hideOrShowColumnSeedersLeechers();
|
||||
void hideOrShowColumnRatio();
|
||||
void hideOrShowColumnEta();
|
||||
void hideOrShowColumnPriority();
|
||||
void displayUPnPError(QString msg);
|
||||
void displayUPnPSuccess(QString msg);
|
||||
|
||||
|
@ -106,6 +108,7 @@ class DownloadingTorrents : public QWidget, public Ui::downloading{
|
|||
void sortProgressColumnDelayed();
|
||||
void updateFileSizeAndProgress(QString hash);
|
||||
void showPropertiesFromHash(QString hash);
|
||||
void hidePriorityColumn(bool hide);
|
||||
|
||||
};
|
||||
|
||||
|
|
|
@ -93,6 +93,7 @@
|
|||
<file>Icons/skin/preview.png</file>
|
||||
<file>Icons/skin/properties.png</file>
|
||||
<file>Icons/skin/qb_question.png</file>
|
||||
<file>Icons/skin/queued.png</file>
|
||||
<file>Icons/skin/remove.png</file>
|
||||
<file>Icons/skin/search.png</file>
|
||||
<file>Icons/skin/seeding.png</file>
|
||||
|
|
Binary file not shown.
|
@ -284,7 +284,7 @@ Copyright © 2006 на Christophe Dumez<br>
|
|||
<translation type="obsolete">0.0.0.0</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1800"/>
|
||||
<location filename="../options.ui" line="1819"/>
|
||||
<source>Port:</source>
|
||||
<translation>Порт:</translation>
|
||||
</message>
|
||||
|
@ -294,7 +294,7 @@ Copyright © 2006 на Christophe Dumez<br>
|
|||
<translation type="obsolete">Прокси сървъра иска удостоверяване</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1839"/>
|
||||
<location filename="../options.ui" line="1858"/>
|
||||
<source>Authentication</source>
|
||||
<translation>Удостоверяване</translation>
|
||||
</message>
|
||||
|
@ -304,7 +304,7 @@ Copyright © 2006 на Christophe Dumez<br>
|
|||
<translation type="obsolete">Име на Потребител:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1860"/>
|
||||
<location filename="../options.ui" line="1879"/>
|
||||
<source>Password:</source>
|
||||
<translation>Парола:</translation>
|
||||
</message>
|
||||
|
@ -938,7 +938,7 @@ Copyright © 2006 на Christophe Dumez<br>
|
|||
<translation>Прокси:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1850"/>
|
||||
<location filename="../options.ui" line="1869"/>
|
||||
<source>Username:</source>
|
||||
<translation>Име на потребителя:</translation>
|
||||
</message>
|
||||
|
@ -1023,17 +1023,17 @@ Copyright © 2006 на Christophe Dumez<br>
|
|||
<translation>RSS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1660"/>
|
||||
<location filename="../options.ui" line="1676"/>
|
||||
<source>RSS feeds refresh interval:</source>
|
||||
<translation>Интервал на обновяване на RSS feeds:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1680"/>
|
||||
<location filename="../options.ui" line="1696"/>
|
||||
<source>minutes</source>
|
||||
<translation>минути</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1704"/>
|
||||
<location filename="../options.ui" line="1720"/>
|
||||
<source>Maximum number of articles per feed:</source>
|
||||
<translation>Максимум статии на feed:</translation>
|
||||
</message>
|
||||
|
@ -1104,20 +1104,30 @@ Copyright © 2006 на Christophe Dumez<br>
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1765"/>
|
||||
<location filename="../options.ui" line="1784"/>
|
||||
<source>Web UI</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1778"/>
|
||||
<location filename="../options.ui" line="1797"/>
|
||||
<source>Enable Web User Interface</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1791"/>
|
||||
<location filename="../options.ui" line="1810"/>
|
||||
<source>HTTP Server</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1629"/>
|
||||
<source>Enable RSS support</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1639"/>
|
||||
<source>RSS settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DownloadingTorrents</name>
|
||||
|
@ -1374,7 +1384,7 @@ Copyright © 2006 на Christophe Dumez<br>
|
|||
<context>
|
||||
<name>GUI</name>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="716"/>
|
||||
<location filename="../GUI.cpp" line="728"/>
|
||||
<source>Open Torrent Files</source>
|
||||
<translation>Отвори Торент Файлове </translation>
|
||||
</message>
|
||||
|
@ -1399,17 +1409,17 @@ Copyright © 2006 на Christophe Dumez<br>
|
|||
<translation type="obsolete">Сигурни ли сте че искате да изтриете всички файлове от списъка за сваляне?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="826"/>
|
||||
<location filename="../GUI.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation>&Да</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="826"/>
|
||||
<location filename="../GUI.cpp" line="838"/>
|
||||
<source>&No</source>
|
||||
<translation>&Не</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="818"/>
|
||||
<location filename="../GUI.cpp" line="830"/>
|
||||
<source>Are you sure you want to delete the selected item(s) in download list?</source>
|
||||
<translation>Сигурни ли сте че искате да изтриете избраните файлове от списъка за сваляне?</translation>
|
||||
</message>
|
||||
|
@ -1429,7 +1439,7 @@ Copyright © 2006 на Christophe Dumez<br>
|
|||
<translation type="obsolete">kb/с</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1109"/>
|
||||
<location filename="../GUI.cpp" line="1127"/>
|
||||
<source>Finished</source>
|
||||
<translation>Завършен</translation>
|
||||
</message>
|
||||
|
@ -1484,7 +1494,7 @@ Copyright © 2006 на Christophe Dumez<br>
|
|||
<translation type="obsolete">Не мога да създам директория:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="717"/>
|
||||
<location filename="../GUI.cpp" line="729"/>
|
||||
<source>Torrent Files</source>
|
||||
<translation>Торент Файлове</translation>
|
||||
</message>
|
||||
|
@ -1556,12 +1566,12 @@ Copyright © 2006 на Christophe Dumez<br>
|
|||
<translation type="obsolete"> qBittorrent</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1341"/>
|
||||
<location filename="../GUI.cpp" line="1359"/>
|
||||
<source>qBittorrent</source>
|
||||
<translation>qBittorrent</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="824"/>
|
||||
<location filename="../GUI.cpp" line="836"/>
|
||||
<source>Are you sure? -- qBittorrent</source>
|
||||
<translation>Сигурни ли сте? -- qBittorrent</translation>
|
||||
</message>
|
||||
|
@ -1874,7 +1884,7 @@ Please close the other one first.</source>
|
|||
<translation type="obsolete">Сигурни ли сте че искате да изтриете избраните файлове от списъка за сваляне и от твърдия диск?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="355"/>
|
||||
<location filename="../GUI.cpp" line="367"/>
|
||||
<source>Download finished</source>
|
||||
<translation>Свалянето завърши</translation>
|
||||
</message>
|
||||
|
@ -1890,23 +1900,23 @@ Please close the other one first.</source>
|
|||
<translation type="obsolete">Търсачка</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="908"/>
|
||||
<location filename="../GUI.cpp" line="920"/>
|
||||
<source>qBittorrent %1</source>
|
||||
<comment>e.g: qBittorrent v0.x</comment>
|
||||
<translation>qBittorrent %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>Connection status:</source>
|
||||
<translation>Състояние на връзката:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>Offline</source>
|
||||
<translation>Извън мрежата</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>No peers found...</source>
|
||||
<translation>Няма връзки...</translation>
|
||||
</message>
|
||||
|
@ -1971,13 +1981,13 @@ Please close the other one first.</source>
|
|||
<translation type="obsolete">qBittorrent %1 стартиран.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1344"/>
|
||||
<location filename="../GUI.cpp" line="1362"/>
|
||||
<source>DL speed: %1 KiB/s</source>
|
||||
<comment>e.g: Download speed: 10 KiB/s</comment>
|
||||
<translation>DL Скорост %1 KB/с</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1347"/>
|
||||
<location filename="../GUI.cpp" line="1365"/>
|
||||
<source>UP speed: %1 KiB/s</source>
|
||||
<comment>e.g: Upload speed: 10 KiB/s</comment>
|
||||
<translation>UL Скорост %1 KB/с</translation>
|
||||
|
@ -2001,12 +2011,12 @@ Please close the other one first.</source>
|
|||
<translation type="obsolete">Отложен</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="611"/>
|
||||
<location filename="../GUI.cpp" line="623"/>
|
||||
<source>Are you sure you want to quit?</source>
|
||||
<translation>Сигурни ли сте че искате да напуснете?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="839"/>
|
||||
<location filename="../GUI.cpp" line="851"/>
|
||||
<source>'%1' was removed.</source>
|
||||
<comment>'xxx.avi' was removed.</comment>
|
||||
<translation>'%1' бе премахнат.</translation>
|
||||
|
@ -2048,12 +2058,12 @@ Please close the other one first.</source>
|
|||
<translation type="obsolete">Прослушване на порт: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1195"/>
|
||||
<location filename="../GUI.cpp" line="1213"/>
|
||||
<source>All downloads were paused.</source>
|
||||
<translation>Всички сваляния са в пауза.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1221"/>
|
||||
<location filename="../GUI.cpp" line="1239"/>
|
||||
<source>'%1' paused.</source>
|
||||
<comment>xxx.avi paused.</comment>
|
||||
<translation>'%1' е в пауза.</translation>
|
||||
|
@ -2065,30 +2075,30 @@ Please close the other one first.</source>
|
|||
<translation type="obsolete">Свързване...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1254"/>
|
||||
<location filename="../GUI.cpp" line="1272"/>
|
||||
<source>All downloads were resumed.</source>
|
||||
<translation>Всички сваляния са възстановени.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1280"/>
|
||||
<location filename="../GUI.cpp" line="1298"/>
|
||||
<source>'%1' resumed.</source>
|
||||
<comment>e.g: xxx.avi resumed.</comment>
|
||||
<translation>'%1' бе възстановен.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="355"/>
|
||||
<location filename="../GUI.cpp" line="367"/>
|
||||
<source>%1 has finished downloading.</source>
|
||||
<comment>e.g: xxx.avi has finished downloading.</comment>
|
||||
<translation>'%1' завърши свалянето.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="364"/>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<source>I/O Error</source>
|
||||
<comment>i.e: Input/Output Error</comment>
|
||||
<translation>В/И Грешка</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="364"/>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<source>An error occured when trying to read or write %1. The disk is probably full, download has been paused</source>
|
||||
<comment>e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused</comment>
|
||||
<translation>Намерена грешка при четене или записване на %1. Вероятно диска е пълен, свалянето е в пауза</translation>
|
||||
|
@ -2100,23 +2110,23 @@ Please close the other one first.</source>
|
|||
<translation type="obsolete">Намерена грешка (пълен диск?), '%1' е в пауза.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>Connection Status:</source>
|
||||
<translation>Състояние на връзката:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1355"/>
|
||||
<location filename="../GUI.cpp" line="1373"/>
|
||||
<source>Online</source>
|
||||
<translation>Свързан</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>Firewalled?</source>
|
||||
<comment>i.e: Behind a firewall/router?</comment>
|
||||
<translation>Проблем с Firewall-а?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>No incoming connections...</source>
|
||||
<translation>Няма входящи връзки...</translation>
|
||||
</message>
|
||||
|
@ -2148,194 +2158,194 @@ Please close the other one first.</source>
|
|||
<translation type="obsolete">Сваляне на '%1', моля изчакайте...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<location filename="../GUI.cpp" line="388"/>
|
||||
<source>An error occured (full disk?), '%1' paused.</source>
|
||||
<comment>e.g: An error occured (full disk?), 'xxx.avi' paused.</comment>
|
||||
<translation>Намерена грешка (пълен диск?), '%1' е в пауза.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="165"/>
|
||||
<location filename="../GUI.cpp" line="153"/>
|
||||
<source>Search</source>
|
||||
<translation>Търси</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="169"/>
|
||||
<location filename="../GUI.cpp" line="279"/>
|
||||
<source>RSS</source>
|
||||
<translation>RSS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="935"/>
|
||||
<location filename="../GUI.cpp" line="947"/>
|
||||
<source>qBittorrent is bind to port: %1</source>
|
||||
<comment>e.g: qBittorrent is bind to port: 1666</comment>
|
||||
<translation>qBittorrent е свързан с порт: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1036"/>
|
||||
<location filename="../GUI.cpp" line="1048"/>
|
||||
<source>DHT support [ON], port: %1</source>
|
||||
<translation>DHT поддръжка [ВКЛ], порт: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1042"/>
|
||||
<location filename="../GUI.cpp" line="1054"/>
|
||||
<source>DHT support [OFF]</source>
|
||||
<translation>DHT поддръжка [ИЗКЛ]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1046"/>
|
||||
<location filename="../GUI.cpp" line="1058"/>
|
||||
<source>PeX support [ON]</source>
|
||||
<translation>PeX поддръжка [ВКЛ]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1050"/>
|
||||
<location filename="../GUI.cpp" line="1062"/>
|
||||
<source>PeX support [OFF]</source>
|
||||
<translation>PeX поддръжка [ИЗКЛ]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="612"/>
|
||||
<location filename="../GUI.cpp" line="624"/>
|
||||
<source>The download list is not empty.
|
||||
Are you sure you want to quit qBittorrent?</source>
|
||||
<translation>Листата за сваляне не е празна.
|
||||
Сигурни ли сте че искате да напуснете qBittorrent?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1104"/>
|
||||
<location filename="../GUI.cpp" line="1122"/>
|
||||
<source>Downloads</source>
|
||||
<translation>Сваляне</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="825"/>
|
||||
<location filename="../GUI.cpp" line="837"/>
|
||||
<source>Are you sure you want to delete the selected item(s) in finished list?</source>
|
||||
<translation>Сигурни ли сте че искате да изтриете избраните файлове от списъка на завършените сваляния?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="957"/>
|
||||
<location filename="../GUI.cpp" line="969"/>
|
||||
<source>UPnP support [ON]</source>
|
||||
<translation>UPnP поддръжка [ВКЛ]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1070"/>
|
||||
<location filename="../GUI.cpp" line="1082"/>
|
||||
<source>Encryption support [ON]</source>
|
||||
<translation>Поддръжка кодиране [ВКЛ]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1075"/>
|
||||
<location filename="../GUI.cpp" line="1087"/>
|
||||
<source>Encryption support [FORCED]</source>
|
||||
<translation>Поддръжка кодиране [ФОРСИРАНА]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1080"/>
|
||||
<location filename="../GUI.cpp" line="1092"/>
|
||||
<source>Encryption support [OFF]</source>
|
||||
<translation>Поддръжка кодиране [ИЗКЛ]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="383"/>
|
||||
<location filename="../GUI.cpp" line="395"/>
|
||||
<source>Alt+1</source>
|
||||
<comment>shortcut to switch to first tab</comment>
|
||||
<translation>Alt+1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="385"/>
|
||||
<location filename="../GUI.cpp" line="397"/>
|
||||
<source>Alt+2</source>
|
||||
<comment>shortcut to switch to second tab</comment>
|
||||
<translation>Alt+2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="391"/>
|
||||
<location filename="../GUI.cpp" line="403"/>
|
||||
<source>Alt+4</source>
|
||||
<comment>shortcut to switch to fourth tab</comment>
|
||||
<translation>Alt+4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="459"/>
|
||||
<location filename="../GUI.cpp" line="471"/>
|
||||
<source>Url download error</source>
|
||||
<translation>Грешка при сваляне от Url</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="459"/>
|
||||
<location filename="../GUI.cpp" line="471"/>
|
||||
<source>Couldn't download file at url: %1, reason: %2.</source>
|
||||
<translation>Невъзможно сваляне на файл от url: %1, причина: %2.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="758"/>
|
||||
<location filename="../GUI.cpp" line="770"/>
|
||||
<source>Are you sure you want to delete the selected item(s) from download list and from hard drive?</source>
|
||||
<translation>Сигурни ли сте че искате да изтриете избраните от списъка за сваляне или от твърдия диск?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="765"/>
|
||||
<location filename="../GUI.cpp" line="777"/>
|
||||
<source>Are you sure you want to delete the selected item(s) from finished list and from hard drive?</source>
|
||||
<translation>Сигурни ли сте че искате да изтриете избраните от списъка на свалените или от твърдия диск?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="779"/>
|
||||
<location filename="../GUI.cpp" line="791"/>
|
||||
<source>'%1' was removed permanently.</source>
|
||||
<comment>'xxx.avi' was removed permanently.</comment>
|
||||
<translation>'%1' бе премахнат завинаги.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="387"/>
|
||||
<location filename="../GUI.cpp" line="399"/>
|
||||
<source>Alt+3</source>
|
||||
<comment>shortcut to switch to third tab</comment>
|
||||
<translation>Alt+3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="389"/>
|
||||
<location filename="../GUI.cpp" line="401"/>
|
||||
<source>Ctrl+F</source>
|
||||
<comment>shortcut to switch to search tab</comment>
|
||||
<translation>Ctrl+F</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="960"/>
|
||||
<location filename="../GUI.cpp" line="972"/>
|
||||
<source>UPnP support [OFF]</source>
|
||||
<translation>UPnP поддръжка [ИЗКЛ] </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="965"/>
|
||||
<location filename="../GUI.cpp" line="977"/>
|
||||
<source>NAT-PMP support [ON]</source>
|
||||
<translation>NAT-PMP поддръжка [ВКЛ]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="968"/>
|
||||
<location filename="../GUI.cpp" line="980"/>
|
||||
<source>NAT-PMP support [OFF]</source>
|
||||
<translation>NAT-PMP поддръжка [ИЗКЛ]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1055"/>
|
||||
<location filename="../GUI.cpp" line="1067"/>
|
||||
<source>Local Peer Discovery [ON]</source>
|
||||
<translation>Търсене на локални връзки [ВКЛ]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1058"/>
|
||||
<location filename="../GUI.cpp" line="1070"/>
|
||||
<source>Local Peer Discovery support [OFF]</source>
|
||||
<translation>Търсене на локални връзки [ИЗКЛ]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="785"/>
|
||||
<location filename="../GUI.cpp" line="797"/>
|
||||
<source>'%1' was removed because its ratio reached the maximum value you set.</source>
|
||||
<comment>%1 is a file name</comment>
|
||||
<translation>'%1' бе премахнат защото съотношението му надвишава определеното.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1321"/>
|
||||
<location filename="../GUI.cpp" line="1339"/>
|
||||
<source>qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)</source>
|
||||
<comment>%1 is qBittorrent version</comment>
|
||||
<translation>qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1306"/>
|
||||
<location filename="../GUI.cpp" line="1324"/>
|
||||
<source>DL: %1 KiB/s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1307"/>
|
||||
<location filename="../GUI.cpp" line="1325"/>
|
||||
<source>UP: %1 KiB/s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="291"/>
|
||||
<location filename="../GUI.cpp" line="303"/>
|
||||
<source>Ratio: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="293"/>
|
||||
<location filename="../GUI.cpp" line="305"/>
|
||||
<source>DHT: %1 nodes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -4034,9 +4044,9 @@ However, those plugins were disabled.</source>
|
|||
<translation type="obsolete"> ч</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../misc.h" line="322"/>
|
||||
<location filename="../misc.h" line="303"/>
|
||||
<source>Unknown</source>
|
||||
<translation>Неизвестно</translation>
|
||||
<translation type="obsolete">Неизвестно</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../misc.h" line="110"/>
|
||||
|
@ -4183,12 +4193,12 @@ However, those plugins were disabled.</source>
|
|||
<translation type="obsolete">Този IP е невалиден.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="774"/>
|
||||
<location filename="../options_imp.cpp" line="787"/>
|
||||
<source>Options were saved successfully.</source>
|
||||
<translation>Опциите бяха съхранени успешно.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1052"/>
|
||||
<location filename="../options_imp.cpp" line="1075"/>
|
||||
<source>Choose scan directory</source>
|
||||
<translation>Изберете директория за сканиране</translation>
|
||||
</message>
|
||||
|
@ -4198,7 +4208,7 @@ However, those plugins were disabled.</source>
|
|||
<translation type="obsolete">Изберете ipfilter.dat файл </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1067"/>
|
||||
<location filename="../options_imp.cpp" line="1090"/>
|
||||
<source>Choose a save directory</source>
|
||||
<translation>Изберете директория за съхранение</translation>
|
||||
</message>
|
||||
|
@ -4214,12 +4224,12 @@ However, those plugins were disabled.</source>
|
|||
<translation type="obsolete">Не мога да отворя %1 в режим четене.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1059"/>
|
||||
<location filename="../options_imp.cpp" line="1082"/>
|
||||
<source>Choose an ip filter file</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1059"/>
|
||||
<location filename="../options_imp.cpp" line="1082"/>
|
||||
<source>Filters</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
Binary file not shown.
|
@ -387,12 +387,12 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">0.0.0.0</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1800"/>
|
||||
<location filename="../options.ui" line="1819"/>
|
||||
<source>Port:</source>
|
||||
<translation>Port:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1839"/>
|
||||
<location filename="../options.ui" line="1858"/>
|
||||
<source>Authentication</source>
|
||||
<translation>Autentificació</translation>
|
||||
</message>
|
||||
|
@ -402,7 +402,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">Nom usuari:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1860"/>
|
||||
<location filename="../options.ui" line="1879"/>
|
||||
<source>Password:</source>
|
||||
<translation>Contrasenya:</translation>
|
||||
</message>
|
||||
|
@ -861,7 +861,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1850"/>
|
||||
<location filename="../options.ui" line="1869"/>
|
||||
<source>Username:</source>
|
||||
<translation type="unfinished">Usuari:</translation>
|
||||
</message>
|
||||
|
@ -946,17 +946,17 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1660"/>
|
||||
<location filename="../options.ui" line="1676"/>
|
||||
<source>RSS feeds refresh interval:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1680"/>
|
||||
<location filename="../options.ui" line="1696"/>
|
||||
<source>minutes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1704"/>
|
||||
<location filename="../options.ui" line="1720"/>
|
||||
<source>Maximum number of articles per feed:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -1027,20 +1027,30 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1765"/>
|
||||
<location filename="../options.ui" line="1784"/>
|
||||
<source>Web UI</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1778"/>
|
||||
<location filename="../options.ui" line="1797"/>
|
||||
<source>Enable Web User Interface</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1791"/>
|
||||
<location filename="../options.ui" line="1810"/>
|
||||
<source>HTTP Server</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1629"/>
|
||||
<source>Enable RSS support</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1639"/>
|
||||
<source>RSS settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DownloadingTorrents</name>
|
||||
|
@ -1301,7 +1311,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete"> iniciat.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1341"/>
|
||||
<location filename="../GUI.cpp" line="1359"/>
|
||||
<source>qBittorrent</source>
|
||||
<translation type="unfinished">qBittorrent</translation>
|
||||
</message>
|
||||
|
@ -1321,12 +1331,12 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">Vel. Pujada:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="716"/>
|
||||
<location filename="../GUI.cpp" line="728"/>
|
||||
<source>Open Torrent Files</source>
|
||||
<translation>Arxius Torrent oberts</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="717"/>
|
||||
<location filename="../GUI.cpp" line="729"/>
|
||||
<source>Torrent Files</source>
|
||||
<translation>Arxius Torrent</translation>
|
||||
</message>
|
||||
|
@ -1372,7 +1382,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">Aquest arxiu està corrupte o no es un arxiu torrent.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="824"/>
|
||||
<location filename="../GUI.cpp" line="836"/>
|
||||
<source>Are you sure? -- qBittorrent</source>
|
||||
<translation>Estàs segur? -- qBittorrent</translation>
|
||||
</message>
|
||||
|
@ -1382,12 +1392,12 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">Estàs segur de que vols buidar la llista de descàrregues?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="826"/>
|
||||
<location filename="../GUI.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation>&Yes</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="826"/>
|
||||
<location filename="../GUI.cpp" line="838"/>
|
||||
<source>&No</source>
|
||||
<translation>&No</translation>
|
||||
</message>
|
||||
|
@ -1397,7 +1407,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">Llista de descàrregues buidada.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="818"/>
|
||||
<location filename="../GUI.cpp" line="830"/>
|
||||
<source>Are you sure you want to delete the selected item(s) in download list?</source>
|
||||
<translation>Estàs segur de que vols esborrar les descàrregues seleccionades?</translation>
|
||||
</message>
|
||||
|
@ -1481,7 +1491,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">/s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1109"/>
|
||||
<location filename="../GUI.cpp" line="1127"/>
|
||||
<source>Finished</source>
|
||||
<translation type="unfinished">Finalitzat</translation>
|
||||
</message>
|
||||
|
@ -1816,7 +1826,7 @@ Si et plau tanca l'altre primer.</translation>
|
|||
<translation type="obsolete">Estàs segur que vols esborrar els objectes seleccionats de la llista de descàrregues i del disc dur?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="355"/>
|
||||
<location filename="../GUI.cpp" line="367"/>
|
||||
<source>Download finished</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -1832,23 +1842,23 @@ Si et plau tanca l'altre primer.</translation>
|
|||
<translation type="obsolete">Motor de Busqueda</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="908"/>
|
||||
<location filename="../GUI.cpp" line="920"/>
|
||||
<source>qBittorrent %1</source>
|
||||
<comment>e.g: qBittorrent v0.x</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>Connection status:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>Offline</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>No peers found...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -1901,13 +1911,13 @@ Si et plau tanca l'altre primer.</translation>
|
|||
<translation type="obsolete">Leechers</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1344"/>
|
||||
<location filename="../GUI.cpp" line="1362"/>
|
||||
<source>DL speed: %1 KiB/s</source>
|
||||
<comment>e.g: Download speed: 10 KiB/s</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1347"/>
|
||||
<location filename="../GUI.cpp" line="1365"/>
|
||||
<source>UP speed: %1 KiB/s</source>
|
||||
<comment>e.g: Upload speed: 10 KiB/s</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
|
@ -1925,12 +1935,12 @@ Si et plau tanca l'altre primer.</translation>
|
|||
<translation type="obsolete">Validant...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="611"/>
|
||||
<location filename="../GUI.cpp" line="623"/>
|
||||
<source>Are you sure you want to quit?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="839"/>
|
||||
<location filename="../GUI.cpp" line="851"/>
|
||||
<source>'%1' was removed.</source>
|
||||
<comment>'xxx.avi' was removed.</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
|
@ -1942,12 +1952,12 @@ Si et plau tanca l'altre primer.</translation>
|
|||
<translation type="obsolete">Res</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1195"/>
|
||||
<location filename="../GUI.cpp" line="1213"/>
|
||||
<source>All downloads were paused.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1221"/>
|
||||
<location filename="../GUI.cpp" line="1239"/>
|
||||
<source>'%1' paused.</source>
|
||||
<comment>xxx.avi paused.</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
|
@ -1959,52 +1969,52 @@ Si et plau tanca l'altre primer.</translation>
|
|||
<translation type="obsolete">Conectant...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1254"/>
|
||||
<location filename="../GUI.cpp" line="1272"/>
|
||||
<source>All downloads were resumed.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1280"/>
|
||||
<location filename="../GUI.cpp" line="1298"/>
|
||||
<source>'%1' resumed.</source>
|
||||
<comment>e.g: xxx.avi resumed.</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="355"/>
|
||||
<location filename="../GUI.cpp" line="367"/>
|
||||
<source>%1 has finished downloading.</source>
|
||||
<comment>e.g: xxx.avi has finished downloading.</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="364"/>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<source>I/O Error</source>
|
||||
<comment>i.e: Input/Output Error</comment>
|
||||
<translation type="unfinished">I/O Error</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="364"/>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<source>An error occured when trying to read or write %1. The disk is probably full, download has been paused</source>
|
||||
<comment>e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>Connection Status:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1355"/>
|
||||
<location filename="../GUI.cpp" line="1373"/>
|
||||
<source>Online</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>Firewalled?</source>
|
||||
<comment>i.e: Behind a firewall/router?</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>No incoming connections...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -2015,193 +2025,193 @@ Si et plau tanca l'altre primer.</translation>
|
|||
<translation type="obsolete">Resultats</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<location filename="../GUI.cpp" line="388"/>
|
||||
<source>An error occured (full disk?), '%1' paused.</source>
|
||||
<comment>e.g: An error occured (full disk?), 'xxx.avi' paused.</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="165"/>
|
||||
<location filename="../GUI.cpp" line="153"/>
|
||||
<source>Search</source>
|
||||
<translation type="unfinished">Cercar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="169"/>
|
||||
<location filename="../GUI.cpp" line="279"/>
|
||||
<source>RSS</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="935"/>
|
||||
<location filename="../GUI.cpp" line="947"/>
|
||||
<source>qBittorrent is bind to port: %1</source>
|
||||
<comment>e.g: qBittorrent is bind to port: 1666</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1036"/>
|
||||
<location filename="../GUI.cpp" line="1048"/>
|
||||
<source>DHT support [ON], port: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1042"/>
|
||||
<location filename="../GUI.cpp" line="1054"/>
|
||||
<source>DHT support [OFF]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1046"/>
|
||||
<location filename="../GUI.cpp" line="1058"/>
|
||||
<source>PeX support [ON]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1050"/>
|
||||
<location filename="../GUI.cpp" line="1062"/>
|
||||
<source>PeX support [OFF]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="612"/>
|
||||
<location filename="../GUI.cpp" line="624"/>
|
||||
<source>The download list is not empty.
|
||||
Are you sure you want to quit qBittorrent?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1104"/>
|
||||
<location filename="../GUI.cpp" line="1122"/>
|
||||
<source>Downloads</source>
|
||||
<translation type="unfinished">Descarregues</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="825"/>
|
||||
<location filename="../GUI.cpp" line="837"/>
|
||||
<source>Are you sure you want to delete the selected item(s) in finished list?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="957"/>
|
||||
<location filename="../GUI.cpp" line="969"/>
|
||||
<source>UPnP support [ON]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1070"/>
|
||||
<location filename="../GUI.cpp" line="1082"/>
|
||||
<source>Encryption support [ON]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1075"/>
|
||||
<location filename="../GUI.cpp" line="1087"/>
|
||||
<source>Encryption support [FORCED]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1080"/>
|
||||
<location filename="../GUI.cpp" line="1092"/>
|
||||
<source>Encryption support [OFF]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="383"/>
|
||||
<location filename="../GUI.cpp" line="395"/>
|
||||
<source>Alt+1</source>
|
||||
<comment>shortcut to switch to first tab</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="385"/>
|
||||
<location filename="../GUI.cpp" line="397"/>
|
||||
<source>Alt+2</source>
|
||||
<comment>shortcut to switch to second tab</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="391"/>
|
||||
<location filename="../GUI.cpp" line="403"/>
|
||||
<source>Alt+4</source>
|
||||
<comment>shortcut to switch to fourth tab</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="459"/>
|
||||
<location filename="../GUI.cpp" line="471"/>
|
||||
<source>Url download error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="459"/>
|
||||
<location filename="../GUI.cpp" line="471"/>
|
||||
<source>Couldn't download file at url: %1, reason: %2.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="758"/>
|
||||
<location filename="../GUI.cpp" line="770"/>
|
||||
<source>Are you sure you want to delete the selected item(s) from download list and from hard drive?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="765"/>
|
||||
<location filename="../GUI.cpp" line="777"/>
|
||||
<source>Are you sure you want to delete the selected item(s) from finished list and from hard drive?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="779"/>
|
||||
<location filename="../GUI.cpp" line="791"/>
|
||||
<source>'%1' was removed permanently.</source>
|
||||
<comment>'xxx.avi' was removed permanently.</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="387"/>
|
||||
<location filename="../GUI.cpp" line="399"/>
|
||||
<source>Alt+3</source>
|
||||
<comment>shortcut to switch to third tab</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="389"/>
|
||||
<location filename="../GUI.cpp" line="401"/>
|
||||
<source>Ctrl+F</source>
|
||||
<comment>shortcut to switch to search tab</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="960"/>
|
||||
<location filename="../GUI.cpp" line="972"/>
|
||||
<source>UPnP support [OFF]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="965"/>
|
||||
<location filename="../GUI.cpp" line="977"/>
|
||||
<source>NAT-PMP support [ON]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="968"/>
|
||||
<location filename="../GUI.cpp" line="980"/>
|
||||
<source>NAT-PMP support [OFF]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1055"/>
|
||||
<location filename="../GUI.cpp" line="1067"/>
|
||||
<source>Local Peer Discovery [ON]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1058"/>
|
||||
<location filename="../GUI.cpp" line="1070"/>
|
||||
<source>Local Peer Discovery support [OFF]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="785"/>
|
||||
<location filename="../GUI.cpp" line="797"/>
|
||||
<source>'%1' was removed because its ratio reached the maximum value you set.</source>
|
||||
<comment>%1 is a file name</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1321"/>
|
||||
<location filename="../GUI.cpp" line="1339"/>
|
||||
<source>qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)</source>
|
||||
<comment>%1 is qBittorrent version</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1306"/>
|
||||
<location filename="../GUI.cpp" line="1324"/>
|
||||
<source>DL: %1 KiB/s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1307"/>
|
||||
<location filename="../GUI.cpp" line="1325"/>
|
||||
<source>UP: %1 KiB/s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="291"/>
|
||||
<location filename="../GUI.cpp" line="303"/>
|
||||
<source>Ratio: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="293"/>
|
||||
<location filename="../GUI.cpp" line="305"/>
|
||||
<source>DHT: %1 nodes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -3818,9 +3828,9 @@ However, those plugins were disabled.</source>
|
|||
<translation type="obsolete">d </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../misc.h" line="322"/>
|
||||
<location filename="../misc.h" line="303"/>
|
||||
<source>Unknown</source>
|
||||
<translation>Desconegut</translation>
|
||||
<translation type="obsolete">Desconegut</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../misc.h" line="110"/>
|
||||
|
@ -3967,17 +3977,17 @@ However, those plugins were disabled.</source>
|
|||
<translation type="obsolete">Aquesta IP es invalida.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="774"/>
|
||||
<location filename="../options_imp.cpp" line="787"/>
|
||||
<source>Options were saved successfully.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1052"/>
|
||||
<location filename="../options_imp.cpp" line="1075"/>
|
||||
<source>Choose scan directory</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1067"/>
|
||||
<location filename="../options_imp.cpp" line="1090"/>
|
||||
<source>Choose a save directory</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -3988,12 +3998,12 @@ However, those plugins were disabled.</source>
|
|||
<translation type="obsolete">I/O Error</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1059"/>
|
||||
<location filename="../options_imp.cpp" line="1082"/>
|
||||
<source>Choose an ip filter file</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1059"/>
|
||||
<location filename="../options_imp.cpp" line="1082"/>
|
||||
<source>Filters</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
Binary file not shown.
|
@ -221,7 +221,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">0.0.0.0</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1800"/>
|
||||
<location filename="../options.ui" line="1819"/>
|
||||
<source>Port:</source>
|
||||
<translation>Port:</translation>
|
||||
</message>
|
||||
|
@ -231,7 +231,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">Proxy serveren kræver godkendelse</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1839"/>
|
||||
<location filename="../options.ui" line="1858"/>
|
||||
<source>Authentication</source>
|
||||
<translation>Godkendelse</translation>
|
||||
</message>
|
||||
|
@ -241,7 +241,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">Brugernavn:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1860"/>
|
||||
<location filename="../options.ui" line="1879"/>
|
||||
<source>Password:</source>
|
||||
<translation>Kodeord:</translation>
|
||||
</message>
|
||||
|
@ -690,7 +690,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1850"/>
|
||||
<location filename="../options.ui" line="1869"/>
|
||||
<source>Username:</source>
|
||||
<translation type="unfinished">Brugernavn:</translation>
|
||||
</message>
|
||||
|
@ -775,17 +775,17 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1660"/>
|
||||
<location filename="../options.ui" line="1676"/>
|
||||
<source>RSS feeds refresh interval:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1680"/>
|
||||
<location filename="../options.ui" line="1696"/>
|
||||
<source>minutes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1704"/>
|
||||
<location filename="../options.ui" line="1720"/>
|
||||
<source>Maximum number of articles per feed:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -856,20 +856,30 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1765"/>
|
||||
<location filename="../options.ui" line="1784"/>
|
||||
<source>Web UI</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1778"/>
|
||||
<location filename="../options.ui" line="1797"/>
|
||||
<source>Enable Web User Interface</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1791"/>
|
||||
<location filename="../options.ui" line="1810"/>
|
||||
<source>HTTP Server</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1629"/>
|
||||
<source>Enable RSS support</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1639"/>
|
||||
<source>RSS settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DownloadingTorrents</name>
|
||||
|
@ -1121,7 +1131,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<context>
|
||||
<name>GUI</name>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="716"/>
|
||||
<location filename="../GUI.cpp" line="728"/>
|
||||
<source>Open Torrent Files</source>
|
||||
<translation>Åbn Torrent Filer</translation>
|
||||
</message>
|
||||
|
@ -1131,17 +1141,17 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">Denne fil er enten korrupt eller ikke en torrent.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="826"/>
|
||||
<location filename="../GUI.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation>&Ja</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="826"/>
|
||||
<location filename="../GUI.cpp" line="838"/>
|
||||
<source>&No</source>
|
||||
<translation>&Nej</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="818"/>
|
||||
<location filename="../GUI.cpp" line="830"/>
|
||||
<source>Are you sure you want to delete the selected item(s) in download list?</source>
|
||||
<translation>Er du sikker på at du vil slette det markerede fra download listen?</translation>
|
||||
</message>
|
||||
|
@ -1156,12 +1166,12 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">Downloader...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="717"/>
|
||||
<location filename="../GUI.cpp" line="729"/>
|
||||
<source>Torrent Files</source>
|
||||
<translation>Torrent Filer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="824"/>
|
||||
<location filename="../GUI.cpp" line="836"/>
|
||||
<source>Are you sure? -- qBittorrent</source>
|
||||
<translation>Er du sikker? -- qBittorrent</translation>
|
||||
</message>
|
||||
|
@ -1269,7 +1279,7 @@ Luk venglist denne først.</translation>
|
|||
<translation type="obsolete">Overførsler</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="355"/>
|
||||
<location filename="../GUI.cpp" line="367"/>
|
||||
<source>Download finished</source>
|
||||
<translation>Download afsluttet</translation>
|
||||
</message>
|
||||
|
@ -1289,23 +1299,23 @@ Luk venglist denne først.</translation>
|
|||
<translation type="obsolete">Er du sikker på at du vil slette de markerede elementer i download listen og på harddisken?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="908"/>
|
||||
<location filename="../GUI.cpp" line="920"/>
|
||||
<source>qBittorrent %1</source>
|
||||
<comment>e.g: qBittorrent v0.x</comment>
|
||||
<translation>qBittorrent %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>Connection status:</source>
|
||||
<translation>Forbindelses status:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>Offline</source>
|
||||
<translation>Offline</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>No peers found...</source>
|
||||
<translation>Ingen kilder fundet...</translation>
|
||||
</message>
|
||||
|
@ -1370,18 +1380,18 @@ Luk venglist denne først.</translation>
|
|||
<translation type="obsolete">qBittorrent %1 startet.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1341"/>
|
||||
<location filename="../GUI.cpp" line="1359"/>
|
||||
<source>qBittorrent</source>
|
||||
<translation>qBittorrent</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1344"/>
|
||||
<location filename="../GUI.cpp" line="1362"/>
|
||||
<source>DL speed: %1 KiB/s</source>
|
||||
<comment>e.g: Download speed: 10 KiB/s</comment>
|
||||
<translation>DL hastighed: %1 KB/s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1347"/>
|
||||
<location filename="../GUI.cpp" line="1365"/>
|
||||
<source>UP speed: %1 KiB/s</source>
|
||||
<comment>e.g: Upload speed: 10 KiB/s</comment>
|
||||
<translation>UP hastighed: %1 KB/s</translation>
|
||||
|
@ -1405,12 +1415,12 @@ Luk venglist denne først.</translation>
|
|||
<translation type="obsolete">Gået i stå</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="611"/>
|
||||
<location filename="../GUI.cpp" line="623"/>
|
||||
<source>Are you sure you want to quit?</source>
|
||||
<translation>Er du sikker på at du vil afslutte?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="839"/>
|
||||
<location filename="../GUI.cpp" line="851"/>
|
||||
<source>'%1' was removed.</source>
|
||||
<comment>'xxx.avi' was removed.</comment>
|
||||
<translation>'%1' blev fjernet.</translation>
|
||||
|
@ -1452,12 +1462,12 @@ Luk venglist denne først.</translation>
|
|||
<translation type="obsolete">Lytter på port: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1195"/>
|
||||
<location filename="../GUI.cpp" line="1213"/>
|
||||
<source>All downloads were paused.</source>
|
||||
<translation>Alle downloads blev sat på pause.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1221"/>
|
||||
<location filename="../GUI.cpp" line="1239"/>
|
||||
<source>'%1' paused.</source>
|
||||
<comment>xxx.avi paused.</comment>
|
||||
<translation>'%1' blev sat på pause.</translation>
|
||||
|
@ -1469,52 +1479,52 @@ Luk venglist denne først.</translation>
|
|||
<translation type="obsolete">Forbinder...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1254"/>
|
||||
<location filename="../GUI.cpp" line="1272"/>
|
||||
<source>All downloads were resumed.</source>
|
||||
<translation>Alle downloads fortsættes.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1280"/>
|
||||
<location filename="../GUI.cpp" line="1298"/>
|
||||
<source>'%1' resumed.</source>
|
||||
<comment>e.g: xxx.avi resumed.</comment>
|
||||
<translation>'%1' fortsat.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="355"/>
|
||||
<location filename="../GUI.cpp" line="367"/>
|
||||
<source>%1 has finished downloading.</source>
|
||||
<comment>e.g: xxx.avi has finished downloading.</comment>
|
||||
<translation>%1 er hentet færdig.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="364"/>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<source>I/O Error</source>
|
||||
<comment>i.e: Input/Output Error</comment>
|
||||
<translation>I/O Fejl</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="364"/>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<source>An error occured when trying to read or write %1. The disk is probably full, download has been paused</source>
|
||||
<comment>e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused</comment>
|
||||
<translation>Der opstod en fejl under forsøget på at skrive %1. Disken er måske fuld, downloaden er sat på pause</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>Connection Status:</source>
|
||||
<translation>Forbindelses Status:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1355"/>
|
||||
<location filename="../GUI.cpp" line="1373"/>
|
||||
<source>Online</source>
|
||||
<translation>Online</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>Firewalled?</source>
|
||||
<comment>i.e: Behind a firewall/router?</comment>
|
||||
<translation>Bag en Firewall?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>No incoming connections...</source>
|
||||
<translation>Ingen indkommende forbindelser...</translation>
|
||||
</message>
|
||||
|
@ -1546,198 +1556,198 @@ Luk venglist denne først.</translation>
|
|||
<translation type="obsolete">Downloader '%1', vent venligst...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<location filename="../GUI.cpp" line="388"/>
|
||||
<source>An error occured (full disk?), '%1' paused.</source>
|
||||
<comment>e.g: An error occured (full disk?), 'xxx.avi' paused.</comment>
|
||||
<translation>Der opstod en fejl (fuld disk?), '%1' sat på pause.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="165"/>
|
||||
<location filename="../GUI.cpp" line="153"/>
|
||||
<source>Search</source>
|
||||
<translation type="unfinished">Søg</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="169"/>
|
||||
<location filename="../GUI.cpp" line="279"/>
|
||||
<source>RSS</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="935"/>
|
||||
<location filename="../GUI.cpp" line="947"/>
|
||||
<source>qBittorrent is bind to port: %1</source>
|
||||
<comment>e.g: qBittorrent is bind to port: 1666</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1036"/>
|
||||
<location filename="../GUI.cpp" line="1048"/>
|
||||
<source>DHT support [ON], port: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1042"/>
|
||||
<location filename="../GUI.cpp" line="1054"/>
|
||||
<source>DHT support [OFF]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1046"/>
|
||||
<location filename="../GUI.cpp" line="1058"/>
|
||||
<source>PeX support [ON]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1050"/>
|
||||
<location filename="../GUI.cpp" line="1062"/>
|
||||
<source>PeX support [OFF]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="612"/>
|
||||
<location filename="../GUI.cpp" line="624"/>
|
||||
<source>The download list is not empty.
|
||||
Are you sure you want to quit qBittorrent?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1104"/>
|
||||
<location filename="../GUI.cpp" line="1122"/>
|
||||
<source>Downloads</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1109"/>
|
||||
<location filename="../GUI.cpp" line="1127"/>
|
||||
<source>Finished</source>
|
||||
<translation type="unfinished">Færdig</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="825"/>
|
||||
<location filename="../GUI.cpp" line="837"/>
|
||||
<source>Are you sure you want to delete the selected item(s) in finished list?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="957"/>
|
||||
<location filename="../GUI.cpp" line="969"/>
|
||||
<source>UPnP support [ON]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1070"/>
|
||||
<location filename="../GUI.cpp" line="1082"/>
|
||||
<source>Encryption support [ON]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1075"/>
|
||||
<location filename="../GUI.cpp" line="1087"/>
|
||||
<source>Encryption support [FORCED]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1080"/>
|
||||
<location filename="../GUI.cpp" line="1092"/>
|
||||
<source>Encryption support [OFF]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="383"/>
|
||||
<location filename="../GUI.cpp" line="395"/>
|
||||
<source>Alt+1</source>
|
||||
<comment>shortcut to switch to first tab</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="385"/>
|
||||
<location filename="../GUI.cpp" line="397"/>
|
||||
<source>Alt+2</source>
|
||||
<comment>shortcut to switch to second tab</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="391"/>
|
||||
<location filename="../GUI.cpp" line="403"/>
|
||||
<source>Alt+4</source>
|
||||
<comment>shortcut to switch to fourth tab</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="459"/>
|
||||
<location filename="../GUI.cpp" line="471"/>
|
||||
<source>Url download error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="459"/>
|
||||
<location filename="../GUI.cpp" line="471"/>
|
||||
<source>Couldn't download file at url: %1, reason: %2.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="758"/>
|
||||
<location filename="../GUI.cpp" line="770"/>
|
||||
<source>Are you sure you want to delete the selected item(s) from download list and from hard drive?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="765"/>
|
||||
<location filename="../GUI.cpp" line="777"/>
|
||||
<source>Are you sure you want to delete the selected item(s) from finished list and from hard drive?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="779"/>
|
||||
<location filename="../GUI.cpp" line="791"/>
|
||||
<source>'%1' was removed permanently.</source>
|
||||
<comment>'xxx.avi' was removed permanently.</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="387"/>
|
||||
<location filename="../GUI.cpp" line="399"/>
|
||||
<source>Alt+3</source>
|
||||
<comment>shortcut to switch to third tab</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="389"/>
|
||||
<location filename="../GUI.cpp" line="401"/>
|
||||
<source>Ctrl+F</source>
|
||||
<comment>shortcut to switch to search tab</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="960"/>
|
||||
<location filename="../GUI.cpp" line="972"/>
|
||||
<source>UPnP support [OFF]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="965"/>
|
||||
<location filename="../GUI.cpp" line="977"/>
|
||||
<source>NAT-PMP support [ON]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="968"/>
|
||||
<location filename="../GUI.cpp" line="980"/>
|
||||
<source>NAT-PMP support [OFF]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1055"/>
|
||||
<location filename="../GUI.cpp" line="1067"/>
|
||||
<source>Local Peer Discovery [ON]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1058"/>
|
||||
<location filename="../GUI.cpp" line="1070"/>
|
||||
<source>Local Peer Discovery support [OFF]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="785"/>
|
||||
<location filename="../GUI.cpp" line="797"/>
|
||||
<source>'%1' was removed because its ratio reached the maximum value you set.</source>
|
||||
<comment>%1 is a file name</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1321"/>
|
||||
<location filename="../GUI.cpp" line="1339"/>
|
||||
<source>qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)</source>
|
||||
<comment>%1 is qBittorrent version</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1306"/>
|
||||
<location filename="../GUI.cpp" line="1324"/>
|
||||
<source>DL: %1 KiB/s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1307"/>
|
||||
<location filename="../GUI.cpp" line="1325"/>
|
||||
<source>UP: %1 KiB/s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="291"/>
|
||||
<location filename="../GUI.cpp" line="303"/>
|
||||
<source>Ratio: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="293"/>
|
||||
<location filename="../GUI.cpp" line="305"/>
|
||||
<source>DHT: %1 nodes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -3213,9 +3223,9 @@ However, those plugins were disabled.</source>
|
|||
<translation>TB</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../misc.h" line="322"/>
|
||||
<location filename="../misc.h" line="303"/>
|
||||
<source>Unknown</source>
|
||||
<translation>Ukendt</translation>
|
||||
<translation type="obsolete">Ukendt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../misc.h" line="110"/>
|
||||
|
@ -3302,12 +3312,12 @@ However, those plugins were disabled.</source>
|
|||
<translation type="obsolete">Denne IP er ugyldig.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="774"/>
|
||||
<location filename="../options_imp.cpp" line="787"/>
|
||||
<source>Options were saved successfully.</source>
|
||||
<translation>Indstillingerne blev gemt.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1052"/>
|
||||
<location filename="../options_imp.cpp" line="1075"/>
|
||||
<source>Choose scan directory</source>
|
||||
<translation>Vælg mappe til scan</translation>
|
||||
</message>
|
||||
|
@ -3317,7 +3327,7 @@ However, those plugins were disabled.</source>
|
|||
<translation type="obsolete">Vælg en ipfilter.dat fil</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1067"/>
|
||||
<location filename="../options_imp.cpp" line="1090"/>
|
||||
<source>Choose a save directory</source>
|
||||
<translation>Vælg en standart mappe</translation>
|
||||
</message>
|
||||
|
@ -3333,12 +3343,12 @@ However, those plugins were disabled.</source>
|
|||
<translation type="obsolete">Kunne ikke åbne %1 til læsning.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1059"/>
|
||||
<location filename="../options_imp.cpp" line="1082"/>
|
||||
<source>Choose an ip filter file</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1059"/>
|
||||
<location filename="../options_imp.cpp" line="1082"/>
|
||||
<source>Filters</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
Binary file not shown.
|
@ -280,7 +280,7 @@ Copyright (c) 2006 Christophe Dumez<br>
|
|||
<translation type="obsolete">0.0.0.0</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1800"/>
|
||||
<location filename="../options.ui" line="1819"/>
|
||||
<source>Port:</source>
|
||||
<translation>Port:</translation>
|
||||
</message>
|
||||
|
@ -290,7 +290,7 @@ Copyright (c) 2006 Christophe Dumez<br>
|
|||
<translation type="obsolete">Proxy Server benötigt Authentifizierung</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1839"/>
|
||||
<location filename="../options.ui" line="1858"/>
|
||||
<source>Authentication</source>
|
||||
<translation>Authentifizierung</translation>
|
||||
</message>
|
||||
|
@ -300,7 +300,7 @@ Copyright (c) 2006 Christophe Dumez<br>
|
|||
<translation type="obsolete">Benutzer:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1860"/>
|
||||
<location filename="../options.ui" line="1879"/>
|
||||
<source>Password:</source>
|
||||
<translation>Kennwort:</translation>
|
||||
</message>
|
||||
|
@ -874,7 +874,7 @@ Copyright (c) 2006 Christophe Dumez<br>
|
|||
<translation>Proxy:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1850"/>
|
||||
<location filename="../options.ui" line="1869"/>
|
||||
<source>Username:</source>
|
||||
<translation>Benutzername:</translation>
|
||||
</message>
|
||||
|
@ -959,17 +959,17 @@ Copyright (c) 2006 Christophe Dumez<br>
|
|||
<translation>RSS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1660"/>
|
||||
<location filename="../options.ui" line="1676"/>
|
||||
<source>RSS feeds refresh interval:</source>
|
||||
<translation>Aktualisierungsintervall für RSS Feeds:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1680"/>
|
||||
<location filename="../options.ui" line="1696"/>
|
||||
<source>minutes</source>
|
||||
<translation>Minuten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1704"/>
|
||||
<location filename="../options.ui" line="1720"/>
|
||||
<source>Maximum number of articles per feed:</source>
|
||||
<translation>Maximale Anzahl von Artikeln pro Feed:</translation>
|
||||
</message>
|
||||
|
@ -1040,20 +1040,30 @@ Copyright (c) 2006 Christophe Dumez<br>
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1765"/>
|
||||
<location filename="../options.ui" line="1784"/>
|
||||
<source>Web UI</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1778"/>
|
||||
<location filename="../options.ui" line="1797"/>
|
||||
<source>Enable Web User Interface</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1791"/>
|
||||
<location filename="../options.ui" line="1810"/>
|
||||
<source>HTTP Server</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1629"/>
|
||||
<source>Enable RSS support</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1639"/>
|
||||
<source>RSS settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DownloadingTorrents</name>
|
||||
|
@ -1320,7 +1330,7 @@ Copyright (c) 2006 Christophe Dumez<br>
|
|||
<translation type="obsolete"> :: By Christophe Dumez :: Copyright (c) 2006</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1341"/>
|
||||
<location filename="../GUI.cpp" line="1359"/>
|
||||
<source>qBittorrent</source>
|
||||
<translation>qBittorrent</translation>
|
||||
</message>
|
||||
|
@ -1345,12 +1355,12 @@ Copyright (c) 2006 Christophe Dumez<br>
|
|||
<translation type="obsolete">UP Geschwindigkeit:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="716"/>
|
||||
<location filename="../GUI.cpp" line="728"/>
|
||||
<source>Open Torrent Files</source>
|
||||
<translation>Öffne Torrent Dateien</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="717"/>
|
||||
<location filename="../GUI.cpp" line="729"/>
|
||||
<source>Torrent Files</source>
|
||||
<translation>Torrent Dateien</translation>
|
||||
</message>
|
||||
|
@ -1401,7 +1411,7 @@ Copyright (c) 2006 Christophe Dumez<br>
|
|||
<translation type="obsolete">Diese Datei ist entweder beschädigt, oder kein torrent.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="824"/>
|
||||
<location filename="../GUI.cpp" line="836"/>
|
||||
<source>Are you sure? -- qBittorrent</source>
|
||||
<translation>Sind Sie sicher? -- qBittorrent</translation>
|
||||
</message>
|
||||
|
@ -1411,12 +1421,12 @@ Copyright (c) 2006 Christophe Dumez<br>
|
|||
<translation type="obsolete">Wollen Sie wirklich alle Dateien aus der Download Liste löschen?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="826"/>
|
||||
<location filename="../GUI.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation>&Ja</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="826"/>
|
||||
<location filename="../GUI.cpp" line="838"/>
|
||||
<source>&No</source>
|
||||
<translation>&Nein</translation>
|
||||
</message>
|
||||
|
@ -1426,7 +1436,7 @@ Copyright (c) 2006 Christophe Dumez<br>
|
|||
<translation type="obsolete">Download Liste gelöscht.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="818"/>
|
||||
<location filename="../GUI.cpp" line="830"/>
|
||||
<source>Are you sure you want to delete the selected item(s) in download list?</source>
|
||||
<translation>Wollen Sie wirklich die ausgewählten Elemente aus der Download Liste löschen?</translation>
|
||||
</message>
|
||||
|
@ -1499,7 +1509,7 @@ Copyright (c) 2006 Christophe Dumez<br>
|
|||
<translation type="obsolete"> <b>qBittorrent</b><br>DL Geschwindigkeit:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1109"/>
|
||||
<location filename="../GUI.cpp" line="1127"/>
|
||||
<source>Finished</source>
|
||||
<translation>Beendet</translation>
|
||||
</message>
|
||||
|
@ -1820,7 +1830,7 @@ Bitte schliessen Sie diesen zuerst.</translation>
|
|||
<translation type="obsolete">Wollen Sie wirklich die ausgewählten Elemente aus der Download Liste und von der Festplatte löschen?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="355"/>
|
||||
<location filename="../GUI.cpp" line="367"/>
|
||||
<source>Download finished</source>
|
||||
<translation>Download abgeschlossen</translation>
|
||||
</message>
|
||||
|
@ -1836,23 +1846,23 @@ Bitte schliessen Sie diesen zuerst.</translation>
|
|||
<translation type="obsolete">Suchmaschine</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="908"/>
|
||||
<location filename="../GUI.cpp" line="920"/>
|
||||
<source>qBittorrent %1</source>
|
||||
<comment>e.g: qBittorrent v0.x</comment>
|
||||
<translation>qBittorrent %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>Connection status:</source>
|
||||
<translation>Verbindungs Status:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>Offline</source>
|
||||
<translation>Offline</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>No peers found...</source>
|
||||
<translation>Keine Peers gefunden...</translation>
|
||||
</message>
|
||||
|
@ -1917,13 +1927,13 @@ Bitte schliessen Sie diesen zuerst.</translation>
|
|||
<translation type="obsolete">qBittorrent %1 gestartet.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1344"/>
|
||||
<location filename="../GUI.cpp" line="1362"/>
|
||||
<source>DL speed: %1 KiB/s</source>
|
||||
<comment>e.g: Download speed: 10 KiB/s</comment>
|
||||
<translation>DL Geschwindigkeit: %1 KB/s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1347"/>
|
||||
<location filename="../GUI.cpp" line="1365"/>
|
||||
<source>UP speed: %1 KiB/s</source>
|
||||
<comment>e.g: Upload speed: 10 KiB/s</comment>
|
||||
<translation>UP Geschwindigkeit: %1 KiB/s</translation>
|
||||
|
@ -1947,12 +1957,12 @@ Bitte schliessen Sie diesen zuerst.</translation>
|
|||
<translation type="obsolete">Angehalten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="611"/>
|
||||
<location filename="../GUI.cpp" line="623"/>
|
||||
<source>Are you sure you want to quit?</source>
|
||||
<translation>Wollen Sie wirklich beenden?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="839"/>
|
||||
<location filename="../GUI.cpp" line="851"/>
|
||||
<source>'%1' was removed.</source>
|
||||
<comment>'xxx.avi' was removed.</comment>
|
||||
<translation>'%1' wurde entfernt.</translation>
|
||||
|
@ -1994,12 +2004,12 @@ Bitte schliessen Sie diesen zuerst.</translation>
|
|||
<translation type="obsolete">Lausche auf Port: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1195"/>
|
||||
<location filename="../GUI.cpp" line="1213"/>
|
||||
<source>All downloads were paused.</source>
|
||||
<translation>Alle Downloads wurden angehalten.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1221"/>
|
||||
<location filename="../GUI.cpp" line="1239"/>
|
||||
<source>'%1' paused.</source>
|
||||
<comment>xxx.avi paused.</comment>
|
||||
<translation>'%1' angehalten.</translation>
|
||||
|
@ -2011,30 +2021,30 @@ Bitte schliessen Sie diesen zuerst.</translation>
|
|||
<translation type="obsolete">Verbinde...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1254"/>
|
||||
<location filename="../GUI.cpp" line="1272"/>
|
||||
<source>All downloads were resumed.</source>
|
||||
<translation>Alle Downloads wurden fortgesetzt.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1280"/>
|
||||
<location filename="../GUI.cpp" line="1298"/>
|
||||
<source>'%1' resumed.</source>
|
||||
<comment>e.g: xxx.avi resumed.</comment>
|
||||
<translation>'%1' fortgesetzt.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="355"/>
|
||||
<location filename="../GUI.cpp" line="367"/>
|
||||
<source>%1 has finished downloading.</source>
|
||||
<comment>e.g: xxx.avi has finished downloading.</comment>
|
||||
<translation>%1 vollständig heruntergeladen.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="364"/>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<source>I/O Error</source>
|
||||
<comment>i.e: Input/Output Error</comment>
|
||||
<translation>I/O Error</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="364"/>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<source>An error occured when trying to read or write %1. The disk is probably full, download has been paused</source>
|
||||
<comment>e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused</comment>
|
||||
<translation>Es ist ein Fehler beim lesen oder schreiben von %1 aufgetreten. Die Festplatte ist vermutlich voll. Der Download wurde angehalten</translation>
|
||||
|
@ -2046,23 +2056,23 @@ Bitte schliessen Sie diesen zuerst.</translation>
|
|||
<translation type="obsolete">Ein Fehler ist aufgetreten (Festplatte voll?), '%1' angehalten.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>Connection Status:</source>
|
||||
<translation>Verbindungs-Status:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1355"/>
|
||||
<location filename="../GUI.cpp" line="1373"/>
|
||||
<source>Online</source>
|
||||
<translation>Online</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>Firewalled?</source>
|
||||
<comment>i.e: Behind a firewall/router?</comment>
|
||||
<translation>Hinter einer Firewall/Router?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>No incoming connections...</source>
|
||||
<translation>Keine eingehenden Verbindungen...</translation>
|
||||
</message>
|
||||
|
@ -2094,56 +2104,56 @@ Bitte schliessen Sie diesen zuerst.</translation>
|
|||
<translation type="obsolete">Lade '%1', bitte warten...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<location filename="../GUI.cpp" line="388"/>
|
||||
<source>An error occured (full disk?), '%1' paused.</source>
|
||||
<comment>e.g: An error occured (full disk?), 'xxx.avi' paused.</comment>
|
||||
<translation>Ein Fehler ist aufgetreten (Festplatte voll?), '%1' angehalten.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="165"/>
|
||||
<location filename="../GUI.cpp" line="153"/>
|
||||
<source>Search</source>
|
||||
<translation>Suche</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="169"/>
|
||||
<location filename="../GUI.cpp" line="279"/>
|
||||
<source>RSS</source>
|
||||
<translation>RSS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="935"/>
|
||||
<location filename="../GUI.cpp" line="947"/>
|
||||
<source>qBittorrent is bind to port: %1</source>
|
||||
<comment>e.g: qBittorrent is bind to port: 1666</comment>
|
||||
<translation>qBittorrent lauscht auf Port: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1036"/>
|
||||
<location filename="../GUI.cpp" line="1048"/>
|
||||
<source>DHT support [ON], port: %1</source>
|
||||
<translation>DHT Unterstützung [Aktiviert], port: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1042"/>
|
||||
<location filename="../GUI.cpp" line="1054"/>
|
||||
<source>DHT support [OFF]</source>
|
||||
<translation>DHT Unterstützung [Deaktiviert]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1046"/>
|
||||
<location filename="../GUI.cpp" line="1058"/>
|
||||
<source>PeX support [ON]</source>
|
||||
<translation>PeX Unterstützung [Aktiviert]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1050"/>
|
||||
<location filename="../GUI.cpp" line="1062"/>
|
||||
<source>PeX support [OFF]</source>
|
||||
<translation>PeX Unterstützung [Deaktiviert]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="612"/>
|
||||
<location filename="../GUI.cpp" line="624"/>
|
||||
<source>The download list is not empty.
|
||||
Are you sure you want to quit qBittorrent?</source>
|
||||
<translation>Die Download Liste ist nicht leer.
|
||||
Möchten sie qBittorrent wirklich beenden?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1104"/>
|
||||
<location filename="../GUI.cpp" line="1122"/>
|
||||
<source>Downloads</source>
|
||||
<translation>Downloads</translation>
|
||||
</message>
|
||||
|
@ -2153,12 +2163,12 @@ Möchten sie qBittorrent wirklich beenden?</translation>
|
|||
<translation type="obsolete">Wollen Sie wirklich die ausgewählten Elemente aus der Beendet Liste und von der Festplatte löschen?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="825"/>
|
||||
<location filename="../GUI.cpp" line="837"/>
|
||||
<source>Are you sure you want to delete the selected item(s) in finished list?</source>
|
||||
<translation>Wollen Sie wirklich die ausgewählten Elemente aus der Beendet Liste löschen?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="957"/>
|
||||
<location filename="../GUI.cpp" line="969"/>
|
||||
<source>UPnP support [ON]</source>
|
||||
<translation>UPNP Unterstützung [Aktiviert]</translation>
|
||||
</message>
|
||||
|
@ -2168,17 +2178,17 @@ Möchten sie qBittorrent wirklich beenden?</translation>
|
|||
<translation type="obsolete">ACHTUNG! Die Verbreitung von urheberrechlich geschütztem Material ist gegen das Gesetz.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1070"/>
|
||||
<location filename="../GUI.cpp" line="1082"/>
|
||||
<source>Encryption support [ON]</source>
|
||||
<translation>Verschlüsselung Unterstützung [Aktiviert]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1075"/>
|
||||
<location filename="../GUI.cpp" line="1087"/>
|
||||
<source>Encryption support [FORCED]</source>
|
||||
<translation>Verschlüsselung Unterstützung [Erzwungen]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1080"/>
|
||||
<location filename="../GUI.cpp" line="1092"/>
|
||||
<source>Encryption support [OFF]</source>
|
||||
<translation>Verschlüsselungs-Unterstützung [Deaktiviert]</translation>
|
||||
</message>
|
||||
|
@ -2194,13 +2204,13 @@ Möchten sie qBittorrent wirklich beenden?</translation>
|
|||
<translation type="obsolete">Verhältnis</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="383"/>
|
||||
<location filename="../GUI.cpp" line="395"/>
|
||||
<source>Alt+1</source>
|
||||
<comment>shortcut to switch to first tab</comment>
|
||||
<translation>Alt+1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="385"/>
|
||||
<location filename="../GUI.cpp" line="397"/>
|
||||
<source>Alt+2</source>
|
||||
<comment>shortcut to switch to second tab</comment>
|
||||
<translation>Alt+2</translation>
|
||||
|
@ -2212,18 +2222,18 @@ Möchten sie qBittorrent wirklich beenden?</translation>
|
|||
<translation type="obsolete">Alt+3, Strg+F</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="391"/>
|
||||
<location filename="../GUI.cpp" line="403"/>
|
||||
<source>Alt+4</source>
|
||||
<comment>shortcut to switch to fourth tab</comment>
|
||||
<translation>Alt+4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="459"/>
|
||||
<location filename="../GUI.cpp" line="471"/>
|
||||
<source>Url download error</source>
|
||||
<translation>URL Download Fehler</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="459"/>
|
||||
<location filename="../GUI.cpp" line="471"/>
|
||||
<source>Couldn't download file at url: %1, reason: %2.</source>
|
||||
<translation>Konnte Datei von URL: %1 nicht laden, Begründung: %2.</translation>
|
||||
</message>
|
||||
|
@ -2233,17 +2243,17 @@ Möchten sie qBittorrent wirklich beenden?</translation>
|
|||
<translation type="obsolete">Fast-Resume Daten wurden zurückgewiesen für torrent %1, prüfe nochmal...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="758"/>
|
||||
<location filename="../GUI.cpp" line="770"/>
|
||||
<source>Are you sure you want to delete the selected item(s) from download list and from hard drive?</source>
|
||||
<translation>Sind Sie sicher, daß Sie die ausgewählten Einträge aus der Download Liste und von der Festplatte löschen möchten?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="765"/>
|
||||
<location filename="../GUI.cpp" line="777"/>
|
||||
<source>Are you sure you want to delete the selected item(s) from finished list and from hard drive?</source>
|
||||
<translation>Sind Sie sicher, daß Sie die ausgewählten Einträge aus der Beendet Liste und von der Festplatte löschen möchten?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="779"/>
|
||||
<location filename="../GUI.cpp" line="791"/>
|
||||
<source>'%1' was removed permanently.</source>
|
||||
<comment>'xxx.avi' was removed permanently.</comment>
|
||||
<translation>'%1' wurde endgültig gelöscht.</translation>
|
||||
|
@ -2254,71 +2264,71 @@ Möchten sie qBittorrent wirklich beenden?</translation>
|
|||
<translation type="obsolete">URL Seed Lookup fehlgeschlagen für URL: %1, Begründung: %2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="387"/>
|
||||
<location filename="../GUI.cpp" line="399"/>
|
||||
<source>Alt+3</source>
|
||||
<comment>shortcut to switch to third tab</comment>
|
||||
<translation>Alt+3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="389"/>
|
||||
<location filename="../GUI.cpp" line="401"/>
|
||||
<source>Ctrl+F</source>
|
||||
<comment>shortcut to switch to search tab</comment>
|
||||
<translation>Strg+F</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="960"/>
|
||||
<location filename="../GUI.cpp" line="972"/>
|
||||
<source>UPnP support [OFF]</source>
|
||||
<translation>UPnP Unterstützung [AUS]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="965"/>
|
||||
<location filename="../GUI.cpp" line="977"/>
|
||||
<source>NAT-PMP support [ON]</source>
|
||||
<translation>NAT-PMP Unterstützung [AN]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="968"/>
|
||||
<location filename="../GUI.cpp" line="980"/>
|
||||
<source>NAT-PMP support [OFF]</source>
|
||||
<translation>NAT-PMP Unterstützung [AUS]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1055"/>
|
||||
<location filename="../GUI.cpp" line="1067"/>
|
||||
<source>Local Peer Discovery [ON]</source>
|
||||
<translation>Lokale Peer Auffindung [AN]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1058"/>
|
||||
<location filename="../GUI.cpp" line="1070"/>
|
||||
<source>Local Peer Discovery support [OFF]</source>
|
||||
<translation>Unterstützung für Lokale Peer Auffindung [AUS]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="785"/>
|
||||
<location filename="../GUI.cpp" line="797"/>
|
||||
<source>'%1' was removed because its ratio reached the maximum value you set.</source>
|
||||
<comment>%1 is a file name</comment>
|
||||
<translation>'%1' wurde entfernt, weil das von Ihnen eingestellte maximale Verhältnis erreicht wurde. </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1321"/>
|
||||
<location filename="../GUI.cpp" line="1339"/>
|
||||
<source>qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)</source>
|
||||
<comment>%1 is qBittorrent version</comment>
|
||||
<translation>qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1306"/>
|
||||
<location filename="../GUI.cpp" line="1324"/>
|
||||
<source>DL: %1 KiB/s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1307"/>
|
||||
<location filename="../GUI.cpp" line="1325"/>
|
||||
<source>UP: %1 KiB/s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="291"/>
|
||||
<location filename="../GUI.cpp" line="303"/>
|
||||
<source>Ratio: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="293"/>
|
||||
<location filename="../GUI.cpp" line="305"/>
|
||||
<source>DHT: %1 nodes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -4031,9 +4041,9 @@ Die Plugins wurden jedoch deaktiviert.</translation>
|
|||
<translation type="obsolete"> d</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../misc.h" line="322"/>
|
||||
<location filename="../misc.h" line="303"/>
|
||||
<source>Unknown</source>
|
||||
<translation>Unbekannt</translation>
|
||||
<translation type="obsolete">Unbekannt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../misc.h" line="110"/>
|
||||
|
@ -4175,12 +4185,12 @@ Die Plugins wurden jedoch deaktiviert.</translation>
|
|||
<translation type="obsolete">Diese IP ist ungültig.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="774"/>
|
||||
<location filename="../options_imp.cpp" line="787"/>
|
||||
<source>Options were saved successfully.</source>
|
||||
<translation>Optionen wurden erfolgreich gespeichert.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1052"/>
|
||||
<location filename="../options_imp.cpp" line="1075"/>
|
||||
<source>Choose scan directory</source>
|
||||
<translation>Verzeichnis zum scannen auswählen</translation>
|
||||
</message>
|
||||
|
@ -4190,7 +4200,7 @@ Die Plugins wurden jedoch deaktiviert.</translation>
|
|||
<translation type="obsolete">ipfilter.dat Datei auswählen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1067"/>
|
||||
<location filename="../options_imp.cpp" line="1090"/>
|
||||
<source>Choose a save directory</source>
|
||||
<translation>Verzeichnis zum Speichern auswählen</translation>
|
||||
</message>
|
||||
|
@ -4200,12 +4210,12 @@ Die Plugins wurden jedoch deaktiviert.</translation>
|
|||
<translation type="obsolete">Kein Lesezugriff auf %1.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1059"/>
|
||||
<location filename="../options_imp.cpp" line="1082"/>
|
||||
<source>Choose an ip filter file</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1059"/>
|
||||
<location filename="../options_imp.cpp" line="1082"/>
|
||||
<source>Filters</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
Binary file not shown.
|
@ -302,7 +302,7 @@ Copyright © 2006 από τον Christophe Dumez<br>
|
|||
<translation type="obsolete">0.0.0.0</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1800"/>
|
||||
<location filename="../options.ui" line="1819"/>
|
||||
<source>Port:</source>
|
||||
<translation>Θύρα:</translation>
|
||||
</message>
|
||||
|
@ -312,7 +312,7 @@ Copyright © 2006 από τον Christophe Dumez<br>
|
|||
<translation type="obsolete">Ο εξυπηρετητής Proxy ζητά πιστοποίηση</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1839"/>
|
||||
<location filename="../options.ui" line="1858"/>
|
||||
<source>Authentication</source>
|
||||
<translation>Πιστοποίηση</translation>
|
||||
</message>
|
||||
|
@ -322,7 +322,7 @@ Copyright © 2006 από τον Christophe Dumez<br>
|
|||
<translation type="obsolete">Όνομα Χρήστη:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1860"/>
|
||||
<location filename="../options.ui" line="1879"/>
|
||||
<source>Password:</source>
|
||||
<translation>Κωδικός:</translation>
|
||||
</message>
|
||||
|
@ -956,7 +956,7 @@ Copyright © 2006 από τον Christophe Dumez<br>
|
|||
<translation>Proxy:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1850"/>
|
||||
<location filename="../options.ui" line="1869"/>
|
||||
<source>Username:</source>
|
||||
<translation>Όνομα χρήστη:</translation>
|
||||
</message>
|
||||
|
@ -1041,17 +1041,17 @@ Copyright © 2006 από τον Christophe Dumez<br>
|
|||
<translation>RSS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1660"/>
|
||||
<location filename="../options.ui" line="1676"/>
|
||||
<source>RSS feeds refresh interval:</source>
|
||||
<translation>χρονικό διάστημα ανανέωσης παροχών RSS:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1680"/>
|
||||
<location filename="../options.ui" line="1696"/>
|
||||
<source>minutes</source>
|
||||
<translation>λεπτά</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1704"/>
|
||||
<location filename="../options.ui" line="1720"/>
|
||||
<source>Maximum number of articles per feed:</source>
|
||||
<translation>Μέγιστος αριθμός άρθρων ανά τροφοδοσία:</translation>
|
||||
</message>
|
||||
|
@ -1122,20 +1122,30 @@ Copyright © 2006 από τον Christophe Dumez<br>
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1765"/>
|
||||
<location filename="../options.ui" line="1784"/>
|
||||
<source>Web UI</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1778"/>
|
||||
<location filename="../options.ui" line="1797"/>
|
||||
<source>Enable Web User Interface</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1791"/>
|
||||
<location filename="../options.ui" line="1810"/>
|
||||
<source>HTTP Server</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1629"/>
|
||||
<source>Enable RSS support</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1639"/>
|
||||
<source>RSS settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DownloadingTorrents</name>
|
||||
|
@ -1386,7 +1396,7 @@ Copyright © 2006 από τον Christophe Dumez<br>
|
|||
<context>
|
||||
<name>GUI</name>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="716"/>
|
||||
<location filename="../GUI.cpp" line="728"/>
|
||||
<source>Open Torrent Files</source>
|
||||
<translation>Άνοιγμα Αρχείων τορεντ</translation>
|
||||
</message>
|
||||
|
@ -1411,17 +1421,17 @@ Copyright © 2006 από τον Christophe Dumez<br>
|
|||
<translation type="obsolete">Σίγουρα θέλετε να διαγράψετε όλα τα αρχεία στην λίστα κατεβάσματος?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="826"/>
|
||||
<location filename="../GUI.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation>&Ναι</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="826"/>
|
||||
<location filename="../GUI.cpp" line="838"/>
|
||||
<source>&No</source>
|
||||
<translation>&Όχι</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="818"/>
|
||||
<location filename="../GUI.cpp" line="830"/>
|
||||
<source>Are you sure you want to delete the selected item(s) in download list?</source>
|
||||
<translation>Είστε σίγουρος οτι θέλετε να διαγράψετε το(α) επιλεγμλένα αντικείμενο(α) από την λίστα κατεβάσματος?</translation>
|
||||
</message>
|
||||
|
@ -1441,7 +1451,7 @@ Copyright © 2006 από τον Christophe Dumez<br>
|
|||
<translation type="obsolete">kb/s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1109"/>
|
||||
<location filename="../GUI.cpp" line="1127"/>
|
||||
<source>Finished</source>
|
||||
<translation>Τελείωσε</translation>
|
||||
</message>
|
||||
|
@ -1496,7 +1506,7 @@ Copyright © 2006 από τον Christophe Dumez<br>
|
|||
<translation type="obsolete">Δεν μπόρεσε να δημιουργηθεί η κατηγορία:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="717"/>
|
||||
<location filename="../GUI.cpp" line="729"/>
|
||||
<source>Torrent Files</source>
|
||||
<translation>Αρχεία Τορεντ</translation>
|
||||
</message>
|
||||
|
@ -1568,12 +1578,12 @@ Copyright © 2006 από τον Christophe Dumez<br>
|
|||
<translation type="obsolete"> qBittorrent</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1341"/>
|
||||
<location filename="../GUI.cpp" line="1359"/>
|
||||
<source>qBittorrent</source>
|
||||
<translation>qBittorrent</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="824"/>
|
||||
<location filename="../GUI.cpp" line="836"/>
|
||||
<source>Are you sure? -- qBittorrent</source>
|
||||
<translation>Είστε σίγουρος? -- qBittorrent</translation>
|
||||
</message>
|
||||
|
@ -1916,7 +1926,7 @@ Please close the other one first.</source>
|
|||
<translation type="obsolete">Είστε σίγουρος/η οτι θέλετε να διαγράψετε το(α) επιλεγμένο(α) αντικείμενο(α) από τη λίστα κατεβάσματος και το σκληρό δίσκο?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="355"/>
|
||||
<location filename="../GUI.cpp" line="367"/>
|
||||
<source>Download finished</source>
|
||||
<translation>Το κατέβασμα τελείωσε</translation>
|
||||
</message>
|
||||
|
@ -1932,23 +1942,23 @@ Please close the other one first.</source>
|
|||
<translation type="obsolete">Μηχανή Αναζήτησης</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="908"/>
|
||||
<location filename="../GUI.cpp" line="920"/>
|
||||
<source>qBittorrent %1</source>
|
||||
<comment>e.g: qBittorrent v0.x</comment>
|
||||
<translation>qBittorrent %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>Connection status:</source>
|
||||
<translation>Κατάσταση Σύνδεσης:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>Offline</source>
|
||||
<translation>Offline</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>No peers found...</source>
|
||||
<translation>Δεν βρέθηκαν συνδέσεις...</translation>
|
||||
</message>
|
||||
|
@ -2013,13 +2023,13 @@ Please close the other one first.</source>
|
|||
<translation type="obsolete">Εκκινήθηκε το qBittorrent %1.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1344"/>
|
||||
<location filename="../GUI.cpp" line="1362"/>
|
||||
<source>DL speed: %1 KiB/s</source>
|
||||
<comment>e.g: Download speed: 10 KiB/s</comment>
|
||||
<translation>Ταχύτητα Κατεβάσματος: %1 KiB/s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1347"/>
|
||||
<location filename="../GUI.cpp" line="1365"/>
|
||||
<source>UP speed: %1 KiB/s</source>
|
||||
<comment>e.g: Upload speed: 10 KiB/s</comment>
|
||||
<translation>Ταχύτητα Ανεβάσματος: %1 KiB/s</translation>
|
||||
|
@ -2043,12 +2053,12 @@ Please close the other one first.</source>
|
|||
<translation type="obsolete">Αποτυχία λειτουργίας</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="611"/>
|
||||
<location filename="../GUI.cpp" line="623"/>
|
||||
<source>Are you sure you want to quit?</source>
|
||||
<translation>Είστε σίγουρος/η οτι θέλετε να κλείσετε την εφαρμογή?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="839"/>
|
||||
<location filename="../GUI.cpp" line="851"/>
|
||||
<source>'%1' was removed.</source>
|
||||
<comment>'xxx.avi' was removed.</comment>
|
||||
<translation>Το '%1' αφαιρέθηκε.</translation>
|
||||
|
@ -2090,12 +2100,12 @@ Please close the other one first.</source>
|
|||
<translation type="obsolete">Ακρόαση στη θύρα: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1195"/>
|
||||
<location filename="../GUI.cpp" line="1213"/>
|
||||
<source>All downloads were paused.</source>
|
||||
<translation>Όλα τα κατεβάσματα είναι σε παύση.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1221"/>
|
||||
<location filename="../GUI.cpp" line="1239"/>
|
||||
<source>'%1' paused.</source>
|
||||
<comment>xxx.avi paused.</comment>
|
||||
<translation>'%1' σε παύση.</translation>
|
||||
|
@ -2107,30 +2117,30 @@ Please close the other one first.</source>
|
|||
<translation type="obsolete">Σύνδεση...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1254"/>
|
||||
<location filename="../GUI.cpp" line="1272"/>
|
||||
<source>All downloads were resumed.</source>
|
||||
<translation>Όλα τα κατεβάσματα ξανάρχισαν.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1280"/>
|
||||
<location filename="../GUI.cpp" line="1298"/>
|
||||
<source>'%1' resumed.</source>
|
||||
<comment>e.g: xxx.avi resumed.</comment>
|
||||
<translation>Το '%1' ξανάρχισε.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="355"/>
|
||||
<location filename="../GUI.cpp" line="367"/>
|
||||
<source>%1 has finished downloading.</source>
|
||||
<comment>e.g: xxx.avi has finished downloading.</comment>
|
||||
<translation>Έχει τελειώσει το κατέβασμα του '%1'.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="364"/>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<source>I/O Error</source>
|
||||
<comment>i.e: Input/Output Error</comment>
|
||||
<translation>I/O Λάθος</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="364"/>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<source>An error occured when trying to read or write %1. The disk is probably full, download has been paused</source>
|
||||
<comment>e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused</comment>
|
||||
<translation>Ένα σφάλμα προέκυψε κατά την προσπάθεια ανάγνωσης ή εγγραφής του %1. Ο δίσκος είναι πιθανόν πλήρης, το κατέβασμα είναι σε παύση</translation>
|
||||
|
@ -2142,23 +2152,23 @@ Please close the other one first.</source>
|
|||
<translation type="obsolete">Ένα σφάλμα προέκυψε (δίσκος πλήρης?), το '%1' είναι σε παύση.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>Connection Status:</source>
|
||||
<translation>Κατάσταση Σύνδεσης:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1355"/>
|
||||
<location filename="../GUI.cpp" line="1373"/>
|
||||
<source>Online</source>
|
||||
<translation>Online</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>Firewalled?</source>
|
||||
<comment>i.e: Behind a firewall/router?</comment>
|
||||
<translation>Σε τοίχο προστασίας (firewall)?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>No incoming connections...</source>
|
||||
<translation>Καμία εισερχόμενη σύνδεση...</translation>
|
||||
</message>
|
||||
|
@ -2190,66 +2200,66 @@ Please close the other one first.</source>
|
|||
<translation type="obsolete">Κατέβασμα του '%1', παρακαλώ περιμένετε...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<location filename="../GUI.cpp" line="388"/>
|
||||
<source>An error occured (full disk?), '%1' paused.</source>
|
||||
<comment>e.g: An error occured (full disk?), 'xxx.avi' paused.</comment>
|
||||
<translation>Ένα σφάλμα προέκυψε (δίσκος πλήρης?), το '%1' είναι σε παύση.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="165"/>
|
||||
<location filename="../GUI.cpp" line="153"/>
|
||||
<source>Search</source>
|
||||
<translation>Εύρεση</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="169"/>
|
||||
<location filename="../GUI.cpp" line="279"/>
|
||||
<source>RSS</source>
|
||||
<translation>RSS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="935"/>
|
||||
<location filename="../GUI.cpp" line="947"/>
|
||||
<source>qBittorrent is bind to port: %1</source>
|
||||
<comment>e.g: qBittorrent is bind to port: 1666</comment>
|
||||
<translation>Το qBittorrent χρησιμοποιεί τη θύρα: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1036"/>
|
||||
<location filename="../GUI.cpp" line="1048"/>
|
||||
<source>DHT support [ON], port: %1</source>
|
||||
<translation>Υποστήριξη DHT [ΝΑΙ], θύρα: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1042"/>
|
||||
<location filename="../GUI.cpp" line="1054"/>
|
||||
<source>DHT support [OFF]</source>
|
||||
<translation>Υποστήριξη DHT [ΟΧΙ]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1046"/>
|
||||
<location filename="../GUI.cpp" line="1058"/>
|
||||
<source>PeX support [ON]</source>
|
||||
<translation>Υποστήριξη PeX [ΝΑΙ]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1050"/>
|
||||
<location filename="../GUI.cpp" line="1062"/>
|
||||
<source>PeX support [OFF]</source>
|
||||
<translation>Υποστήριξη PeX [ΟΧΙ]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="612"/>
|
||||
<location filename="../GUI.cpp" line="624"/>
|
||||
<source>The download list is not empty.
|
||||
Are you sure you want to quit qBittorrent?</source>
|
||||
<translation>Η λίστα κατεβάσματος δεν είναι άδεια.
|
||||
Σίγουρα θέλετε να κλείσετε το qBittorrent?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1104"/>
|
||||
<location filename="../GUI.cpp" line="1122"/>
|
||||
<source>Downloads</source>
|
||||
<translation>Κατέβασματα</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="825"/>
|
||||
<location filename="../GUI.cpp" line="837"/>
|
||||
<source>Are you sure you want to delete the selected item(s) in finished list?</source>
|
||||
<translation>Είστε σίγουρος οτι θέλετε να διαγράψετε το(α) επιλεγμλένα αντικείμενο(α) από την λίστα των ολοκληρωμένων?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="957"/>
|
||||
<location filename="../GUI.cpp" line="969"/>
|
||||
<source>UPnP support [ON]</source>
|
||||
<translation>Υποστήριξη UPnP [ΝΑΙ]</translation>
|
||||
</message>
|
||||
|
@ -2259,17 +2269,17 @@ Are you sure you want to quit qBittorrent?</source>
|
|||
<translation type="obsolete">Προσοχή, η διακίνηση υλικού προστατευόμενου από πνευματικά δικαιώματα χωρίς άδεια είναι παράνομη.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1070"/>
|
||||
<location filename="../GUI.cpp" line="1082"/>
|
||||
<source>Encryption support [ON]</source>
|
||||
<translation>Υποστήριξη κρυπτογράφησης [ΝΑΙ]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1075"/>
|
||||
<location filename="../GUI.cpp" line="1087"/>
|
||||
<source>Encryption support [FORCED]</source>
|
||||
<translation>Υποστήριξη κρυπτογράφησης [ΑΝΑΓΚΑΣΤΙΚΑ]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1080"/>
|
||||
<location filename="../GUI.cpp" line="1092"/>
|
||||
<source>Encryption support [OFF]</source>
|
||||
<translation>Υποστήριξη κρυπτογράφησης [ΟΧΙ]</translation>
|
||||
</message>
|
||||
|
@ -2285,13 +2295,13 @@ Are you sure you want to quit qBittorrent?</source>
|
|||
<translation type="obsolete">Αναλογία</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="383"/>
|
||||
<location filename="../GUI.cpp" line="395"/>
|
||||
<source>Alt+1</source>
|
||||
<comment>shortcut to switch to first tab</comment>
|
||||
<translation>Alt+1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="385"/>
|
||||
<location filename="../GUI.cpp" line="397"/>
|
||||
<source>Alt+2</source>
|
||||
<comment>shortcut to switch to second tab</comment>
|
||||
<translation>Alt+2</translation>
|
||||
|
@ -2303,18 +2313,18 @@ Are you sure you want to quit qBittorrent?</source>
|
|||
<translation type="obsolete">Alt+3, Ctrl+F</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="391"/>
|
||||
<location filename="../GUI.cpp" line="403"/>
|
||||
<source>Alt+4</source>
|
||||
<comment>shortcut to switch to fourth tab</comment>
|
||||
<translation>Alt+4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="459"/>
|
||||
<location filename="../GUI.cpp" line="471"/>
|
||||
<source>Url download error</source>
|
||||
<translation>Σφάλμα κατεβάσματος url</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="459"/>
|
||||
<location filename="../GUI.cpp" line="471"/>
|
||||
<source>Couldn't download file at url: %1, reason: %2.</source>
|
||||
<translation>Αδύνατο κατέβασμα αρχείου από το url: %1,αιτία: %2.</translation>
|
||||
</message>
|
||||
|
@ -2324,17 +2334,17 @@ Are you sure you want to quit qBittorrent?</source>
|
|||
<translation type="obsolete">Γρήγορη συνέχεια κατεβάσματος αρχείων απορρίφθηκε για το τορεντ %1, επανέλεγχος...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="758"/>
|
||||
<location filename="../GUI.cpp" line="770"/>
|
||||
<source>Are you sure you want to delete the selected item(s) from download list and from hard drive?</source>
|
||||
<translation>Είστε σίγουρος οτι θέλετε να διαγράψετε το(α) επιλεγμλένα αντικείμενο(α) από την λίστα κατεβάσματος και από το σκληρό δίσκο?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="765"/>
|
||||
<location filename="../GUI.cpp" line="777"/>
|
||||
<source>Are you sure you want to delete the selected item(s) from finished list and from hard drive?</source>
|
||||
<translation>Είστε σίγουρος οτι θέλετε να διαγράψετε το(α) επιλεγμλένα αντικείμενο(α) από το σκληρό δίσκο?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="779"/>
|
||||
<location filename="../GUI.cpp" line="791"/>
|
||||
<source>'%1' was removed permanently.</source>
|
||||
<comment>'xxx.avi' was removed permanently.</comment>
|
||||
<translation>'%1' διαγράφηκε για πάντα.</translation>
|
||||
|
@ -2345,71 +2355,71 @@ Are you sure you want to quit qBittorrent?</source>
|
|||
<translation type="obsolete">Αποτυχία ελέγχου url μοιράσματος για το url: %1, μήνυμα: %2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="387"/>
|
||||
<location filename="../GUI.cpp" line="399"/>
|
||||
<source>Alt+3</source>
|
||||
<comment>shortcut to switch to third tab</comment>
|
||||
<translation>Alt+3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="389"/>
|
||||
<location filename="../GUI.cpp" line="401"/>
|
||||
<source>Ctrl+F</source>
|
||||
<comment>shortcut to switch to search tab</comment>
|
||||
<translation>Ctrl+F</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="960"/>
|
||||
<location filename="../GUI.cpp" line="972"/>
|
||||
<source>UPnP support [OFF]</source>
|
||||
<translation>Υποστήριξη UPnP [ΟΧΙ]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="965"/>
|
||||
<location filename="../GUI.cpp" line="977"/>
|
||||
<source>NAT-PMP support [ON]</source>
|
||||
<translation>Υποστήριξη NAT-PMP [NAI]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="968"/>
|
||||
<location filename="../GUI.cpp" line="980"/>
|
||||
<source>NAT-PMP support [OFF]</source>
|
||||
<translation>Υποστήριξη NAT-PMP [OXI]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1055"/>
|
||||
<location filename="../GUI.cpp" line="1067"/>
|
||||
<source>Local Peer Discovery [ON]</source>
|
||||
<translation>Ανακάλυψη Τοπικών Συνδέσεων [ΝΑΙ]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1058"/>
|
||||
<location filename="../GUI.cpp" line="1070"/>
|
||||
<source>Local Peer Discovery support [OFF]</source>
|
||||
<translation>Ανακάλυψη Τοπικών Συνδέσεων [ΟΧΙ]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="785"/>
|
||||
<location filename="../GUI.cpp" line="797"/>
|
||||
<source>'%1' was removed because its ratio reached the maximum value you set.</source>
|
||||
<comment>%1 is a file name</comment>
|
||||
<translation>Το '%1' αφαιρέθηκε επειδή η αναλογία του έφτασε τη μέγιστη τιμή που θέσατε. </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1321"/>
|
||||
<location filename="../GUI.cpp" line="1339"/>
|
||||
<source>qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)</source>
|
||||
<comment>%1 is qBittorrent version</comment>
|
||||
<translation>qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1306"/>
|
||||
<location filename="../GUI.cpp" line="1324"/>
|
||||
<source>DL: %1 KiB/s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1307"/>
|
||||
<location filename="../GUI.cpp" line="1325"/>
|
||||
<source>UP: %1 KiB/s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="291"/>
|
||||
<location filename="../GUI.cpp" line="303"/>
|
||||
<source>Ratio: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="293"/>
|
||||
<location filename="../GUI.cpp" line="305"/>
|
||||
<source>DHT: %1 nodes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -4122,9 +4132,9 @@ However, those plugins were disabled.</source>
|
|||
<translation type="obsolete"> μ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../misc.h" line="322"/>
|
||||
<location filename="../misc.h" line="303"/>
|
||||
<source>Unknown</source>
|
||||
<translation>Άγνωστος</translation>
|
||||
<translation type="obsolete">Άγνωστος</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="" line="7471221"/>
|
||||
|
@ -4283,12 +4293,12 @@ However, those plugins were disabled.</source>
|
|||
<translation type="obsolete">Αυτό το IP είναι άκυρο.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="774"/>
|
||||
<location filename="../options_imp.cpp" line="787"/>
|
||||
<source>Options were saved successfully.</source>
|
||||
<translation>Οι επιλογές αποθηκεύτηκαν επιτυχώς.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1052"/>
|
||||
<location filename="../options_imp.cpp" line="1075"/>
|
||||
<source>Choose scan directory</source>
|
||||
<translation>Επιλέξτε φάκελο αναζήτησης</translation>
|
||||
</message>
|
||||
|
@ -4298,7 +4308,7 @@ However, those plugins were disabled.</source>
|
|||
<translation type="obsolete">Επιλέξτε ένα αρχείο ipfilter.dat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1067"/>
|
||||
<location filename="../options_imp.cpp" line="1090"/>
|
||||
<source>Choose a save directory</source>
|
||||
<translation>Επιλέξτε φάκελο αποθήκευσης</translation>
|
||||
</message>
|
||||
|
@ -4314,12 +4324,12 @@ However, those plugins were disabled.</source>
|
|||
<translation type="obsolete">Αδύνατο το άνοιγμα του %1 σε λειτουργία ανάγνωσης.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1059"/>
|
||||
<location filename="../options_imp.cpp" line="1082"/>
|
||||
<source>Choose an ip filter file</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1059"/>
|
||||
<location filename="../options_imp.cpp" line="1082"/>
|
||||
<source>Filters</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
Binary file not shown.
|
@ -161,17 +161,17 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1800"/>
|
||||
<location filename="../options.ui" line="1819"/>
|
||||
<source>Port:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1839"/>
|
||||
<location filename="../options.ui" line="1858"/>
|
||||
<source>Authentication</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1860"/>
|
||||
<location filename="../options.ui" line="1879"/>
|
||||
<source>Password:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -425,7 +425,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1850"/>
|
||||
<location filename="../options.ui" line="1869"/>
|
||||
<source>Username:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -515,17 +515,17 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1660"/>
|
||||
<location filename="../options.ui" line="1676"/>
|
||||
<source>RSS feeds refresh interval:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1680"/>
|
||||
<location filename="../options.ui" line="1696"/>
|
||||
<source>minutes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1704"/>
|
||||
<location filename="../options.ui" line="1720"/>
|
||||
<source>Maximum number of articles per feed:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -596,20 +596,30 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1765"/>
|
||||
<location filename="../options.ui" line="1784"/>
|
||||
<source>Web UI</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1778"/>
|
||||
<location filename="../options.ui" line="1797"/>
|
||||
<source>Enable Web User Interface</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1791"/>
|
||||
<location filename="../options.ui" line="1810"/>
|
||||
<source>HTTP Server</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1629"/>
|
||||
<source>Enable RSS support</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1639"/>
|
||||
<source>RSS settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DownloadingTorrents</name>
|
||||
|
@ -815,343 +825,343 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<context>
|
||||
<name>GUI</name>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="716"/>
|
||||
<location filename="../GUI.cpp" line="728"/>
|
||||
<source>Open Torrent Files</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="826"/>
|
||||
<location filename="../GUI.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="826"/>
|
||||
<location filename="../GUI.cpp" line="838"/>
|
||||
<source>&No</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="818"/>
|
||||
<location filename="../GUI.cpp" line="830"/>
|
||||
<source>Are you sure you want to delete the selected item(s) in download list?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="717"/>
|
||||
<location filename="../GUI.cpp" line="729"/>
|
||||
<source>Torrent Files</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="824"/>
|
||||
<location filename="../GUI.cpp" line="836"/>
|
||||
<source>Are you sure? -- qBittorrent</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="355"/>
|
||||
<location filename="../GUI.cpp" line="367"/>
|
||||
<source>Download finished</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="908"/>
|
||||
<location filename="../GUI.cpp" line="920"/>
|
||||
<source>qBittorrent %1</source>
|
||||
<comment>e.g: qBittorrent v0.x</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>Connection status:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>Offline</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>No peers found...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1341"/>
|
||||
<location filename="../GUI.cpp" line="1359"/>
|
||||
<source>qBittorrent</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1344"/>
|
||||
<location filename="../GUI.cpp" line="1362"/>
|
||||
<source>DL speed: %1 KiB/s</source>
|
||||
<comment>e.g: Download speed: 10 KiB/s</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1347"/>
|
||||
<location filename="../GUI.cpp" line="1365"/>
|
||||
<source>UP speed: %1 KiB/s</source>
|
||||
<comment>e.g: Upload speed: 10 KiB/s</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="611"/>
|
||||
<location filename="../GUI.cpp" line="623"/>
|
||||
<source>Are you sure you want to quit?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="839"/>
|
||||
<location filename="../GUI.cpp" line="851"/>
|
||||
<source>'%1' was removed.</source>
|
||||
<comment>'xxx.avi' was removed.</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1195"/>
|
||||
<location filename="../GUI.cpp" line="1213"/>
|
||||
<source>All downloads were paused.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1221"/>
|
||||
<location filename="../GUI.cpp" line="1239"/>
|
||||
<source>'%1' paused.</source>
|
||||
<comment>xxx.avi paused.</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1254"/>
|
||||
<location filename="../GUI.cpp" line="1272"/>
|
||||
<source>All downloads were resumed.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1280"/>
|
||||
<location filename="../GUI.cpp" line="1298"/>
|
||||
<source>'%1' resumed.</source>
|
||||
<comment>e.g: xxx.avi resumed.</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="355"/>
|
||||
<location filename="../GUI.cpp" line="367"/>
|
||||
<source>%1 has finished downloading.</source>
|
||||
<comment>e.g: xxx.avi has finished downloading.</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="364"/>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<source>I/O Error</source>
|
||||
<comment>i.e: Input/Output Error</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="364"/>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<source>An error occured when trying to read or write %1. The disk is probably full, download has been paused</source>
|
||||
<comment>e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>Connection Status:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1355"/>
|
||||
<location filename="../GUI.cpp" line="1373"/>
|
||||
<source>Online</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>Firewalled?</source>
|
||||
<comment>i.e: Behind a firewall/router?</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>No incoming connections...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<location filename="../GUI.cpp" line="388"/>
|
||||
<source>An error occured (full disk?), '%1' paused.</source>
|
||||
<comment>e.g: An error occured (full disk?), 'xxx.avi' paused.</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="165"/>
|
||||
<location filename="../GUI.cpp" line="153"/>
|
||||
<source>Search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="169"/>
|
||||
<location filename="../GUI.cpp" line="279"/>
|
||||
<source>RSS</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="935"/>
|
||||
<location filename="../GUI.cpp" line="947"/>
|
||||
<source>qBittorrent is bind to port: %1</source>
|
||||
<comment>e.g: qBittorrent is bind to port: 1666</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1036"/>
|
||||
<location filename="../GUI.cpp" line="1048"/>
|
||||
<source>DHT support [ON], port: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1042"/>
|
||||
<location filename="../GUI.cpp" line="1054"/>
|
||||
<source>DHT support [OFF]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1046"/>
|
||||
<location filename="../GUI.cpp" line="1058"/>
|
||||
<source>PeX support [ON]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1050"/>
|
||||
<location filename="../GUI.cpp" line="1062"/>
|
||||
<source>PeX support [OFF]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="612"/>
|
||||
<location filename="../GUI.cpp" line="624"/>
|
||||
<source>The download list is not empty.
|
||||
Are you sure you want to quit qBittorrent?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1104"/>
|
||||
<location filename="../GUI.cpp" line="1122"/>
|
||||
<source>Downloads</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1109"/>
|
||||
<location filename="../GUI.cpp" line="1127"/>
|
||||
<source>Finished</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="825"/>
|
||||
<location filename="../GUI.cpp" line="837"/>
|
||||
<source>Are you sure you want to delete the selected item(s) in finished list?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="957"/>
|
||||
<location filename="../GUI.cpp" line="969"/>
|
||||
<source>UPnP support [ON]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1070"/>
|
||||
<location filename="../GUI.cpp" line="1082"/>
|
||||
<source>Encryption support [ON]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1075"/>
|
||||
<location filename="../GUI.cpp" line="1087"/>
|
||||
<source>Encryption support [FORCED]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1080"/>
|
||||
<location filename="../GUI.cpp" line="1092"/>
|
||||
<source>Encryption support [OFF]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="383"/>
|
||||
<location filename="../GUI.cpp" line="395"/>
|
||||
<source>Alt+1</source>
|
||||
<comment>shortcut to switch to first tab</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="385"/>
|
||||
<location filename="../GUI.cpp" line="397"/>
|
||||
<source>Alt+2</source>
|
||||
<comment>shortcut to switch to second tab</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="391"/>
|
||||
<location filename="../GUI.cpp" line="403"/>
|
||||
<source>Alt+4</source>
|
||||
<comment>shortcut to switch to fourth tab</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="459"/>
|
||||
<location filename="../GUI.cpp" line="471"/>
|
||||
<source>Url download error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="459"/>
|
||||
<location filename="../GUI.cpp" line="471"/>
|
||||
<source>Couldn't download file at url: %1, reason: %2.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="758"/>
|
||||
<location filename="../GUI.cpp" line="770"/>
|
||||
<source>Are you sure you want to delete the selected item(s) from download list and from hard drive?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="765"/>
|
||||
<location filename="../GUI.cpp" line="777"/>
|
||||
<source>Are you sure you want to delete the selected item(s) from finished list and from hard drive?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="779"/>
|
||||
<location filename="../GUI.cpp" line="791"/>
|
||||
<source>'%1' was removed permanently.</source>
|
||||
<comment>'xxx.avi' was removed permanently.</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="387"/>
|
||||
<location filename="../GUI.cpp" line="399"/>
|
||||
<source>Alt+3</source>
|
||||
<comment>shortcut to switch to third tab</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="389"/>
|
||||
<location filename="../GUI.cpp" line="401"/>
|
||||
<source>Ctrl+F</source>
|
||||
<comment>shortcut to switch to search tab</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="960"/>
|
||||
<location filename="../GUI.cpp" line="972"/>
|
||||
<source>UPnP support [OFF]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="965"/>
|
||||
<location filename="../GUI.cpp" line="977"/>
|
||||
<source>NAT-PMP support [ON]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="968"/>
|
||||
<location filename="../GUI.cpp" line="980"/>
|
||||
<source>NAT-PMP support [OFF]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1055"/>
|
||||
<location filename="../GUI.cpp" line="1067"/>
|
||||
<source>Local Peer Discovery [ON]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1058"/>
|
||||
<location filename="../GUI.cpp" line="1070"/>
|
||||
<source>Local Peer Discovery support [OFF]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="785"/>
|
||||
<location filename="../GUI.cpp" line="797"/>
|
||||
<source>'%1' was removed because its ratio reached the maximum value you set.</source>
|
||||
<comment>%1 is a file name</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1321"/>
|
||||
<location filename="../GUI.cpp" line="1339"/>
|
||||
<source>qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)</source>
|
||||
<comment>%1 is qBittorrent version</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1306"/>
|
||||
<location filename="../GUI.cpp" line="1324"/>
|
||||
<source>DL: %1 KiB/s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1307"/>
|
||||
<location filename="../GUI.cpp" line="1325"/>
|
||||
<source>UP: %1 KiB/s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="291"/>
|
||||
<location filename="../GUI.cpp" line="303"/>
|
||||
<source>Ratio: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="293"/>
|
||||
<location filename="../GUI.cpp" line="305"/>
|
||||
<source>DHT: %1 nodes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -2278,11 +2288,6 @@ However, those plugins were disabled.</source>
|
|||
<comment>tebibytes (1024 gibibytes)</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../misc.h" line="322"/>
|
||||
<source>Unknown</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../misc.h" line="110"/>
|
||||
<source>Unknown</source>
|
||||
|
@ -2317,27 +2322,27 @@ However, those plugins were disabled.</source>
|
|||
<context>
|
||||
<name>options_imp</name>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="774"/>
|
||||
<location filename="../options_imp.cpp" line="787"/>
|
||||
<source>Options were saved successfully.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1052"/>
|
||||
<location filename="../options_imp.cpp" line="1075"/>
|
||||
<source>Choose scan directory</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1067"/>
|
||||
<location filename="../options_imp.cpp" line="1090"/>
|
||||
<source>Choose a save directory</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1059"/>
|
||||
<location filename="../options_imp.cpp" line="1082"/>
|
||||
<source>Choose an ip filter file</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1059"/>
|
||||
<location filename="../options_imp.cpp" line="1082"/>
|
||||
<source>Filters</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
Binary file not shown.
|
@ -265,7 +265,7 @@ Copyright © 2006 por Christophe Dumez<br>
|
|||
<translation type="obsolete">0.0.0.0</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1800"/>
|
||||
<location filename="../options.ui" line="1819"/>
|
||||
<source>Port:</source>
|
||||
<translation>Puerto:</translation>
|
||||
</message>
|
||||
|
@ -275,7 +275,7 @@ Copyright © 2006 por Christophe Dumez<br>
|
|||
<translation type="obsolete">El servidor Proxy requiere autentificarse</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1839"/>
|
||||
<location filename="../options.ui" line="1858"/>
|
||||
<source>Authentication</source>
|
||||
<translation>Autenticación</translation>
|
||||
</message>
|
||||
|
@ -285,7 +285,7 @@ Copyright © 2006 por Christophe Dumez<br>
|
|||
<translation type="obsolete">Nombre de Usuario:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1860"/>
|
||||
<location filename="../options.ui" line="1879"/>
|
||||
<source>Password:</source>
|
||||
<translation>Contraseña:</translation>
|
||||
</message>
|
||||
|
@ -894,7 +894,7 @@ Copyright © 2006 por Christophe Dumez<br>
|
|||
<translation>Proxy:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1850"/>
|
||||
<location filename="../options.ui" line="1869"/>
|
||||
<source>Username:</source>
|
||||
<translation>Nombre de Usuario:</translation>
|
||||
</message>
|
||||
|
@ -979,17 +979,17 @@ Copyright © 2006 por Christophe Dumez<br>
|
|||
<translation>RSS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1660"/>
|
||||
<location filename="../options.ui" line="1676"/>
|
||||
<source>RSS feeds refresh interval:</source>
|
||||
<translation>Intervalo de actualización de feeds de RSS:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1680"/>
|
||||
<location filename="../options.ui" line="1696"/>
|
||||
<source>minutes</source>
|
||||
<translation>minutos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1704"/>
|
||||
<location filename="../options.ui" line="1720"/>
|
||||
<source>Maximum number of articles per feed:</source>
|
||||
<translation>Número máximo de artículos por feed:</translation>
|
||||
</message>
|
||||
|
@ -1060,20 +1060,30 @@ Copyright © 2006 por Christophe Dumez<br>
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1765"/>
|
||||
<location filename="../options.ui" line="1784"/>
|
||||
<source>Web UI</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1778"/>
|
||||
<location filename="../options.ui" line="1797"/>
|
||||
<source>Enable Web User Interface</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1791"/>
|
||||
<location filename="../options.ui" line="1810"/>
|
||||
<source>HTTP Server</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1629"/>
|
||||
<source>Enable RSS support</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1639"/>
|
||||
<source>RSS settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DownloadingTorrents</name>
|
||||
|
@ -1355,12 +1365,12 @@ Copyright © 2006 por Christophe Dumez<br>
|
|||
<translation type="obsolete">No se pudo crear el directorio:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="716"/>
|
||||
<location filename="../GUI.cpp" line="728"/>
|
||||
<source>Open Torrent Files</source>
|
||||
<translation>Abrir archivos Torrent</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="717"/>
|
||||
<location filename="../GUI.cpp" line="729"/>
|
||||
<source>Torrent Files</source>
|
||||
<translation>Archivos Torrent</translation>
|
||||
</message>
|
||||
|
@ -1411,12 +1421,12 @@ Copyright © 2006 por Christophe Dumez<br>
|
|||
<translation type="obsolete">¿Seguro que quieres eliminar todos los archivos de la lista de descargas?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="826"/>
|
||||
<location filename="../GUI.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation>&Sí</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="826"/>
|
||||
<location filename="../GUI.cpp" line="838"/>
|
||||
<source>&No</source>
|
||||
<translation>&No</translation>
|
||||
</message>
|
||||
|
@ -1426,7 +1436,7 @@ Copyright © 2006 por Christophe Dumez<br>
|
|||
<translation type="obsolete">Lista de descargas borrada.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="818"/>
|
||||
<location filename="../GUI.cpp" line="830"/>
|
||||
<source>Are you sure you want to delete the selected item(s) in download list?</source>
|
||||
<translation>¿Seguro que quieres borrar el o los elemento(s) seleccionados de la lista de descargas?</translation>
|
||||
</message>
|
||||
|
@ -1469,7 +1479,7 @@ Copyright © 2006 por Christophe Dumez<br>
|
|||
<translation type="obsolete">continuada.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1109"/>
|
||||
<location filename="../GUI.cpp" line="1127"/>
|
||||
<source>Finished</source>
|
||||
<translation>Terminada</translation>
|
||||
</message>
|
||||
|
@ -1522,12 +1532,12 @@ Copyright © 2006 por Christophe Dumez<br>
|
|||
<translation type="obsolete"> qBittorrent</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1341"/>
|
||||
<location filename="../GUI.cpp" line="1359"/>
|
||||
<source>qBittorrent</source>
|
||||
<translation>qBittorrent</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="824"/>
|
||||
<location filename="../GUI.cpp" line="836"/>
|
||||
<source>Are you sure? -- qBittorrent</source>
|
||||
<translation>¿Estás seguro? -- qBittorrent</translation>
|
||||
</message>
|
||||
|
@ -1845,7 +1855,7 @@ Por favor cierra el otro antes.</translation>
|
|||
<translation type="obsolete">¿Seguro que deseas borrar el o los elementos seleccionados de la lista de descargas y del disco duro?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="355"/>
|
||||
<location filename="../GUI.cpp" line="367"/>
|
||||
<source>Download finished</source>
|
||||
<translation>Descarga terminada</translation>
|
||||
</message>
|
||||
|
@ -1861,23 +1871,23 @@ Por favor cierra el otro antes.</translation>
|
|||
<translation type="obsolete">Motor de Búsqueda</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="908"/>
|
||||
<location filename="../GUI.cpp" line="920"/>
|
||||
<source>qBittorrent %1</source>
|
||||
<comment>e.g: qBittorrent v0.x</comment>
|
||||
<translation>qBittorrent %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>Connection status:</source>
|
||||
<translation>Estado de la conexión:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>Offline</source>
|
||||
<translation>Offline</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>No peers found...</source>
|
||||
<translation>No se encontraron peers...</translation>
|
||||
</message>
|
||||
|
@ -1942,13 +1952,13 @@ Por favor cierra el otro antes.</translation>
|
|||
<translation type="obsolete">qBittorrent %1 iniciado.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1344"/>
|
||||
<location filename="../GUI.cpp" line="1362"/>
|
||||
<source>DL speed: %1 KiB/s</source>
|
||||
<comment>e.g: Download speed: 10 KiB/s</comment>
|
||||
<translation>Velocidad de Descarga: %1 KiB/s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1347"/>
|
||||
<location filename="../GUI.cpp" line="1365"/>
|
||||
<source>UP speed: %1 KiB/s</source>
|
||||
<comment>e.g: Upload speed: 10 KiB/s</comment>
|
||||
<translation>Velocidad de subida: %1 KiB/s</translation>
|
||||
|
@ -1972,12 +1982,12 @@ Por favor cierra el otro antes.</translation>
|
|||
<translation type="obsolete">Detenida</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="611"/>
|
||||
<location filename="../GUI.cpp" line="623"/>
|
||||
<source>Are you sure you want to quit?</source>
|
||||
<translation>¿Estás seguro de que deseas salir?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="839"/>
|
||||
<location filename="../GUI.cpp" line="851"/>
|
||||
<source>'%1' was removed.</source>
|
||||
<comment>'xxx.avi' was removed.</comment>
|
||||
<translation>'%1' fue removido.</translation>
|
||||
|
@ -2019,12 +2029,12 @@ Por favor cierra el otro antes.</translation>
|
|||
<translation type="obsolete">Escuchando en el puerto: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1195"/>
|
||||
<location filename="../GUI.cpp" line="1213"/>
|
||||
<source>All downloads were paused.</source>
|
||||
<translation>Todas las descargas en pausa.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1221"/>
|
||||
<location filename="../GUI.cpp" line="1239"/>
|
||||
<source>'%1' paused.</source>
|
||||
<comment>xxx.avi paused.</comment>
|
||||
<translation>'%1' en pausa.</translation>
|
||||
|
@ -2036,30 +2046,30 @@ Por favor cierra el otro antes.</translation>
|
|||
<translation type="obsolete">Conectando...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1254"/>
|
||||
<location filename="../GUI.cpp" line="1272"/>
|
||||
<source>All downloads were resumed.</source>
|
||||
<translation>Todas las descargas reiniciadas.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1280"/>
|
||||
<location filename="../GUI.cpp" line="1298"/>
|
||||
<source>'%1' resumed.</source>
|
||||
<comment>e.g: xxx.avi resumed.</comment>
|
||||
<translation>'%1' reiniciado.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="355"/>
|
||||
<location filename="../GUI.cpp" line="367"/>
|
||||
<source>%1 has finished downloading.</source>
|
||||
<comment>e.g: xxx.avi has finished downloading.</comment>
|
||||
<translation>%1 ha terminado de descargarse.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="364"/>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<source>I/O Error</source>
|
||||
<comment>i.e: Input/Output Error</comment>
|
||||
<translation>Error de Entrada/Salida</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="364"/>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<source>An error occured when trying to read or write %1. The disk is probably full, download has been paused</source>
|
||||
<comment>e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused</comment>
|
||||
<translation>Un error ocurrió mientras se intentaba leer o escribir %1. El disco tal vez esté lleno, la descarga fue pausada</translation>
|
||||
|
@ -2071,23 +2081,23 @@ Por favor cierra el otro antes.</translation>
|
|||
<translation type="obsolete">Un error ocurrió (¿disco lleno?), '%1' pausado.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>Connection Status:</source>
|
||||
<translation>Estado de la conexión:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1355"/>
|
||||
<location filename="../GUI.cpp" line="1373"/>
|
||||
<source>Online</source>
|
||||
<translation>En línea</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>Firewalled?</source>
|
||||
<comment>i.e: Behind a firewall/router?</comment>
|
||||
<translation>¿Con firewall?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>No incoming connections...</source>
|
||||
<translation>Sin conexiones entrantes...</translation>
|
||||
</message>
|
||||
|
@ -2119,66 +2129,66 @@ Por favor cierra el otro antes.</translation>
|
|||
<translation type="obsolete">Descargando '%1', por favor espera...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<location filename="../GUI.cpp" line="388"/>
|
||||
<source>An error occured (full disk?), '%1' paused.</source>
|
||||
<comment>e.g: An error occured (full disk?), 'xxx.avi' paused.</comment>
|
||||
<translation>Un error ocurrió (¿disco lleno?), '%1' pausado.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="165"/>
|
||||
<location filename="../GUI.cpp" line="153"/>
|
||||
<source>Search</source>
|
||||
<translation>Buscar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="169"/>
|
||||
<location filename="../GUI.cpp" line="279"/>
|
||||
<source>RSS</source>
|
||||
<translation>RSS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="935"/>
|
||||
<location filename="../GUI.cpp" line="947"/>
|
||||
<source>qBittorrent is bind to port: %1</source>
|
||||
<comment>e.g: qBittorrent is bind to port: 1666</comment>
|
||||
<translation>qBittorrent está asignado al puerto: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1036"/>
|
||||
<location filename="../GUI.cpp" line="1048"/>
|
||||
<source>DHT support [ON], port: %1</source>
|
||||
<translation>Soporte para DHT [encendido], puerto: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1042"/>
|
||||
<location filename="../GUI.cpp" line="1054"/>
|
||||
<source>DHT support [OFF]</source>
|
||||
<translation>Soporte para DHT [apagado]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1046"/>
|
||||
<location filename="../GUI.cpp" line="1058"/>
|
||||
<source>PeX support [ON]</source>
|
||||
<translation>Soporte para PeX [encendido]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1050"/>
|
||||
<location filename="../GUI.cpp" line="1062"/>
|
||||
<source>PeX support [OFF]</source>
|
||||
<translation>Soporte para PeX [apagado]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="612"/>
|
||||
<location filename="../GUI.cpp" line="624"/>
|
||||
<source>The download list is not empty.
|
||||
Are you sure you want to quit qBittorrent?</source>
|
||||
<translation>La lista de descargas no está vacía.
|
||||
¿En verdad deseas salir de qBittorrent?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1104"/>
|
||||
<location filename="../GUI.cpp" line="1122"/>
|
||||
<source>Downloads</source>
|
||||
<translation>Descargas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="825"/>
|
||||
<location filename="../GUI.cpp" line="837"/>
|
||||
<source>Are you sure you want to delete the selected item(s) in finished list?</source>
|
||||
<translation>¿Estás seguro de que deseas borrar los íconos seleccionados en la lista de terminados?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="957"/>
|
||||
<location filename="../GUI.cpp" line="969"/>
|
||||
<source>UPnP support [ON]</source>
|
||||
<translation>Soporte para UPnP [encendido]</translation>
|
||||
</message>
|
||||
|
@ -2188,17 +2198,17 @@ Are you sure you want to quit qBittorrent?</source>
|
|||
<translation type="obsolete">Ten cuidado, compartir material protegido sin permiso es ilegal.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1070"/>
|
||||
<location filename="../GUI.cpp" line="1082"/>
|
||||
<source>Encryption support [ON]</source>
|
||||
<translation>Soporte para encriptado [encendido]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1075"/>
|
||||
<location filename="../GUI.cpp" line="1087"/>
|
||||
<source>Encryption support [FORCED]</source>
|
||||
<translation>Soporte para encriptado [forzado]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1080"/>
|
||||
<location filename="../GUI.cpp" line="1092"/>
|
||||
<source>Encryption support [OFF]</source>
|
||||
<translation>Sopote para encriptado [apagado]</translation>
|
||||
</message>
|
||||
|
@ -2214,13 +2224,13 @@ Are you sure you want to quit qBittorrent?</source>
|
|||
<translation type="obsolete">Radio</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="383"/>
|
||||
<location filename="../GUI.cpp" line="395"/>
|
||||
<source>Alt+1</source>
|
||||
<comment>shortcut to switch to first tab</comment>
|
||||
<translation>Alt+1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="385"/>
|
||||
<location filename="../GUI.cpp" line="397"/>
|
||||
<source>Alt+2</source>
|
||||
<comment>shortcut to switch to second tab</comment>
|
||||
<translation>Alt+2</translation>
|
||||
|
@ -2232,18 +2242,18 @@ Are you sure you want to quit qBittorrent?</source>
|
|||
<translation type="obsolete">Alt+3, Ctrl+F</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="391"/>
|
||||
<location filename="../GUI.cpp" line="403"/>
|
||||
<source>Alt+4</source>
|
||||
<comment>shortcut to switch to fourth tab</comment>
|
||||
<translation>Alt+4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="459"/>
|
||||
<location filename="../GUI.cpp" line="471"/>
|
||||
<source>Url download error</source>
|
||||
<translation>Error de descarga de Url</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="459"/>
|
||||
<location filename="../GUI.cpp" line="471"/>
|
||||
<source>Couldn't download file at url: %1, reason: %2.</source>
|
||||
<translation>No se pudo descargar el archivo en la url: %1, razón: %2.</translation>
|
||||
</message>
|
||||
|
@ -2253,17 +2263,17 @@ Are you sure you want to quit qBittorrent?</source>
|
|||
<translation type="obsolete">Se negaron los datos para reinicio rápido del torrent: %1, verificando de nuevo...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="758"/>
|
||||
<location filename="../GUI.cpp" line="770"/>
|
||||
<source>Are you sure you want to delete the selected item(s) from download list and from hard drive?</source>
|
||||
<translation>¿Estás seguro de que deseas borrar los elementos seleccionados de la lista de descargas y el disco duro?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="765"/>
|
||||
<location filename="../GUI.cpp" line="777"/>
|
||||
<source>Are you sure you want to delete the selected item(s) from finished list and from hard drive?</source>
|
||||
<translation>¿Estás seguro de que deseas borrar los elementos selccionados de la lista de terminados y el disco duro?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="779"/>
|
||||
<location filename="../GUI.cpp" line="791"/>
|
||||
<source>'%1' was removed permanently.</source>
|
||||
<comment>'xxx.avi' was removed permanently.</comment>
|
||||
<translation>'%1' fue borrado permanentemente.</translation>
|
||||
|
@ -2274,71 +2284,71 @@ Are you sure you want to quit qBittorrent?</source>
|
|||
<translation type="obsolete">Falló la búsqueda de semilla por Url para la url: %1, mensaje: %2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="387"/>
|
||||
<location filename="../GUI.cpp" line="399"/>
|
||||
<source>Alt+3</source>
|
||||
<comment>shortcut to switch to third tab</comment>
|
||||
<translation>Alt+3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="389"/>
|
||||
<location filename="../GUI.cpp" line="401"/>
|
||||
<source>Ctrl+F</source>
|
||||
<comment>shortcut to switch to search tab</comment>
|
||||
<translation>Ctrl + F</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="785"/>
|
||||
<location filename="../GUI.cpp" line="797"/>
|
||||
<source>'%1' was removed because its ratio reached the maximum value you set.</source>
|
||||
<comment>%1 is a file name</comment>
|
||||
<translation>'%1' fue eliminado porque su radio llegó al valor máximo que estableciste.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="960"/>
|
||||
<location filename="../GUI.cpp" line="972"/>
|
||||
<source>UPnP support [OFF]</source>
|
||||
<translation>Soporte para UPnP [Apagado]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="965"/>
|
||||
<location filename="../GUI.cpp" line="977"/>
|
||||
<source>NAT-PMP support [ON]</source>
|
||||
<translation>Soporte para NAT-PMP [Encendido]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="968"/>
|
||||
<location filename="../GUI.cpp" line="980"/>
|
||||
<source>NAT-PMP support [OFF]</source>
|
||||
<translation>Soporte para NAT-PMP[Apagado]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1055"/>
|
||||
<location filename="../GUI.cpp" line="1067"/>
|
||||
<source>Local Peer Discovery [ON]</source>
|
||||
<translation>Descubrimiento local de Peers [Encendido]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1058"/>
|
||||
<location filename="../GUI.cpp" line="1070"/>
|
||||
<source>Local Peer Discovery support [OFF]</source>
|
||||
<translation>Soporte para descubrimiento local de Peers [Apagado]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1321"/>
|
||||
<location filename="../GUI.cpp" line="1339"/>
|
||||
<source>qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)</source>
|
||||
<comment>%1 is qBittorrent version</comment>
|
||||
<translation>qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1306"/>
|
||||
<location filename="../GUI.cpp" line="1324"/>
|
||||
<source>DL: %1 KiB/s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1307"/>
|
||||
<location filename="../GUI.cpp" line="1325"/>
|
||||
<source>UP: %1 KiB/s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="291"/>
|
||||
<location filename="../GUI.cpp" line="303"/>
|
||||
<source>Ratio: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="293"/>
|
||||
<location filename="../GUI.cpp" line="305"/>
|
||||
<source>DHT: %1 nodes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -4034,9 +4044,9 @@ De cualquier forma, esos plugins fueron deshabilitados.</translation>
|
|||
<translation type="obsolete"> d</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../misc.h" line="322"/>
|
||||
<location filename="../misc.h" line="303"/>
|
||||
<source>Unknown</source>
|
||||
<translation>Desconocido</translation>
|
||||
<translation type="obsolete">Desconocido</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="" line="7471221"/>
|
||||
|
@ -4195,12 +4205,12 @@ De cualquier forma, esos plugins fueron deshabilitados.</translation>
|
|||
<translation type="obsolete">Esta IP es inválida.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="774"/>
|
||||
<location filename="../options_imp.cpp" line="787"/>
|
||||
<source>Options were saved successfully.</source>
|
||||
<translation>Opciones guardadas exitosamente.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1052"/>
|
||||
<location filename="../options_imp.cpp" line="1075"/>
|
||||
<source>Choose scan directory</source>
|
||||
<translation>Selecciona un directorio a inspeccionar</translation>
|
||||
</message>
|
||||
|
@ -4210,7 +4220,7 @@ De cualquier forma, esos plugins fueron deshabilitados.</translation>
|
|||
<translation type="obsolete">Selecciona un archivo ipfilter.dat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1067"/>
|
||||
<location filename="../options_imp.cpp" line="1090"/>
|
||||
<source>Choose a save directory</source>
|
||||
<translation>Selecciona un directorio para guardar</translation>
|
||||
</message>
|
||||
|
@ -4226,12 +4236,12 @@ De cualquier forma, esos plugins fueron deshabilitados.</translation>
|
|||
<translation type="obsolete">No se pudo abrir %1 en modo lectura.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1059"/>
|
||||
<location filename="../options_imp.cpp" line="1082"/>
|
||||
<source>Choose an ip filter file</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1059"/>
|
||||
<location filename="../options_imp.cpp" line="1082"/>
|
||||
<source>Filters</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
Binary file not shown.
|
@ -184,7 +184,7 @@ Tekijänoikeus © 2006 Christophe Dumez<br>
|
|||
<translation type="obsolete">Multimediatoistin:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1839"/>
|
||||
<location filename="../options.ui" line="1858"/>
|
||||
<source>Authentication</source>
|
||||
<translation>Sisäänkirjautuminen</translation>
|
||||
</message>
|
||||
|
@ -374,12 +374,12 @@ Tekijänoikeus © 2006 Christophe Dumez<br>
|
|||
<translation type="obsolete">Lähde</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1860"/>
|
||||
<location filename="../options.ui" line="1879"/>
|
||||
<source>Password:</source>
|
||||
<translation>Salasana:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1800"/>
|
||||
<location filename="../options.ui" line="1819"/>
|
||||
<source>Port:</source>
|
||||
<translation>Portti:</translation>
|
||||
</message>
|
||||
|
@ -688,7 +688,7 @@ Tekijänoikeus © 2006 Christophe Dumez<br>
|
|||
<translation>Välityspalvelin:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1850"/>
|
||||
<location filename="../options.ui" line="1869"/>
|
||||
<source>Username:</source>
|
||||
<translation>Tunnus:</translation>
|
||||
</message>
|
||||
|
@ -773,17 +773,17 @@ Tekijänoikeus © 2006 Christophe Dumez<br>
|
|||
<translation>RSS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1660"/>
|
||||
<location filename="../options.ui" line="1676"/>
|
||||
<source>RSS feeds refresh interval:</source>
|
||||
<translation>RSS-syötteen päivitystiheys:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1680"/>
|
||||
<location filename="../options.ui" line="1696"/>
|
||||
<source>minutes</source>
|
||||
<translation>minuuttia</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1704"/>
|
||||
<location filename="../options.ui" line="1720"/>
|
||||
<source>Maximum number of articles per feed:</source>
|
||||
<translation>Artikkeleiden enimmäismäärä syötettä kohden:</translation>
|
||||
</message>
|
||||
|
@ -854,20 +854,30 @@ Tekijänoikeus © 2006 Christophe Dumez<br>
|
|||
<translation>Esitä Azureusta (vaatii uudelleenkäynnistyksen)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1765"/>
|
||||
<location filename="../options.ui" line="1784"/>
|
||||
<source>Web UI</source>
|
||||
<translation>Verkkokäyttöliittymä</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1778"/>
|
||||
<location filename="../options.ui" line="1797"/>
|
||||
<source>Enable Web User Interface</source>
|
||||
<translation>Käytä verkkokäyttöliittymää</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1791"/>
|
||||
<location filename="../options.ui" line="1810"/>
|
||||
<source>HTTP Server</source>
|
||||
<translation>HTTP-palvelin</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1629"/>
|
||||
<source>Enable RSS support</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1639"/>
|
||||
<source>RSS settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DownloadingTorrents</name>
|
||||
|
@ -1144,7 +1154,7 @@ Tekijänoikeus © 2006 Christophe Dumez<br>
|
|||
<translation type="obsolete">Haun aika tapahtui virhe...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="824"/>
|
||||
<location filename="../GUI.cpp" line="836"/>
|
||||
<source>Are you sure? -- qBittorrent</source>
|
||||
<translation>Oletko varma? — qBittorrent</translation>
|
||||
</message>
|
||||
|
@ -1154,7 +1164,7 @@ Tekijänoikeus © 2006 Christophe Dumez<br>
|
|||
<translation type="obsolete">Haluatko varmasti poistaa kaikki tiedostot latauslistasta?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="818"/>
|
||||
<location filename="../GUI.cpp" line="830"/>
|
||||
<source>Are you sure you want to delete the selected item(s) in download list?</source>
|
||||
<translation>Haluatko varmasti poistaa valitut tiedostot latauslistasta?</translation>
|
||||
</message>
|
||||
|
@ -1230,7 +1240,7 @@ Tekijänoikeus © 2006 Christophe Dumez<br>
|
|||
<translation type="obsolete">Latausnopeus</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="355"/>
|
||||
<location filename="../GUI.cpp" line="367"/>
|
||||
<source>Download finished</source>
|
||||
<translation>Lataus tuli valmiiksi</translation>
|
||||
</message>
|
||||
|
@ -1261,7 +1271,7 @@ Tekijänoikeus © 2006 Christophe Dumez<br>
|
|||
<translation type="obsolete">ETA</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1109"/>
|
||||
<location filename="../GUI.cpp" line="1127"/>
|
||||
<source>Finished</source>
|
||||
<translation>Valmis</translation>
|
||||
</message>
|
||||
|
@ -1297,7 +1307,7 @@ Tekijänoikeus © 2006 Christophe Dumez<br>
|
|||
<translation type="obsolete">Nimi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="826"/>
|
||||
<location filename="../GUI.cpp" line="838"/>
|
||||
<source>&No</source>
|
||||
<translation>&Ei</translation>
|
||||
</message>
|
||||
|
@ -1312,7 +1322,7 @@ Tekijänoikeus © 2006 Christophe Dumez<br>
|
|||
<translation type="obsolete">Hakupalvelua ei ole valittu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="716"/>
|
||||
<location filename="../GUI.cpp" line="728"/>
|
||||
<source>Open Torrent Files</source>
|
||||
<translation>Avaa torrent-tiedostoja</translation>
|
||||
</message>
|
||||
|
@ -1470,7 +1480,7 @@ Uutta esikatselua ei voi aloittaa.</translation>
|
|||
<translation type="obsolete">Tiedosto ei ole kelvollinen torrent-tiedosto.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="717"/>
|
||||
<location filename="../GUI.cpp" line="729"/>
|
||||
<source>Torrent Files</source>
|
||||
<translation>Torrent-tiedostot</translation>
|
||||
</message>
|
||||
|
@ -1495,7 +1505,7 @@ Uutta esikatselua ei voi aloittaa.</translation>
|
|||
<translation type="obsolete">Lähetysnopeus: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="826"/>
|
||||
<location filename="../GUI.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation>&Kyllä</translation>
|
||||
</message>
|
||||
|
@ -1515,23 +1525,23 @@ Uutta esikatselua ei voi aloittaa.</translation>
|
|||
<translation type="obsolete">I/O-virhe</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="908"/>
|
||||
<location filename="../GUI.cpp" line="920"/>
|
||||
<source>qBittorrent %1</source>
|
||||
<comment>e.g: qBittorrent v0.x</comment>
|
||||
<translation> qBittorrent %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>Connection status:</source>
|
||||
<translation>Yhteyden tila:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>Offline</source>
|
||||
<translation>Ei verkkoyhteyttä</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>No peers found...</source>
|
||||
<translation>Muita käyttäjiä ei löytynyt...</translation>
|
||||
</message>
|
||||
|
@ -1584,18 +1594,18 @@ Uutta esikatselua ei voi aloittaa.</translation>
|
|||
<translation type="obsolete">Lataajia</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1341"/>
|
||||
<location filename="../GUI.cpp" line="1359"/>
|
||||
<source>qBittorrent</source>
|
||||
<translation> qBittorrent</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1344"/>
|
||||
<location filename="../GUI.cpp" line="1362"/>
|
||||
<source>DL speed: %1 KiB/s</source>
|
||||
<comment>e.g: Download speed: 10 KiB/s</comment>
|
||||
<translation>Latausnopeus: %1 KiB/s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1347"/>
|
||||
<location filename="../GUI.cpp" line="1365"/>
|
||||
<source>UP speed: %1 KiB/s</source>
|
||||
<comment>e.g: Upload speed: 10 KiB/s</comment>
|
||||
<translation>Lähetysnopeus: %1 KiB/s</translation>
|
||||
|
@ -1619,12 +1629,12 @@ Uutta esikatselua ei voi aloittaa.</translation>
|
|||
<translation type="obsolete">Seisahtunut</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="611"/>
|
||||
<location filename="../GUI.cpp" line="623"/>
|
||||
<source>Are you sure you want to quit?</source>
|
||||
<translation>Haluatko varmasti poistua?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="839"/>
|
||||
<location filename="../GUI.cpp" line="851"/>
|
||||
<source>'%1' was removed.</source>
|
||||
<comment>'xxx.avi' was removed.</comment>
|
||||
<translation>”%1” poistettiin.</translation>
|
||||
|
@ -1636,12 +1646,12 @@ Uutta esikatselua ei voi aloittaa.</translation>
|
|||
<translation type="obsolete">Ei mikään</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1195"/>
|
||||
<location filename="../GUI.cpp" line="1213"/>
|
||||
<source>All downloads were paused.</source>
|
||||
<translation>Kaikki lataukset pysäytettiin.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1221"/>
|
||||
<location filename="../GUI.cpp" line="1239"/>
|
||||
<source>'%1' paused.</source>
|
||||
<comment>xxx.avi paused.</comment>
|
||||
<translation>”%1” pysäytettiin.</translation>
|
||||
|
@ -1653,52 +1663,52 @@ Uutta esikatselua ei voi aloittaa.</translation>
|
|||
<translation type="obsolete">Yhdistetään...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1254"/>
|
||||
<location filename="../GUI.cpp" line="1272"/>
|
||||
<source>All downloads were resumed.</source>
|
||||
<translation>Kaikkien latauksien lataamista jatkettiin.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1280"/>
|
||||
<location filename="../GUI.cpp" line="1298"/>
|
||||
<source>'%1' resumed.</source>
|
||||
<comment>e.g: xxx.avi resumed.</comment>
|
||||
<translation>Torrentin ”%1” lataamista jatkettiin.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="355"/>
|
||||
<location filename="../GUI.cpp" line="367"/>
|
||||
<source>%1 has finished downloading.</source>
|
||||
<comment>e.g: xxx.avi has finished downloading.</comment>
|
||||
<translation>Lataus ”%1” tuli valmiiksi.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="364"/>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<source>I/O Error</source>
|
||||
<comment>i.e: Input/Output Error</comment>
|
||||
<translation>I/O-virhe</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="364"/>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<source>An error occured when trying to read or write %1. The disk is probably full, download has been paused</source>
|
||||
<comment>e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused</comment>
|
||||
<translation>Tiedostoon %1 kirjoittaminen tai lukeminen epäonnistui. Levy saattaa olla täynnä. Lataus pysäytettiin.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>Connection Status:</source>
|
||||
<translation>Yhteyden tila:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1355"/>
|
||||
<location filename="../GUI.cpp" line="1373"/>
|
||||
<source>Online</source>
|
||||
<translation>Ei verkkoyhteyttä</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>Firewalled?</source>
|
||||
<comment>i.e: Behind a firewall/router?</comment>
|
||||
<translation>Palomuuri?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>No incoming connections...</source>
|
||||
<translation>Ei sisääntulevia yhteyksiä...</translation>
|
||||
</message>
|
||||
|
@ -1709,194 +1719,194 @@ Uutta esikatselua ei voi aloittaa.</translation>
|
|||
<translation type="obsolete">Tulokset</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<location filename="../GUI.cpp" line="388"/>
|
||||
<source>An error occured (full disk?), '%1' paused.</source>
|
||||
<comment>e.g: An error occured (full disk?), 'xxx.avi' paused.</comment>
|
||||
<translation>Virhe tapahtui (leyvy on täynnä?). Lataus ”%1” pysäytettiin.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="165"/>
|
||||
<location filename="../GUI.cpp" line="153"/>
|
||||
<source>Search</source>
|
||||
<translation>Etsi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="169"/>
|
||||
<location filename="../GUI.cpp" line="279"/>
|
||||
<source>RSS</source>
|
||||
<translation>RSS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="935"/>
|
||||
<location filename="../GUI.cpp" line="947"/>
|
||||
<source>qBittorrent is bind to port: %1</source>
|
||||
<comment>e.g: qBittorrent is bind to port: 1666</comment>
|
||||
<translation>qBittorrent kuuntelee porttia %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1036"/>
|
||||
<location filename="../GUI.cpp" line="1048"/>
|
||||
<source>DHT support [ON], port: %1</source>
|
||||
<translation>DHT-tuki [PÄÄLLÄ] portissa %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1042"/>
|
||||
<location filename="../GUI.cpp" line="1054"/>
|
||||
<source>DHT support [OFF]</source>
|
||||
<translation>DHT-tuki [EI PÄÄLLÄ]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1046"/>
|
||||
<location filename="../GUI.cpp" line="1058"/>
|
||||
<source>PeX support [ON]</source>
|
||||
<translation>PeX-tuki [PÄÄLLÄ]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1050"/>
|
||||
<location filename="../GUI.cpp" line="1062"/>
|
||||
<source>PeX support [OFF]</source>
|
||||
<translation>PeX-tuki [EI PÄÄLLÄ]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="612"/>
|
||||
<location filename="../GUI.cpp" line="624"/>
|
||||
<source>The download list is not empty.
|
||||
Are you sure you want to quit qBittorrent?</source>
|
||||
<translation>Latauslista ei ole tyhjä.
|
||||
Haluatko varmasti lopettaa?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1104"/>
|
||||
<location filename="../GUI.cpp" line="1122"/>
|
||||
<source>Downloads</source>
|
||||
<translation>Lataukset</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="825"/>
|
||||
<location filename="../GUI.cpp" line="837"/>
|
||||
<source>Are you sure you want to delete the selected item(s) in finished list?</source>
|
||||
<translation>Haluatko poistaa valitut kohteet listalta?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="957"/>
|
||||
<location filename="../GUI.cpp" line="969"/>
|
||||
<source>UPnP support [ON]</source>
|
||||
<translation>UPnP-tuki [PÄÄLLÄ]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1070"/>
|
||||
<location filename="../GUI.cpp" line="1082"/>
|
||||
<source>Encryption support [ON]</source>
|
||||
<translation>Salaus [KÄYTÖSSÄ]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1075"/>
|
||||
<location filename="../GUI.cpp" line="1087"/>
|
||||
<source>Encryption support [FORCED]</source>
|
||||
<translation>Salaus [PAKOTETTU]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1080"/>
|
||||
<location filename="../GUI.cpp" line="1092"/>
|
||||
<source>Encryption support [OFF]</source>
|
||||
<translation>Salaus [EI KÄYTÖSSÄ]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="383"/>
|
||||
<location filename="../GUI.cpp" line="395"/>
|
||||
<source>Alt+1</source>
|
||||
<comment>shortcut to switch to first tab</comment>
|
||||
<translation>Alt+1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="385"/>
|
||||
<location filename="../GUI.cpp" line="397"/>
|
||||
<source>Alt+2</source>
|
||||
<comment>shortcut to switch to second tab</comment>
|
||||
<translation>Alt+2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="391"/>
|
||||
<location filename="../GUI.cpp" line="403"/>
|
||||
<source>Alt+4</source>
|
||||
<comment>shortcut to switch to fourth tab</comment>
|
||||
<translation>Alt+4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="459"/>
|
||||
<location filename="../GUI.cpp" line="471"/>
|
||||
<source>Url download error</source>
|
||||
<translation>Latausvirhe</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="459"/>
|
||||
<location filename="../GUI.cpp" line="471"/>
|
||||
<source>Couldn't download file at url: %1, reason: %2.</source>
|
||||
<translation>Tiedoston lataaminen osoitteesta %1 epäonnistui: %2.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="758"/>
|
||||
<location filename="../GUI.cpp" line="770"/>
|
||||
<source>Are you sure you want to delete the selected item(s) from download list and from hard drive?</source>
|
||||
<translation>Haluatko varmasti poistaa valitut tiedostot listalta ja tallennusmedialta?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="765"/>
|
||||
<location filename="../GUI.cpp" line="777"/>
|
||||
<source>Are you sure you want to delete the selected item(s) from finished list and from hard drive?</source>
|
||||
<translation>Haluatko varmasti poistaa valitut tiedostot listalta ja tallennusmedialta?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="779"/>
|
||||
<location filename="../GUI.cpp" line="791"/>
|
||||
<source>'%1' was removed permanently.</source>
|
||||
<comment>'xxx.avi' was removed permanently.</comment>
|
||||
<translation>”%1” poistettiin pysyvästi.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="387"/>
|
||||
<location filename="../GUI.cpp" line="399"/>
|
||||
<source>Alt+3</source>
|
||||
<comment>shortcut to switch to third tab</comment>
|
||||
<translation>Alt+3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="389"/>
|
||||
<location filename="../GUI.cpp" line="401"/>
|
||||
<source>Ctrl+F</source>
|
||||
<comment>shortcut to switch to search tab</comment>
|
||||
<translation>Ctrl+F</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="960"/>
|
||||
<location filename="../GUI.cpp" line="972"/>
|
||||
<source>UPnP support [OFF]</source>
|
||||
<translation>UPnP-tuki [EI PÄÄLLÄ]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="965"/>
|
||||
<location filename="../GUI.cpp" line="977"/>
|
||||
<source>NAT-PMP support [ON]</source>
|
||||
<translation>NAT-PMP-tuki [PÄÄLLÄ]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="968"/>
|
||||
<location filename="../GUI.cpp" line="980"/>
|
||||
<source>NAT-PMP support [OFF]</source>
|
||||
<translation>NAT-PMP-tuki [EI PÄÄLLÄ]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1055"/>
|
||||
<location filename="../GUI.cpp" line="1067"/>
|
||||
<source>Local Peer Discovery [ON]</source>
|
||||
<translation>Paikallinen käyttäjien löytäminen [PÄÄLLÄ]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1058"/>
|
||||
<location filename="../GUI.cpp" line="1070"/>
|
||||
<source>Local Peer Discovery support [OFF]</source>
|
||||
<translation>Paikallinen käyttäjien löytäminen [EI PÄÄLLÄ]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="785"/>
|
||||
<location filename="../GUI.cpp" line="797"/>
|
||||
<source>'%1' was removed because its ratio reached the maximum value you set.</source>
|
||||
<comment>%1 is a file name</comment>
|
||||
<translation>”%1% poistettiin, koska sen jakosuhde saavutti asettamasi enimmäisarvon.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1321"/>
|
||||
<location filename="../GUI.cpp" line="1339"/>
|
||||
<source>qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)</source>
|
||||
<comment>%1 is qBittorrent version</comment>
|
||||
<translation>qBittorrent %1 (← %2 KiB/s | → %3 KiB/s)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1306"/>
|
||||
<location filename="../GUI.cpp" line="1324"/>
|
||||
<source>DL: %1 KiB/s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1307"/>
|
||||
<location filename="../GUI.cpp" line="1325"/>
|
||||
<source>UP: %1 KiB/s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="291"/>
|
||||
<location filename="../GUI.cpp" line="303"/>
|
||||
<source>Ratio: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="293"/>
|
||||
<location filename="../GUI.cpp" line="305"/>
|
||||
<source>DHT: %1 nodes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -3398,9 +3408,9 @@ Kyseiset liitänäiset poistettiin kuitenkin käytöstä.</translation>
|
|||
<translation>TiB</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../misc.h" line="322"/>
|
||||
<location filename="../misc.h" line="303"/>
|
||||
<source>Unknown</source>
|
||||
<translation>tuntematon</translation>
|
||||
<translation type="obsolete">tuntematon</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../misc.h" line="110"/>
|
||||
|
@ -3532,12 +3542,12 @@ Kyseiset liitänäiset poistettiin kuitenkin käytöstä.</translation>
|
|||
<translation type="obsolete">–</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="774"/>
|
||||
<location filename="../options_imp.cpp" line="787"/>
|
||||
<source>Options were saved successfully.</source>
|
||||
<translation>Asetukset tallennettiin.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1052"/>
|
||||
<location filename="../options_imp.cpp" line="1075"/>
|
||||
<source>Choose scan directory</source>
|
||||
<translation>Valitse hakukansio</translation>
|
||||
</message>
|
||||
|
@ -3547,7 +3557,7 @@ Kyseiset liitänäiset poistettiin kuitenkin käytöstä.</translation>
|
|||
<translation type="obsolete">Valitse ipfilter.dat-tiedosto</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1067"/>
|
||||
<location filename="../options_imp.cpp" line="1090"/>
|
||||
<source>Choose a save directory</source>
|
||||
<translation>Valitse tallennuskansio</translation>
|
||||
</message>
|
||||
|
@ -3563,12 +3573,12 @@ Kyseiset liitänäiset poistettiin kuitenkin käytöstä.</translation>
|
|||
<translation type="obsolete">Tiedoston %1 avaaminen lukutilassa epäonnistui.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1059"/>
|
||||
<location filename="../options_imp.cpp" line="1082"/>
|
||||
<source>Choose an ip filter file</source>
|
||||
<translation>Valitse IP-suodatintiedosto</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1059"/>
|
||||
<location filename="../options_imp.cpp" line="1082"/>
|
||||
<source>Filters</source>
|
||||
<translation>Suotimet</translation>
|
||||
</message>
|
||||
|
|
Binary file not shown.
|
@ -355,7 +355,7 @@ Copyright © 2006 par Christophe Dumez<br>
|
|||
<translation type="obsolete">IP du serveur :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1800"/>
|
||||
<location filename="../options.ui" line="1819"/>
|
||||
<source>Port:</source>
|
||||
<translation>Port :</translation>
|
||||
</message>
|
||||
|
@ -365,7 +365,7 @@ Copyright © 2006 par Christophe Dumez<br>
|
|||
<translation type="obsolete">Le serveur proxy nécessite une authentification</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1839"/>
|
||||
<location filename="../options.ui" line="1858"/>
|
||||
<source>Authentication</source>
|
||||
<translation>Authentification</translation>
|
||||
</message>
|
||||
|
@ -375,7 +375,7 @@ Copyright © 2006 par Christophe Dumez<br>
|
|||
<translation type="obsolete">Nom d'utilisateur :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1860"/>
|
||||
<location filename="../options.ui" line="1879"/>
|
||||
<source>Password:</source>
|
||||
<translation>Mot de passe :</translation>
|
||||
</message>
|
||||
|
@ -984,7 +984,7 @@ Copyright © 2006 par Christophe Dumez<br>
|
|||
<translation>Serveur mandataire (proxy) :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1850"/>
|
||||
<location filename="../options.ui" line="1869"/>
|
||||
<source>Username:</source>
|
||||
<translation>Nom d'utilisateur :</translation>
|
||||
</message>
|
||||
|
@ -1074,17 +1074,17 @@ Copyright © 2006 par Christophe Dumez<br>
|
|||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1660"/>
|
||||
<location filename="../options.ui" line="1676"/>
|
||||
<source>RSS feeds refresh interval:</source>
|
||||
<translation>Intervalle de rafraîchissement des flux RSS :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1680"/>
|
||||
<location filename="../options.ui" line="1696"/>
|
||||
<source>minutes</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1704"/>
|
||||
<location filename="../options.ui" line="1720"/>
|
||||
<source>Maximum number of articles per feed:</source>
|
||||
<translation>Numbre maximum d'articles par flux :</translation>
|
||||
</message>
|
||||
|
@ -1155,20 +1155,30 @@ Copyright © 2006 par Christophe Dumez<br>
|
|||
<translation>Se faire passer pour Azureus pour éviter le bannissement (redémarrage requis)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1765"/>
|
||||
<location filename="../options.ui" line="1784"/>
|
||||
<source>Web UI</source>
|
||||
<translation>Interface Web</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1778"/>
|
||||
<location filename="../options.ui" line="1797"/>
|
||||
<source>Enable Web User Interface</source>
|
||||
<translation>Activer l'interface Web</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1791"/>
|
||||
<location filename="../options.ui" line="1810"/>
|
||||
<source>HTTP Server</source>
|
||||
<translation>Serveur HTTP</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1629"/>
|
||||
<source>Enable RSS support</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1639"/>
|
||||
<source>RSS settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DownloadingTorrents</name>
|
||||
|
@ -1430,7 +1440,7 @@ Copyright © 2006 par Christophe Dumez<br>
|
|||
<translation type="obsolete">Impossible de trouver le dossier : '</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="716"/>
|
||||
<location filename="../GUI.cpp" line="728"/>
|
||||
<source>Open Torrent Files</source>
|
||||
<translation>Ouvrir fichiers torrent</translation>
|
||||
</message>
|
||||
|
@ -1465,7 +1475,7 @@ Copyright © 2006 par Christophe Dumez<br>
|
|||
<translation type="obsolete">Ce fichier est corrompu ou il ne s'agit pas d'un torrent.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="824"/>
|
||||
<location filename="../GUI.cpp" line="836"/>
|
||||
<source>Are you sure? -- qBittorrent</source>
|
||||
<translation>Etes vous sûr ? -- qBittorrent</translation>
|
||||
</message>
|
||||
|
@ -1475,17 +1485,17 @@ Copyright © 2006 par Christophe Dumez<br>
|
|||
<translation type="obsolete">Etes-vous sûr de vouloir enlever tous les fichiers de la liste de téléchargement ?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="826"/>
|
||||
<location filename="../GUI.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation>&Oui</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="826"/>
|
||||
<location filename="../GUI.cpp" line="838"/>
|
||||
<source>&No</source>
|
||||
<translation>&Non</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="818"/>
|
||||
<location filename="../GUI.cpp" line="830"/>
|
||||
<source>Are you sure you want to delete the selected item(s) in download list?</source>
|
||||
<translation>Etes-vous sûr de vouloir enlever tous les fichiers sélectionnés de la liste de téléchargement ?</translation>
|
||||
</message>
|
||||
|
@ -1510,7 +1520,7 @@ Copyright © 2006 par Christophe Dumez<br>
|
|||
<translation type="obsolete">ko/s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1109"/>
|
||||
<location filename="../GUI.cpp" line="1127"/>
|
||||
<source>Finished</source>
|
||||
<translation>Terminé</translation>
|
||||
</message>
|
||||
|
@ -1565,7 +1575,7 @@ Copyright © 2006 par Christophe Dumez<br>
|
|||
<translation type="obsolete">Impossible de créer le dossier :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="717"/>
|
||||
<location filename="../GUI.cpp" line="729"/>
|
||||
<source>Torrent Files</source>
|
||||
<translation>Fichiers Torrent</translation>
|
||||
</message>
|
||||
|
@ -1984,7 +1994,7 @@ Veuillez d'abord le quitter.</translation>
|
|||
<translation type="obsolete">Transferts</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="355"/>
|
||||
<location filename="../GUI.cpp" line="367"/>
|
||||
<source>Download finished</source>
|
||||
<translation>Téléchargement terminé</translation>
|
||||
</message>
|
||||
|
@ -2010,23 +2020,23 @@ Veuillez d'abord le quitter.</translation>
|
|||
<translation type="obsolete">Etes-vous certain de vouloir supprimer les fichiers sélectionnés depuis la liste de téléchargement ainsi que le disque dur ?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="908"/>
|
||||
<location filename="../GUI.cpp" line="920"/>
|
||||
<source>qBittorrent %1</source>
|
||||
<comment>e.g: qBittorrent v0.x</comment>
|
||||
<translation>qBittorrent %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>Connection status:</source>
|
||||
<translation>Statut de la connexion :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>Offline</source>
|
||||
<translation>Déconnecté</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>No peers found...</source>
|
||||
<translation>Aucune source trouvée...</translation>
|
||||
</message>
|
||||
|
@ -2091,18 +2101,18 @@ Veuillez d'abord le quitter.</translation>
|
|||
<translation type="obsolete">qBittorrent %1 démarré.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1341"/>
|
||||
<location filename="../GUI.cpp" line="1359"/>
|
||||
<source>qBittorrent</source>
|
||||
<translation>qBittorrent</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1344"/>
|
||||
<location filename="../GUI.cpp" line="1362"/>
|
||||
<source>DL speed: %1 KiB/s</source>
|
||||
<comment>e.g: Download speed: 10 KiB/s</comment>
|
||||
<translation>Vitesse DL : %1 Ko/s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1347"/>
|
||||
<location filename="../GUI.cpp" line="1365"/>
|
||||
<source>UP speed: %1 KiB/s</source>
|
||||
<comment>e.g: Upload speed: 10 KiB/s</comment>
|
||||
<translation>Vitesse UP : %1 Ko/s</translation>
|
||||
|
@ -2126,12 +2136,12 @@ Veuillez d'abord le quitter.</translation>
|
|||
<translation type="obsolete">En attente</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="611"/>
|
||||
<location filename="../GUI.cpp" line="623"/>
|
||||
<source>Are you sure you want to quit?</source>
|
||||
<translation>Etes vous certain de vouloir quitter ?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="839"/>
|
||||
<location filename="../GUI.cpp" line="851"/>
|
||||
<source>'%1' was removed.</source>
|
||||
<comment>'xxx.avi' was removed.</comment>
|
||||
<translation>'%1' a été supprimé.</translation>
|
||||
|
@ -2173,12 +2183,12 @@ Veuillez d'abord le quitter.</translation>
|
|||
<translation type="obsolete">En écoute sur le port: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1195"/>
|
||||
<location filename="../GUI.cpp" line="1213"/>
|
||||
<source>All downloads were paused.</source>
|
||||
<translation>Tous les téléchargements ont été mis en pause.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1221"/>
|
||||
<location filename="../GUI.cpp" line="1239"/>
|
||||
<source>'%1' paused.</source>
|
||||
<comment>xxx.avi paused.</comment>
|
||||
<translation>'%1' a été mis en pause.</translation>
|
||||
|
@ -2190,30 +2200,30 @@ Veuillez d'abord le quitter.</translation>
|
|||
<translation type="obsolete">Connexion...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1254"/>
|
||||
<location filename="../GUI.cpp" line="1272"/>
|
||||
<source>All downloads were resumed.</source>
|
||||
<translation>Tous les téléchargements ont été relancés.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1280"/>
|
||||
<location filename="../GUI.cpp" line="1298"/>
|
||||
<source>'%1' resumed.</source>
|
||||
<comment>e.g: xxx.avi resumed.</comment>
|
||||
<translation>'%1' a été relancé.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="355"/>
|
||||
<location filename="../GUI.cpp" line="367"/>
|
||||
<source>%1 has finished downloading.</source>
|
||||
<comment>e.g: xxx.avi has finished downloading.</comment>
|
||||
<translation>Le téléchargement de %1 est terminé.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="364"/>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<source>I/O Error</source>
|
||||
<comment>i.e: Input/Output Error</comment>
|
||||
<translation>Erreur E/S</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="364"/>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<source>An error occured when trying to read or write %1. The disk is probably full, download has been paused</source>
|
||||
<comment>e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused</comment>
|
||||
<translation>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</translation>
|
||||
|
@ -2225,23 +2235,23 @@ Veuillez d'abord le quitter.</translation>
|
|||
<translation type="obsolete">Une erreur s'est produite (disque plein ?), '%1' a été mis en pause.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>Connection Status:</source>
|
||||
<translation>Etat de la connexion :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1355"/>
|
||||
<location filename="../GUI.cpp" line="1373"/>
|
||||
<source>Online</source>
|
||||
<translation>Connecté</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>Firewalled?</source>
|
||||
<comment>i.e: Behind a firewall/router?</comment>
|
||||
<translation>Derrière un pare-feu ou un routeur ?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>No incoming connections...</source>
|
||||
<translation>Aucune connexion entrante...</translation>
|
||||
</message>
|
||||
|
@ -2273,56 +2283,56 @@ Veuillez d'abord le quitter.</translation>
|
|||
<translation type="obsolete">Téléchargement de '%1', veuillez patienter...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<location filename="../GUI.cpp" line="388"/>
|
||||
<source>An error occured (full disk?), '%1' paused.</source>
|
||||
<comment>e.g: An error occured (full disk?), 'xxx.avi' paused.</comment>
|
||||
<translation>Une erreur s'est produite (disque plein ?), '%1' a été mis en pause.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="165"/>
|
||||
<location filename="../GUI.cpp" line="153"/>
|
||||
<source>Search</source>
|
||||
<translation>Recherche</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="169"/>
|
||||
<location filename="../GUI.cpp" line="279"/>
|
||||
<source>RSS</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="935"/>
|
||||
<location filename="../GUI.cpp" line="947"/>
|
||||
<source>qBittorrent is bind to port: %1</source>
|
||||
<comment>e.g: qBittorrent is bind to port: 1666</comment>
|
||||
<translation>qBittorrent écoute sur le port : %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1036"/>
|
||||
<location filename="../GUI.cpp" line="1048"/>
|
||||
<source>DHT support [ON], port: %1</source>
|
||||
<translation>Support DHT [ON], port : %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1042"/>
|
||||
<location filename="../GUI.cpp" line="1054"/>
|
||||
<source>DHT support [OFF]</source>
|
||||
<translation>Support DHT [OFF]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1046"/>
|
||||
<location filename="../GUI.cpp" line="1058"/>
|
||||
<source>PeX support [ON]</source>
|
||||
<translation>Support PeX [ON]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1050"/>
|
||||
<location filename="../GUI.cpp" line="1062"/>
|
||||
<source>PeX support [OFF]</source>
|
||||
<translation>Support PeX [OFF]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="612"/>
|
||||
<location filename="../GUI.cpp" line="624"/>
|
||||
<source>The download list is not empty.
|
||||
Are you sure you want to quit qBittorrent?</source>
|
||||
<translation>La liste de téléchargement n'est pas vide.
|
||||
Etes-vous certain de vouloir quitter qBittorrent ?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1104"/>
|
||||
<location filename="../GUI.cpp" line="1122"/>
|
||||
<source>Downloads</source>
|
||||
<translation>Téléchargements</translation>
|
||||
</message>
|
||||
|
@ -2332,12 +2342,12 @@ Etes-vous certain de vouloir quitter qBittorrent ?</translation>
|
|||
<translation type="obsolete">Etes-vous certain de vouloir supprimer les torrents sélectionnés dans la liste de partage et sur le disque dur ?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="825"/>
|
||||
<location filename="../GUI.cpp" line="837"/>
|
||||
<source>Are you sure you want to delete the selected item(s) in finished list?</source>
|
||||
<translation>Etes-vous certain de vouloir supprimer les torrents sélectionnés de la liste de partage ?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="957"/>
|
||||
<location filename="../GUI.cpp" line="969"/>
|
||||
<source>UPnP support [ON]</source>
|
||||
<translation>Support UPnP [ON]</translation>
|
||||
</message>
|
||||
|
@ -2347,17 +2357,17 @@ Etes-vous certain de vouloir quitter qBittorrent ?</translation>
|
|||
<translation type="obsolete">Attention, partager des oeuvres sous copyright sans en avoir la permission est illégal.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1070"/>
|
||||
<location filename="../GUI.cpp" line="1082"/>
|
||||
<source>Encryption support [ON]</source>
|
||||
<translation>Support cryptage [ON]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1075"/>
|
||||
<location filename="../GUI.cpp" line="1087"/>
|
||||
<source>Encryption support [FORCED]</source>
|
||||
<translation>Support cryptage [Forcé]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1080"/>
|
||||
<location filename="../GUI.cpp" line="1092"/>
|
||||
<source>Encryption support [OFF]</source>
|
||||
<translation>Support cryptage [OFF]</translation>
|
||||
</message>
|
||||
|
@ -2373,13 +2383,13 @@ Etes-vous certain de vouloir quitter qBittorrent ?</translation>
|
|||
<translation type="obsolete">Ratio</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="383"/>
|
||||
<location filename="../GUI.cpp" line="395"/>
|
||||
<source>Alt+1</source>
|
||||
<comment>shortcut to switch to first tab</comment>
|
||||
<translation type="unfinished">Alt+&</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="385"/>
|
||||
<location filename="../GUI.cpp" line="397"/>
|
||||
<source>Alt+2</source>
|
||||
<comment>shortcut to switch to second tab</comment>
|
||||
<translation>Alt+é</translation>
|
||||
|
@ -2391,18 +2401,18 @@ Etes-vous certain de vouloir quitter qBittorrent ?</translation>
|
|||
<translation type="obsolete">Qt::CTRL+Qt::Key_F, Qt::Alt+Qt::Key_QuoteDbl</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="391"/>
|
||||
<location filename="../GUI.cpp" line="403"/>
|
||||
<source>Alt+4</source>
|
||||
<comment>shortcut to switch to fourth tab</comment>
|
||||
<translation>Alt+'</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="459"/>
|
||||
<location filename="../GUI.cpp" line="471"/>
|
||||
<source>Url download error</source>
|
||||
<translation>Erreur téléchargement url</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="459"/>
|
||||
<location filename="../GUI.cpp" line="471"/>
|
||||
<source>Couldn't download file at url: %1, reason: %2.</source>
|
||||
<translation>Impossible de télécharger le fichier à l'url : %1, raison : %2.</translation>
|
||||
</message>
|
||||
|
@ -2412,17 +2422,17 @@ Etes-vous certain de vouloir quitter qBittorrent ?</translation>
|
|||
<translation type="obsolete">Le relancement rapide a échoué pour le torrent %1, revérification...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="758"/>
|
||||
<location filename="../GUI.cpp" line="770"/>
|
||||
<source>Are you sure you want to delete the selected item(s) from download list and from hard drive?</source>
|
||||
<translation>Etes-vous certain de vouloir supprimer les fichiers sélectionnés depuis la liste de téléchargement ainsi que le disque dur ?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="765"/>
|
||||
<location filename="../GUI.cpp" line="777"/>
|
||||
<source>Are you sure you want to delete the selected item(s) from finished list and from hard drive?</source>
|
||||
<translation>Etes-vous certain de vouloir supprimer les torrents sélectionnés dans la liste de partage et sur le disque dur ?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="779"/>
|
||||
<location filename="../GUI.cpp" line="791"/>
|
||||
<source>'%1' was removed permanently.</source>
|
||||
<comment>'xxx.avi' was removed permanently.</comment>
|
||||
<translation>'%1' a été supprimé de manière permanente.</translation>
|
||||
|
@ -2433,71 +2443,71 @@ Etes-vous certain de vouloir quitter qBittorrent ?</translation>
|
|||
<translation type="obsolete">Le contact de la source HTTP a échoué à l'url : %1, message : %2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="387"/>
|
||||
<location filename="../GUI.cpp" line="399"/>
|
||||
<source>Alt+3</source>
|
||||
<comment>shortcut to switch to third tab</comment>
|
||||
<translation>Alt+"</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="389"/>
|
||||
<location filename="../GUI.cpp" line="401"/>
|
||||
<source>Ctrl+F</source>
|
||||
<comment>shortcut to switch to search tab</comment>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="960"/>
|
||||
<location filename="../GUI.cpp" line="972"/>
|
||||
<source>UPnP support [OFF]</source>
|
||||
<translation>Support UPNP [OFF]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="965"/>
|
||||
<location filename="../GUI.cpp" line="977"/>
|
||||
<source>NAT-PMP support [ON]</source>
|
||||
<translation>Support NAT-PMP [ON]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="968"/>
|
||||
<location filename="../GUI.cpp" line="980"/>
|
||||
<source>NAT-PMP support [OFF]</source>
|
||||
<translation>Support NAT-PMP [OFF]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1055"/>
|
||||
<location filename="../GUI.cpp" line="1067"/>
|
||||
<source>Local Peer Discovery [ON]</source>
|
||||
<translation>Découverte locale de sources [ON]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1058"/>
|
||||
<location filename="../GUI.cpp" line="1070"/>
|
||||
<source>Local Peer Discovery support [OFF]</source>
|
||||
<translation>Découverte locale de sources [OFF]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="785"/>
|
||||
<location filename="../GUI.cpp" line="797"/>
|
||||
<source>'%1' was removed because its ratio reached the maximum value you set.</source>
|
||||
<comment>%1 is a file name</comment>
|
||||
<translation>'%1' a été supprimé car son ratio a atteint la limite que vous avez fixée.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1321"/>
|
||||
<location filename="../GUI.cpp" line="1339"/>
|
||||
<source>qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)</source>
|
||||
<comment>%1 is qBittorrent version</comment>
|
||||
<translation>qBittorrent %1 (DL: %2Ko/s, UP: %3Ko/s)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1306"/>
|
||||
<location filename="../GUI.cpp" line="1324"/>
|
||||
<source>DL: %1 KiB/s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1307"/>
|
||||
<location filename="../GUI.cpp" line="1325"/>
|
||||
<source>UP: %1 KiB/s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="291"/>
|
||||
<location filename="../GUI.cpp" line="303"/>
|
||||
<source>Ratio: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="293"/>
|
||||
<location filename="../GUI.cpp" line="305"/>
|
||||
<source>DHT: %1 nodes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -4251,9 +4261,9 @@ Cependant, les greffons en question ont été désactivés.</translation>
|
|||
<translation type="obsolete"> j</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../misc.h" line="322"/>
|
||||
<location filename="../misc.h" line="303"/>
|
||||
<source>Unknown</source>
|
||||
<translation>Inconnu</translation>
|
||||
<translation type="obsolete">Inconnu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../misc.h" line="215"/>
|
||||
|
@ -4412,12 +4422,12 @@ Cependant, les greffons en question ont été désactivés.</translation>
|
|||
<translation type="obsolete">Cette adresse IP est incorrecte.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="774"/>
|
||||
<location filename="../options_imp.cpp" line="787"/>
|
||||
<source>Options were saved successfully.</source>
|
||||
<translation>Préférences sauvegardées avec succès.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1052"/>
|
||||
<location filename="../options_imp.cpp" line="1075"/>
|
||||
<source>Choose scan directory</source>
|
||||
<translation>Choisir le dossier à surveiller</translation>
|
||||
</message>
|
||||
|
@ -4427,7 +4437,7 @@ Cependant, les greffons en question ont été désactivés.</translation>
|
|||
<translation type="obsolete">Choisir un fichier ipfilter.dat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1067"/>
|
||||
<location filename="../options_imp.cpp" line="1090"/>
|
||||
<source>Choose a save directory</source>
|
||||
<translation>Choisir un répertoire de sauvegarde</translation>
|
||||
</message>
|
||||
|
@ -4443,7 +4453,7 @@ Cependant, les greffons en question ont été désactivés.</translation>
|
|||
<translation type="obsolete">Impossible d'ouvrir %1 en lecture.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1059"/>
|
||||
<location filename="../options_imp.cpp" line="1082"/>
|
||||
<source>Choose an ip filter file</source>
|
||||
<translation>Choisir un fichier de filtrage IP</translation>
|
||||
</message>
|
||||
|
@ -4453,7 +4463,7 @@ Cependant, les greffons en question ont été désactivés.</translation>
|
|||
<translation type="obsolete">Filtres (*.dat *.p2p *.p2b)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1059"/>
|
||||
<location filename="../options_imp.cpp" line="1082"/>
|
||||
<source>Filters</source>
|
||||
<translation>Filtres</translation>
|
||||
</message>
|
||||
|
|
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
|
@ -235,7 +235,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">0.0.0.0</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1800"/>
|
||||
<location filename="../options.ui" line="1819"/>
|
||||
<source>Port:</source>
|
||||
<translation>Porta:</translation>
|
||||
</message>
|
||||
|
@ -245,7 +245,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">Il server proxy richiede l'autenticazione</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1839"/>
|
||||
<location filename="../options.ui" line="1858"/>
|
||||
<source>Authentication</source>
|
||||
<translation>Autenticazione</translation>
|
||||
</message>
|
||||
|
@ -255,7 +255,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">Nome utente:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1860"/>
|
||||
<location filename="../options.ui" line="1879"/>
|
||||
<source>Password:</source>
|
||||
<translation>Password:</translation>
|
||||
</message>
|
||||
|
@ -824,7 +824,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation>Proxy:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1850"/>
|
||||
<location filename="../options.ui" line="1869"/>
|
||||
<source>Username:</source>
|
||||
<translation>Nome utente:</translation>
|
||||
</message>
|
||||
|
@ -909,17 +909,17 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation>RSS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1660"/>
|
||||
<location filename="../options.ui" line="1676"/>
|
||||
<source>RSS feeds refresh interval:</source>
|
||||
<translation>Intervallo aggiornamento feed RSS:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1680"/>
|
||||
<location filename="../options.ui" line="1696"/>
|
||||
<source>minutes</source>
|
||||
<translation>minuti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1704"/>
|
||||
<location filename="../options.ui" line="1720"/>
|
||||
<source>Maximum number of articles per feed:</source>
|
||||
<translation>Numero massimo di articoli per feed:</translation>
|
||||
</message>
|
||||
|
@ -990,20 +990,30 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation>Spoofing di Azureus per evitare il ban (richiede riavvio)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1765"/>
|
||||
<location filename="../options.ui" line="1784"/>
|
||||
<source>Web UI</source>
|
||||
<translation>Interfaccia Web</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1778"/>
|
||||
<location filename="../options.ui" line="1797"/>
|
||||
<source>Enable Web User Interface</source>
|
||||
<translation>Abilita interfaccia Web</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1791"/>
|
||||
<location filename="../options.ui" line="1810"/>
|
||||
<source>HTTP Server</source>
|
||||
<translation>Server HTTP</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1629"/>
|
||||
<source>Enable RSS support</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1639"/>
|
||||
<source>RSS settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DownloadingTorrents</name>
|
||||
|
@ -1242,7 +1252,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<context>
|
||||
<name>GUI</name>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="716"/>
|
||||
<location filename="../GUI.cpp" line="728"/>
|
||||
<source>Open Torrent Files</source>
|
||||
<translation>Apri file torrent</translation>
|
||||
</message>
|
||||
|
@ -1257,22 +1267,22 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">Sei sicuro di voler cancellare tutti i file nella lista di download?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="826"/>
|
||||
<location filename="../GUI.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation>&Sì</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="826"/>
|
||||
<location filename="../GUI.cpp" line="838"/>
|
||||
<source>&No</source>
|
||||
<translation>&No</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="818"/>
|
||||
<location filename="../GUI.cpp" line="830"/>
|
||||
<source>Are you sure you want to delete the selected item(s) in download list?</source>
|
||||
<translation>Sei sicuro di voler cancellare gli elementi selezionati dalla lista dei download?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1109"/>
|
||||
<location filename="../GUI.cpp" line="1127"/>
|
||||
<source>Finished</source>
|
||||
<translation>In Upload</translation>
|
||||
</message>
|
||||
|
@ -1322,7 +1332,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">Impossibile creare la directory:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="717"/>
|
||||
<location filename="../GUI.cpp" line="729"/>
|
||||
<source>Torrent Files</source>
|
||||
<translation>File torrent</translation>
|
||||
</message>
|
||||
|
@ -1376,7 +1386,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">qBittorrent </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="824"/>
|
||||
<location filename="../GUI.cpp" line="836"/>
|
||||
<source>Are you sure? -- qBittorrent</source>
|
||||
<translation>Sei sicuro? -- qBittorrent</translation>
|
||||
</message>
|
||||
|
@ -1614,7 +1624,7 @@ Example: Downloading www.example.com/test.torrent</comment>
|
|||
<translation type="obsolete">Downloading</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="355"/>
|
||||
<location filename="../GUI.cpp" line="367"/>
|
||||
<source>Download finished</source>
|
||||
<translation>Download completato</translation>
|
||||
</message>
|
||||
|
@ -1645,23 +1655,23 @@ Example: Downloading www.example.com/test.torrent</comment>
|
|||
<translation type="obsolete">Errore I/O</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="908"/>
|
||||
<location filename="../GUI.cpp" line="920"/>
|
||||
<source>qBittorrent %1</source>
|
||||
<comment>e.g: qBittorrent v0.x</comment>
|
||||
<translation>qBittorrent %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>Connection status:</source>
|
||||
<translation>Stato della connessione:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>Offline</source>
|
||||
<translation>Offline</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>No peers found...</source>
|
||||
<translation>Nessun peer trovato...</translation>
|
||||
</message>
|
||||
|
@ -1726,18 +1736,18 @@ Example: Downloading www.example.com/test.torrent</comment>
|
|||
<translation type="obsolete">qBittorrent %1 avviato.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1341"/>
|
||||
<location filename="../GUI.cpp" line="1359"/>
|
||||
<source>qBittorrent</source>
|
||||
<translation>qBittorrent</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1344"/>
|
||||
<location filename="../GUI.cpp" line="1362"/>
|
||||
<source>DL speed: %1 KiB/s</source>
|
||||
<comment>e.g: Download speed: 10 KiB/s</comment>
|
||||
<translation>Velocità DL: %1 KiB/s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1347"/>
|
||||
<location filename="../GUI.cpp" line="1365"/>
|
||||
<source>UP speed: %1 KiB/s</source>
|
||||
<comment>e.g: Upload speed: 10 KiB/s</comment>
|
||||
<translation>Velocità UP: %1 KiB/s</translation>
|
||||
|
@ -1761,12 +1771,12 @@ Example: Downloading www.example.com/test.torrent</comment>
|
|||
<translation type="obsolete">In Stallo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="611"/>
|
||||
<location filename="../GUI.cpp" line="623"/>
|
||||
<source>Are you sure you want to quit?</source>
|
||||
<translation>Sei sicuro di voler uscire?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="839"/>
|
||||
<location filename="../GUI.cpp" line="851"/>
|
||||
<source>'%1' was removed.</source>
|
||||
<comment>'xxx.avi' was removed.</comment>
|
||||
<translation>'%1' è stato rimosso.</translation>
|
||||
|
@ -1808,12 +1818,12 @@ Example: Downloading www.example.com/test.torrent</comment>
|
|||
<translation type="obsolete">In ascolto sulla porta: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1195"/>
|
||||
<location filename="../GUI.cpp" line="1213"/>
|
||||
<source>All downloads were paused.</source>
|
||||
<translation>Tutti i download sono stati fermati.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1221"/>
|
||||
<location filename="../GUI.cpp" line="1239"/>
|
||||
<source>'%1' paused.</source>
|
||||
<comment>xxx.avi paused.</comment>
|
||||
<translation>'%1' fermato.</translation>
|
||||
|
@ -1825,52 +1835,52 @@ Example: Downloading www.example.com/test.torrent</comment>
|
|||
<translation type="obsolete">Connessione in corso...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1254"/>
|
||||
<location filename="../GUI.cpp" line="1272"/>
|
||||
<source>All downloads were resumed.</source>
|
||||
<translation>Tutti i download sono stati ripresi.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1280"/>
|
||||
<location filename="../GUI.cpp" line="1298"/>
|
||||
<source>'%1' resumed.</source>
|
||||
<comment>e.g: xxx.avi resumed.</comment>
|
||||
<translation>'%1' ripreso.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="355"/>
|
||||
<location filename="../GUI.cpp" line="367"/>
|
||||
<source>%1 has finished downloading.</source>
|
||||
<comment>e.g: xxx.avi has finished downloading.</comment>
|
||||
<translation>%1 è stato scaricato.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="364"/>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<source>I/O Error</source>
|
||||
<comment>i.e: Input/Output Error</comment>
|
||||
<translation>Errore I/O</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="364"/>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<source>An error occured when trying to read or write %1. The disk is probably full, download has been paused</source>
|
||||
<comment>e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused</comment>
|
||||
<translation>Errore di scrittura o di lettura con %1. Probabilmente il disco è pieno, il download è stato fermato</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>Connection Status:</source>
|
||||
<translation>Stato della connessione:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1355"/>
|
||||
<location filename="../GUI.cpp" line="1373"/>
|
||||
<source>Online</source>
|
||||
<translation>Online</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>Firewalled?</source>
|
||||
<comment>i.e: Behind a firewall/router?</comment>
|
||||
<translation>Dietro firewall?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>No incoming connections...</source>
|
||||
<translation>Nessuna connession in entrata...</translation>
|
||||
</message>
|
||||
|
@ -1902,66 +1912,66 @@ Example: Downloading www.example.com/test.torrent</comment>
|
|||
<translation type="obsolete">Download di '%1' in corso...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<location filename="../GUI.cpp" line="388"/>
|
||||
<source>An error occured (full disk?), '%1' paused.</source>
|
||||
<comment>e.g: An error occured (full disk?), 'xxx.avi' paused.</comment>
|
||||
<translation>C'è stato un errore (disco pieno?), '%1' fermato.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="165"/>
|
||||
<location filename="../GUI.cpp" line="153"/>
|
||||
<source>Search</source>
|
||||
<translation>Ricerca</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="169"/>
|
||||
<location filename="../GUI.cpp" line="279"/>
|
||||
<source>RSS</source>
|
||||
<translation>RSS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="935"/>
|
||||
<location filename="../GUI.cpp" line="947"/>
|
||||
<source>qBittorrent is bind to port: %1</source>
|
||||
<comment>e.g: qBittorrent is bind to port: 1666</comment>
|
||||
<translation>qBittorrent è in ascolto sulla porta: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1036"/>
|
||||
<location filename="../GUI.cpp" line="1048"/>
|
||||
<source>DHT support [ON], port: %1</source>
|
||||
<translation>Supporto DHT [ON], porta: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1042"/>
|
||||
<location filename="../GUI.cpp" line="1054"/>
|
||||
<source>DHT support [OFF]</source>
|
||||
<translation>Supporto DHT [OFF]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1046"/>
|
||||
<location filename="../GUI.cpp" line="1058"/>
|
||||
<source>PeX support [ON]</source>
|
||||
<translation>Supporto PeX [ON]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1050"/>
|
||||
<location filename="../GUI.cpp" line="1062"/>
|
||||
<source>PeX support [OFF]</source>
|
||||
<translation>Supporto PeX [OFF]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="612"/>
|
||||
<location filename="../GUI.cpp" line="624"/>
|
||||
<source>The download list is not empty.
|
||||
Are you sure you want to quit qBittorrent?</source>
|
||||
<translation>La lista dei download non è vuota.
|
||||
Sei sicuro di voler uscire da qBittorrent?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1104"/>
|
||||
<location filename="../GUI.cpp" line="1122"/>
|
||||
<source>Downloads</source>
|
||||
<translation>In Download</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="825"/>
|
||||
<location filename="../GUI.cpp" line="837"/>
|
||||
<source>Are you sure you want to delete the selected item(s) in finished list?</source>
|
||||
<translation>Sei sicuro di voler cancellare gli elementi selezionati dalla lista dei download completati?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="957"/>
|
||||
<location filename="../GUI.cpp" line="969"/>
|
||||
<source>UPnP support [ON]</source>
|
||||
<translation>Supporto UPnP [ON]</translation>
|
||||
</message>
|
||||
|
@ -1971,17 +1981,17 @@ Sei sicuro di voler uscire da qBittorrent?</translation>
|
|||
<translation type="obsolete">Attenzione, condividere materiale protetto da copyright senza il permesso è illegale.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1070"/>
|
||||
<location filename="../GUI.cpp" line="1082"/>
|
||||
<source>Encryption support [ON]</source>
|
||||
<translation>Supporto cifratura [ON]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1075"/>
|
||||
<location filename="../GUI.cpp" line="1087"/>
|
||||
<source>Encryption support [FORCED]</source>
|
||||
<translation>Supporto cifratura [FORZATO]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1080"/>
|
||||
<location filename="../GUI.cpp" line="1092"/>
|
||||
<source>Encryption support [OFF]</source>
|
||||
<translation>Supporto cifratura [OFF]</translation>
|
||||
</message>
|
||||
|
@ -1997,13 +2007,13 @@ Sei sicuro di voler uscire da qBittorrent?</translation>
|
|||
<translation type="obsolete">Rapporto</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="383"/>
|
||||
<location filename="../GUI.cpp" line="395"/>
|
||||
<source>Alt+1</source>
|
||||
<comment>shortcut to switch to first tab</comment>
|
||||
<translation>Alt+1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="385"/>
|
||||
<location filename="../GUI.cpp" line="397"/>
|
||||
<source>Alt+2</source>
|
||||
<comment>shortcut to switch to second tab</comment>
|
||||
<translation>Alt+2</translation>
|
||||
|
@ -2015,18 +2025,18 @@ Sei sicuro di voler uscire da qBittorrent?</translation>
|
|||
<translation type="obsolete">Alt+3, Ctrl+F</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="391"/>
|
||||
<location filename="../GUI.cpp" line="403"/>
|
||||
<source>Alt+4</source>
|
||||
<comment>shortcut to switch to fourth tab</comment>
|
||||
<translation>Alt+4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="459"/>
|
||||
<location filename="../GUI.cpp" line="471"/>
|
||||
<source>Url download error</source>
|
||||
<translation>Errore download da url</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="459"/>
|
||||
<location filename="../GUI.cpp" line="471"/>
|
||||
<source>Couldn't download file at url: %1, reason: %2.</source>
|
||||
<translation>Impossibile scaricare il file all'indirizzo: %1, motivo: %2.</translation>
|
||||
</message>
|
||||
|
@ -2036,17 +2046,17 @@ Sei sicuro di voler uscire da qBittorrent?</translation>
|
|||
<translation type="obsolete">Il recupero veloce del torrent %1 è stato rifiutato, altro tentativo in corso...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="758"/>
|
||||
<location filename="../GUI.cpp" line="770"/>
|
||||
<source>Are you sure you want to delete the selected item(s) from download list and from hard drive?</source>
|
||||
<translation>Sei sicuro di voler rimuovere gli elementi selezionati dalla lista dei download e dal disco?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="765"/>
|
||||
<location filename="../GUI.cpp" line="777"/>
|
||||
<source>Are you sure you want to delete the selected item(s) from finished list and from hard drive?</source>
|
||||
<translation>Sei sicuro di voler rimuovere gli oggetti selezionati dalla lista dei download completati e dal disco?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="779"/>
|
||||
<location filename="../GUI.cpp" line="791"/>
|
||||
<source>'%1' was removed permanently.</source>
|
||||
<comment>'xxx.avi' was removed permanently.</comment>
|
||||
<translation>'%1' è stato cancellato permanentemente.</translation>
|
||||
|
@ -2057,71 +2067,71 @@ Sei sicuro di voler uscire da qBittorrent?</translation>
|
|||
<translation type="obsolete">Fallito seed per l'url: %1, messaggio: %2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="387"/>
|
||||
<location filename="../GUI.cpp" line="399"/>
|
||||
<source>Alt+3</source>
|
||||
<comment>shortcut to switch to third tab</comment>
|
||||
<translation>Alt+3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="389"/>
|
||||
<location filename="../GUI.cpp" line="401"/>
|
||||
<source>Ctrl+F</source>
|
||||
<comment>shortcut to switch to search tab</comment>
|
||||
<translation>Ctrl+F</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="960"/>
|
||||
<location filename="../GUI.cpp" line="972"/>
|
||||
<source>UPnP support [OFF]</source>
|
||||
<translation>Supporto UPnP [OFF]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="965"/>
|
||||
<location filename="../GUI.cpp" line="977"/>
|
||||
<source>NAT-PMP support [ON]</source>
|
||||
<translation>Supporto NAT-PMP [ON]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="968"/>
|
||||
<location filename="../GUI.cpp" line="980"/>
|
||||
<source>NAT-PMP support [OFF]</source>
|
||||
<translation>Supporto NAT-PMP [OFF]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1055"/>
|
||||
<location filename="../GUI.cpp" line="1067"/>
|
||||
<source>Local Peer Discovery [ON]</source>
|
||||
<translation>Supporto scoperta peer locali [ON]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1058"/>
|
||||
<location filename="../GUI.cpp" line="1070"/>
|
||||
<source>Local Peer Discovery support [OFF]</source>
|
||||
<translation>Supporto scoperta peer locali [OFF]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="785"/>
|
||||
<location filename="../GUI.cpp" line="797"/>
|
||||
<source>'%1' was removed because its ratio reached the maximum value you set.</source>
|
||||
<comment>%1 is a file name</comment>
|
||||
<translation>'%1' è stato rimosso perché il suo rapporto di condivisione ha raggiunto il massimo stabilito.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1321"/>
|
||||
<location filename="../GUI.cpp" line="1339"/>
|
||||
<source>qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)</source>
|
||||
<comment>%1 is qBittorrent version</comment>
|
||||
<translation>qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1306"/>
|
||||
<location filename="../GUI.cpp" line="1324"/>
|
||||
<source>DL: %1 KiB/s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1307"/>
|
||||
<location filename="../GUI.cpp" line="1325"/>
|
||||
<source>UP: %1 KiB/s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="291"/>
|
||||
<location filename="../GUI.cpp" line="303"/>
|
||||
<source>Ratio: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="293"/>
|
||||
<location filename="../GUI.cpp" line="305"/>
|
||||
<source>DHT: %1 nodes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -3721,9 +3731,9 @@ Comunque, quei plugin sono stati disabilitati.</translation>
|
|||
<translation type="obsolete">gg</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../misc.h" line="322"/>
|
||||
<location filename="../misc.h" line="303"/>
|
||||
<source>Unknown</source>
|
||||
<translation>Sconosciuto</translation>
|
||||
<translation type="obsolete">Sconosciuto</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../misc.h" line="220"/>
|
||||
|
@ -3882,12 +3892,12 @@ Comunque, quei plugin sono stati disabilitati.</translation>
|
|||
<translation type="obsolete">Questo IP è invalido.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="774"/>
|
||||
<location filename="../options_imp.cpp" line="787"/>
|
||||
<source>Options were saved successfully.</source>
|
||||
<translation>Le opzioni sono state salvate.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1052"/>
|
||||
<location filename="../options_imp.cpp" line="1075"/>
|
||||
<source>Choose scan directory</source>
|
||||
<translation>Scegliere una directory</translation>
|
||||
</message>
|
||||
|
@ -3897,7 +3907,7 @@ Comunque, quei plugin sono stati disabilitati.</translation>
|
|||
<translation type="obsolete">Scegliere un file ipfilter.dat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1067"/>
|
||||
<location filename="../options_imp.cpp" line="1090"/>
|
||||
<source>Choose a save directory</source>
|
||||
<translation>Scegliere una directory di salvataggio</translation>
|
||||
</message>
|
||||
|
@ -3913,12 +3923,12 @@ Comunque, quei plugin sono stati disabilitati.</translation>
|
|||
<translation type="obsolete">Impossibile aprire %1 in lettura.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1059"/>
|
||||
<location filename="../options_imp.cpp" line="1082"/>
|
||||
<source>Choose an ip filter file</source>
|
||||
<translation>Scegliere un file ip filter</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1059"/>
|
||||
<location filename="../options_imp.cpp" line="1082"/>
|
||||
<source>Filters</source>
|
||||
<translation>Filtri</translation>
|
||||
</message>
|
||||
|
|
Binary file not shown.
|
@ -224,7 +224,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">0.0.0.0</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1800"/>
|
||||
<location filename="../options.ui" line="1819"/>
|
||||
<source>Port:</source>
|
||||
<translation>ポート:</translation>
|
||||
</message>
|
||||
|
@ -234,7 +234,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">プロキシ サーバーは認証を必要とします</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1839"/>
|
||||
<location filename="../options.ui" line="1858"/>
|
||||
<source>Authentication</source>
|
||||
<translation>認証</translation>
|
||||
</message>
|
||||
|
@ -244,7 +244,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">ユーザー名:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1860"/>
|
||||
<location filename="../options.ui" line="1879"/>
|
||||
<source>Password:</source>
|
||||
<translation>パスワード:</translation>
|
||||
</message>
|
||||
|
@ -783,7 +783,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation>プロキシ:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1850"/>
|
||||
<location filename="../options.ui" line="1869"/>
|
||||
<source>Username:</source>
|
||||
<translation>ユーザー名:</translation>
|
||||
</message>
|
||||
|
@ -868,17 +868,17 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation>RSS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1660"/>
|
||||
<location filename="../options.ui" line="1676"/>
|
||||
<source>RSS feeds refresh interval:</source>
|
||||
<translation>RSS フィードの更新の間隔:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1680"/>
|
||||
<location filename="../options.ui" line="1696"/>
|
||||
<source>minutes</source>
|
||||
<translation>分</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1704"/>
|
||||
<location filename="../options.ui" line="1720"/>
|
||||
<source>Maximum number of articles per feed:</source>
|
||||
<translation>フィードあたりの最大記事数:</translation>
|
||||
</message>
|
||||
|
@ -949,20 +949,30 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1765"/>
|
||||
<location filename="../options.ui" line="1784"/>
|
||||
<source>Web UI</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1778"/>
|
||||
<location filename="../options.ui" line="1797"/>
|
||||
<source>Enable Web User Interface</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1791"/>
|
||||
<location filename="../options.ui" line="1810"/>
|
||||
<source>HTTP Server</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1629"/>
|
||||
<source>Enable RSS support</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1639"/>
|
||||
<source>RSS settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DownloadingTorrents</name>
|
||||
|
@ -1219,7 +1229,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<context>
|
||||
<name>GUI</name>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="716"/>
|
||||
<location filename="../GUI.cpp" line="728"/>
|
||||
<source>Open Torrent Files</source>
|
||||
<translation>Torrent ファイルを開く</translation>
|
||||
</message>
|
||||
|
@ -1229,17 +1239,17 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">このファイルは壊れているかこれは torrent ではないかのどちらかです。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="826"/>
|
||||
<location filename="../GUI.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation>はい(&Y)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="826"/>
|
||||
<location filename="../GUI.cpp" line="838"/>
|
||||
<source>&No</source>
|
||||
<translation>いいえ(&N)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="818"/>
|
||||
<location filename="../GUI.cpp" line="830"/>
|
||||
<source>Are you sure you want to delete the selected item(s) in download list?</source>
|
||||
<translation>ダウンロードの一覧にある選択されたアイテムを削除してもよろしいですか?</translation>
|
||||
</message>
|
||||
|
@ -1254,12 +1264,12 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">ダウンロードしています....</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="717"/>
|
||||
<location filename="../GUI.cpp" line="729"/>
|
||||
<source>Torrent Files</source>
|
||||
<translation>Torrent ファイル</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="824"/>
|
||||
<location filename="../GUI.cpp" line="836"/>
|
||||
<source>Are you sure? -- qBittorrent</source>
|
||||
<translation>よろしいですか? -- qBittorrent</translation>
|
||||
</message>
|
||||
|
@ -1291,7 +1301,7 @@ Please close the other one first.</source>
|
|||
まず他の 1 つを閉じてください。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="355"/>
|
||||
<location filename="../GUI.cpp" line="367"/>
|
||||
<source>Download finished</source>
|
||||
<translation>ダウンロードが完了しました</translation>
|
||||
</message>
|
||||
|
@ -1301,23 +1311,23 @@ Please close the other one first.</source>
|
|||
<translation type="obsolete">ダウンロードの一覧およびハード ドライブにある選択されたアイテムを削除してもよろしいですか?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="908"/>
|
||||
<location filename="../GUI.cpp" line="920"/>
|
||||
<source>qBittorrent %1</source>
|
||||
<comment>e.g: qBittorrent v0.x</comment>
|
||||
<translation>qBittorrent %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>Connection status:</source>
|
||||
<translation>接続状態:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>Offline</source>
|
||||
<translation>オフライン</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>No peers found...</source>
|
||||
<translation>ピアが見つかりません...</translation>
|
||||
</message>
|
||||
|
@ -1370,18 +1380,18 @@ Please close the other one first.</source>
|
|||
<translation type="obsolete">qBittorrent %1 が開始されました。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1341"/>
|
||||
<location filename="../GUI.cpp" line="1359"/>
|
||||
<source>qBittorrent</source>
|
||||
<translation>qBittorrent</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1344"/>
|
||||
<location filename="../GUI.cpp" line="1362"/>
|
||||
<source>DL speed: %1 KiB/s</source>
|
||||
<comment>e.g: Download speed: 10 KiB/s</comment>
|
||||
<translation>DL 速度: %1 KiB/s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1347"/>
|
||||
<location filename="../GUI.cpp" line="1365"/>
|
||||
<source>UP speed: %1 KiB/s</source>
|
||||
<comment>e.g: Upload speed: 10 KiB/s</comment>
|
||||
<translation>UP 速度: %1 KiB/s</translation>
|
||||
|
@ -1399,12 +1409,12 @@ Please close the other one first.</source>
|
|||
<translation type="obsolete">失速しました</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="611"/>
|
||||
<location filename="../GUI.cpp" line="623"/>
|
||||
<source>Are you sure you want to quit?</source>
|
||||
<translation>終了してもよろしいですか?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="839"/>
|
||||
<location filename="../GUI.cpp" line="851"/>
|
||||
<source>'%1' was removed.</source>
|
||||
<comment>'xxx.avi' was removed.</comment>
|
||||
<translation>'%1' は削除されました。</translation>
|
||||
|
@ -1440,12 +1450,12 @@ Please close the other one first.</source>
|
|||
<translation type="obsolete">なし</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1195"/>
|
||||
<location filename="../GUI.cpp" line="1213"/>
|
||||
<source>All downloads were paused.</source>
|
||||
<translation>すべてのダウンロードが一時停止されました。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1221"/>
|
||||
<location filename="../GUI.cpp" line="1239"/>
|
||||
<source>'%1' paused.</source>
|
||||
<comment>xxx.avi paused.</comment>
|
||||
<translation>'%1' が停止されました。</translation>
|
||||
|
@ -1457,52 +1467,52 @@ Please close the other one first.</source>
|
|||
<translation type="obsolete">接続しています...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1254"/>
|
||||
<location filename="../GUI.cpp" line="1272"/>
|
||||
<source>All downloads were resumed.</source>
|
||||
<translation>すべてのダウンロードが再開されました。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1280"/>
|
||||
<location filename="../GUI.cpp" line="1298"/>
|
||||
<source>'%1' resumed.</source>
|
||||
<comment>e.g: xxx.avi resumed.</comment>
|
||||
<translation>'%1' が再開されました。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="355"/>
|
||||
<location filename="../GUI.cpp" line="367"/>
|
||||
<source>%1 has finished downloading.</source>
|
||||
<comment>e.g: xxx.avi has finished downloading.</comment>
|
||||
<translation>%1 はダウンロードが完了しました。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="364"/>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<source>I/O Error</source>
|
||||
<comment>i.e: Input/Output Error</comment>
|
||||
<translation>I/O エラー</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="364"/>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<source>An error occured when trying to read or write %1. The disk is probably full, download has been paused</source>
|
||||
<comment>e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused</comment>
|
||||
<translation>%1 の読み込みまたは書き込みを試行にエラーが発生しました。ディスクはおそらくいっぱいです、ダウンロードは一時停止されました</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>Connection Status:</source>
|
||||
<translation>接続状態:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1355"/>
|
||||
<location filename="../GUI.cpp" line="1373"/>
|
||||
<source>Online</source>
|
||||
<translation>オンライン</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>Firewalled?</source>
|
||||
<comment>i.e: Behind a firewall/router?</comment>
|
||||
<translation>ファイアウォールされましたか?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>No incoming connections...</source>
|
||||
<translation>次期接続がありません...</translation>
|
||||
</message>
|
||||
|
@ -1513,18 +1523,18 @@ Please close the other one first.</source>
|
|||
<translation type="obsolete">'%1' をダウンロードしています、お待ちください...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<location filename="../GUI.cpp" line="388"/>
|
||||
<source>An error occured (full disk?), '%1' paused.</source>
|
||||
<comment>e.g: An error occured (full disk?), 'xxx.avi' paused.</comment>
|
||||
<translation>エラーが発生しました (ディスクいっぱい?)、'%1' が停止されました。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="165"/>
|
||||
<location filename="../GUI.cpp" line="153"/>
|
||||
<source>Search</source>
|
||||
<translation>検索</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="169"/>
|
||||
<location filename="../GUI.cpp" line="279"/>
|
||||
<source>RSS</source>
|
||||
<translation>RSS</translation>
|
||||
</message>
|
||||
|
@ -1539,18 +1549,18 @@ Please close the other one first.</source>
|
|||
<translation type="obsolete">UPnP: WAN が検出されました!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="935"/>
|
||||
<location filename="../GUI.cpp" line="947"/>
|
||||
<source>qBittorrent is bind to port: %1</source>
|
||||
<comment>e.g: qBittorrent is bind to port: 1666</comment>
|
||||
<translation>qBittorrent は次のポートに拘束されています: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1036"/>
|
||||
<location filename="../GUI.cpp" line="1048"/>
|
||||
<source>DHT support [ON], port: %1</source>
|
||||
<translation>DHT サポート [オン]、ポート: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1042"/>
|
||||
<location filename="../GUI.cpp" line="1054"/>
|
||||
<source>DHT support [OFF]</source>
|
||||
<translation>DHT サポート [オフ]</translation>
|
||||
</message>
|
||||
|
@ -1560,34 +1570,34 @@ Please close the other one first.</source>
|
|||
<translation type="obsolete">UPnP サポート [オン]、ポート: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="960"/>
|
||||
<location filename="../GUI.cpp" line="972"/>
|
||||
<source>UPnP support [OFF]</source>
|
||||
<translation>UPnP サポート [オフ]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1046"/>
|
||||
<location filename="../GUI.cpp" line="1058"/>
|
||||
<source>PeX support [ON]</source>
|
||||
<translation>PeX サポート [オン]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1050"/>
|
||||
<location filename="../GUI.cpp" line="1062"/>
|
||||
<source>PeX support [OFF]</source>
|
||||
<translation>PeX サポート [オフ]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="612"/>
|
||||
<location filename="../GUI.cpp" line="624"/>
|
||||
<source>The download list is not empty.
|
||||
Are you sure you want to quit qBittorrent?</source>
|
||||
<translation>ダウンロードの一覧は空ではありません。
|
||||
qBittorrent を終了してもよろしいですか?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1104"/>
|
||||
<location filename="../GUI.cpp" line="1122"/>
|
||||
<source>Downloads</source>
|
||||
<translation>ダウンロード</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1109"/>
|
||||
<location filename="../GUI.cpp" line="1127"/>
|
||||
<source>Finished</source>
|
||||
<translation>完了しました</translation>
|
||||
</message>
|
||||
|
@ -1597,12 +1607,12 @@ qBittorrent を終了してもよろしいですか?</translation>
|
|||
<translation type="obsolete">完了済みの一覧およびハード ドライブにある選択されたアイテムを削除してもよろしいですか?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="825"/>
|
||||
<location filename="../GUI.cpp" line="837"/>
|
||||
<source>Are you sure you want to delete the selected item(s) in finished list?</source>
|
||||
<translation>ダウンロードの一覧にある選択されたアイテムを削除してもよろしいですか?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="957"/>
|
||||
<location filename="../GUI.cpp" line="969"/>
|
||||
<source>UPnP support [ON]</source>
|
||||
<translation>UPnP サポート [オン]</translation>
|
||||
</message>
|
||||
|
@ -1612,17 +1622,17 @@ qBittorrent を終了してもよろしいですか?</translation>
|
|||
<translation type="obsolete">ご用心ください、許可なしの著作権のある材料の共有は法律に違反しています。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1070"/>
|
||||
<location filename="../GUI.cpp" line="1082"/>
|
||||
<source>Encryption support [ON]</source>
|
||||
<translation>暗号化サポート [オン]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1075"/>
|
||||
<location filename="../GUI.cpp" line="1087"/>
|
||||
<source>Encryption support [FORCED]</source>
|
||||
<translation>暗号化サポート [強制済み]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1080"/>
|
||||
<location filename="../GUI.cpp" line="1092"/>
|
||||
<source>Encryption support [OFF]</source>
|
||||
<translation>暗号化サポート [オフ]</translation>
|
||||
</message>
|
||||
|
@ -1638,13 +1648,13 @@ qBittorrent を終了してもよろしいですか?</translation>
|
|||
<translation type="obsolete">率</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="383"/>
|
||||
<location filename="../GUI.cpp" line="395"/>
|
||||
<source>Alt+1</source>
|
||||
<comment>shortcut to switch to first tab</comment>
|
||||
<translation>Alt+1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="385"/>
|
||||
<location filename="../GUI.cpp" line="397"/>
|
||||
<source>Alt+2</source>
|
||||
<comment>shortcut to switch to second tab</comment>
|
||||
<translation>Alt+2</translation>
|
||||
|
@ -1656,18 +1666,18 @@ qBittorrent を終了してもよろしいですか?</translation>
|
|||
<translation type="obsolete">Alt+3、Ctrl+F</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="391"/>
|
||||
<location filename="../GUI.cpp" line="403"/>
|
||||
<source>Alt+4</source>
|
||||
<comment>shortcut to switch to fourth tab</comment>
|
||||
<translation>Alt+4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="459"/>
|
||||
<location filename="../GUI.cpp" line="471"/>
|
||||
<source>Url download error</source>
|
||||
<translation>Url のダウンロード エラー</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="459"/>
|
||||
<location filename="../GUI.cpp" line="471"/>
|
||||
<source>Couldn't download file at url: %1, reason: %2.</source>
|
||||
<translation>次の url にあるファイルをダウンロードできませんでした: %1、理由: %2。</translation>
|
||||
</message>
|
||||
|
@ -1677,17 +1687,17 @@ qBittorrent を終了してもよろしいですか?</translation>
|
|||
<translation type="obsolete">高速再開データは torrent %1 を拒絶しました、再びチェックしています...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="758"/>
|
||||
<location filename="../GUI.cpp" line="770"/>
|
||||
<source>Are you sure you want to delete the selected item(s) from download list and from hard drive?</source>
|
||||
<translation>ダウンロードの一覧とハード ドライブから選択されたアイテムを削除してもよろしいですか?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="765"/>
|
||||
<location filename="../GUI.cpp" line="777"/>
|
||||
<source>Are you sure you want to delete the selected item(s) from finished list and from hard drive?</source>
|
||||
<translation>完了済みの一覧とハード ドライブから選択されたアイテムを削除してもよろしいですか?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="779"/>
|
||||
<location filename="../GUI.cpp" line="791"/>
|
||||
<source>'%1' was removed permanently.</source>
|
||||
<comment>'xxx.avi' was removed permanently.</comment>
|
||||
<translation>'%1' は永久に削除されました。</translation>
|
||||
|
@ -1698,66 +1708,66 @@ qBittorrent を終了してもよろしいですか?</translation>
|
|||
<translation type="obsolete">次の url の url シードの参照に失敗しました: %1、メッセージ: %2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="387"/>
|
||||
<location filename="../GUI.cpp" line="399"/>
|
||||
<source>Alt+3</source>
|
||||
<comment>shortcut to switch to third tab</comment>
|
||||
<translation>Alt+3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="389"/>
|
||||
<location filename="../GUI.cpp" line="401"/>
|
||||
<source>Ctrl+F</source>
|
||||
<comment>shortcut to switch to search tab</comment>
|
||||
<translation>Ctrl+F</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="785"/>
|
||||
<location filename="../GUI.cpp" line="797"/>
|
||||
<source>'%1' was removed because its ratio reached the maximum value you set.</source>
|
||||
<comment>%1 is a file name</comment>
|
||||
<translation>'%1' はその率が設定した最大値を達成したので削除されました。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="965"/>
|
||||
<location filename="../GUI.cpp" line="977"/>
|
||||
<source>NAT-PMP support [ON]</source>
|
||||
<translation>NAT-PMP サポート [オン]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="968"/>
|
||||
<location filename="../GUI.cpp" line="980"/>
|
||||
<source>NAT-PMP support [OFF]</source>
|
||||
<translation>NAT-PMP サポート [オフ]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1055"/>
|
||||
<location filename="../GUI.cpp" line="1067"/>
|
||||
<source>Local Peer Discovery [ON]</source>
|
||||
<translation>ローカル ピア ディスカバリ [オン]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1058"/>
|
||||
<location filename="../GUI.cpp" line="1070"/>
|
||||
<source>Local Peer Discovery support [OFF]</source>
|
||||
<translation>ローカル ピア ディスカバリ [オフ]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1321"/>
|
||||
<location filename="../GUI.cpp" line="1339"/>
|
||||
<source>qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)</source>
|
||||
<comment>%1 is qBittorrent version</comment>
|
||||
<translation>qBittorrent %1 (DL: %2KiB/s、UP: %3KiB/s)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1306"/>
|
||||
<location filename="../GUI.cpp" line="1324"/>
|
||||
<source>DL: %1 KiB/s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1307"/>
|
||||
<location filename="../GUI.cpp" line="1325"/>
|
||||
<source>UP: %1 KiB/s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="291"/>
|
||||
<location filename="../GUI.cpp" line="303"/>
|
||||
<source>Ratio: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="293"/>
|
||||
<location filename="../GUI.cpp" line="305"/>
|
||||
<source>DHT: %1 nodes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -3304,9 +3314,9 @@ However, those plugins were disabled.</source>
|
|||
<translation>TiB</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../misc.h" line="322"/>
|
||||
<location filename="../misc.h" line="303"/>
|
||||
<source>Unknown</source>
|
||||
<translation>不明</translation>
|
||||
<translation type="obsolete">不明</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../misc.h" line="110"/>
|
||||
|
@ -3393,12 +3403,12 @@ However, those plugins were disabled.</source>
|
|||
<translation type="obsolete">この IP は不正です。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="774"/>
|
||||
<location filename="../options_imp.cpp" line="787"/>
|
||||
<source>Options were saved successfully.</source>
|
||||
<translation>オプションの保存に成功しました。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1052"/>
|
||||
<location filename="../options_imp.cpp" line="1075"/>
|
||||
<source>Choose scan directory</source>
|
||||
<translation>スキャンするディレクトリを選択します</translation>
|
||||
</message>
|
||||
|
@ -3408,7 +3418,7 @@ However, those plugins were disabled.</source>
|
|||
<translation type="obsolete">ipfilter.dat ファイルを選択します</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1067"/>
|
||||
<location filename="../options_imp.cpp" line="1090"/>
|
||||
<source>Choose a save directory</source>
|
||||
<translation>保存ディレクトリを選択します</translation>
|
||||
</message>
|
||||
|
@ -3424,12 +3434,12 @@ However, those plugins were disabled.</source>
|
|||
<translation type="obsolete">読み込みモードで %1 を開くことができませんでした。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1059"/>
|
||||
<location filename="../options_imp.cpp" line="1082"/>
|
||||
<source>Choose an ip filter file</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1059"/>
|
||||
<location filename="../options_imp.cpp" line="1082"/>
|
||||
<source>Filters</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
|
@ -224,7 +224,7 @@ Copyright © 2006 av Christophe Dumez<br>
|
|||
<translation type="obsolete">0.0.0.0</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1800"/>
|
||||
<location filename="../options.ui" line="1819"/>
|
||||
<source>Port:</source>
|
||||
<translation>Port:</translation>
|
||||
</message>
|
||||
|
@ -234,7 +234,7 @@ Copyright © 2006 av Christophe Dumez<br>
|
|||
<translation type="obsolete">Mellomtjener krever autentisering</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1839"/>
|
||||
<location filename="../options.ui" line="1858"/>
|
||||
<source>Authentication</source>
|
||||
<translation>Autentisering</translation>
|
||||
</message>
|
||||
|
@ -244,7 +244,7 @@ Copyright © 2006 av Christophe Dumez<br>
|
|||
<translation type="obsolete">Brukernavn:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1860"/>
|
||||
<location filename="../options.ui" line="1879"/>
|
||||
<source>Password:</source>
|
||||
<translation>Passord:</translation>
|
||||
</message>
|
||||
|
@ -723,7 +723,7 @@ Copyright © 2006 av Christophe Dumez<br>
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1850"/>
|
||||
<location filename="../options.ui" line="1869"/>
|
||||
<source>Username:</source>
|
||||
<translation type="unfinished">Brukernavn:</translation>
|
||||
</message>
|
||||
|
@ -808,17 +808,17 @@ Copyright © 2006 av Christophe Dumez<br>
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1660"/>
|
||||
<location filename="../options.ui" line="1676"/>
|
||||
<source>RSS feeds refresh interval:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1680"/>
|
||||
<location filename="../options.ui" line="1696"/>
|
||||
<source>minutes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1704"/>
|
||||
<location filename="../options.ui" line="1720"/>
|
||||
<source>Maximum number of articles per feed:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -889,20 +889,30 @@ Copyright © 2006 av Christophe Dumez<br>
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1765"/>
|
||||
<location filename="../options.ui" line="1784"/>
|
||||
<source>Web UI</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1778"/>
|
||||
<location filename="../options.ui" line="1797"/>
|
||||
<source>Enable Web User Interface</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1791"/>
|
||||
<location filename="../options.ui" line="1810"/>
|
||||
<source>HTTP Server</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1629"/>
|
||||
<source>Enable RSS support</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1639"/>
|
||||
<source>RSS settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DownloadingTorrents</name>
|
||||
|
@ -1148,7 +1158,7 @@ Copyright © 2006 av Christophe Dumez<br>
|
|||
<context>
|
||||
<name>GUI</name>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="716"/>
|
||||
<location filename="../GUI.cpp" line="728"/>
|
||||
<source>Open Torrent Files</source>
|
||||
<translation>Åpne torrentfiler</translation>
|
||||
</message>
|
||||
|
@ -1163,22 +1173,22 @@ Copyright © 2006 av Christophe Dumez<br>
|
|||
<translation type="obsolete">Ønsker du å slette alle filene in nedlastingslisten?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="826"/>
|
||||
<location filename="../GUI.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation>&Ja</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="826"/>
|
||||
<location filename="../GUI.cpp" line="838"/>
|
||||
<source>&No</source>
|
||||
<translation>&Nei</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="818"/>
|
||||
<location filename="../GUI.cpp" line="830"/>
|
||||
<source>Are you sure you want to delete the selected item(s) in download list?</source>
|
||||
<translation>Ønsker du å slette valgt(e) element(er) i nedlastingslisten?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1109"/>
|
||||
<location filename="../GUI.cpp" line="1127"/>
|
||||
<source>Finished</source>
|
||||
<translation type="unfinished">Ferdig</translation>
|
||||
</message>
|
||||
|
@ -1228,7 +1238,7 @@ Copyright © 2006 av Christophe Dumez<br>
|
|||
<translation type="obsolete">Klarte ikke å opprette mappen:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="717"/>
|
||||
<location filename="../GUI.cpp" line="729"/>
|
||||
<source>Torrent Files</source>
|
||||
<translation>Torrentfiler</translation>
|
||||
</message>
|
||||
|
@ -1282,7 +1292,7 @@ Copyright © 2006 av Christophe Dumez<br>
|
|||
<translation type="obsolete">qBittorrent</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="824"/>
|
||||
<location filename="../GUI.cpp" line="836"/>
|
||||
<source>Are you sure? -- qBittorrent</source>
|
||||
<translation>Er du sikker? -- qBittorrent</translation>
|
||||
</message>
|
||||
|
@ -1523,7 +1533,7 @@ Vennligst avslutt denne først.</translation>
|
|||
<translation type="obsolete">Ønsker du å slette valgte element(er) i nedlastningslisten, og fra lagringsenheten?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="355"/>
|
||||
<location filename="../GUI.cpp" line="367"/>
|
||||
<source>Download finished</source>
|
||||
<translation>Nedlastingen er fullført</translation>
|
||||
</message>
|
||||
|
@ -1544,23 +1554,23 @@ Vennligst avslutt denne først.</translation>
|
|||
<translation type="obsolete">Lese/Skrive feil</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="908"/>
|
||||
<location filename="../GUI.cpp" line="920"/>
|
||||
<source>qBittorrent %1</source>
|
||||
<comment>e.g: qBittorrent v0.x</comment>
|
||||
<translation>qBittorrent %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>Connection status:</source>
|
||||
<translation>Tilkoblingsstatus:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>Offline</source>
|
||||
<translation>Frakoblet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>No peers found...</source>
|
||||
<translation>Ingen tjenere funnet...</translation>
|
||||
</message>
|
||||
|
@ -1625,18 +1635,18 @@ Vennligst avslutt denne først.</translation>
|
|||
<translation type="obsolete">qBittorrent %1 er startet.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1341"/>
|
||||
<location filename="../GUI.cpp" line="1359"/>
|
||||
<source>qBittorrent</source>
|
||||
<translation>qBittorrent</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1344"/>
|
||||
<location filename="../GUI.cpp" line="1362"/>
|
||||
<source>DL speed: %1 KiB/s</source>
|
||||
<comment>e.g: Download speed: 10 KiB/s</comment>
|
||||
<translation>Nedlastingshastighet: %1 KiB/s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1347"/>
|
||||
<location filename="../GUI.cpp" line="1365"/>
|
||||
<source>UP speed: %1 KiB/s</source>
|
||||
<comment>e.g: Upload speed: 10 KiB/s</comment>
|
||||
<translation>Opplastingshastighet: %1 KiB/s</translation>
|
||||
|
@ -1660,12 +1670,12 @@ Vennligst avslutt denne først.</translation>
|
|||
<translation type="obsolete">Laster ikke ned</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="611"/>
|
||||
<location filename="../GUI.cpp" line="623"/>
|
||||
<source>Are you sure you want to quit?</source>
|
||||
<translation>Ønsker du å avslutte qBittorrent?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="839"/>
|
||||
<location filename="../GUI.cpp" line="851"/>
|
||||
<source>'%1' was removed.</source>
|
||||
<comment>'xxx.avi' was removed.</comment>
|
||||
<translation>'%1' ble fjernet.</translation>
|
||||
|
@ -1707,12 +1717,12 @@ Vennligst avslutt denne først.</translation>
|
|||
<translation type="obsolete">Lytter på port: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1195"/>
|
||||
<location filename="../GUI.cpp" line="1213"/>
|
||||
<source>All downloads were paused.</source>
|
||||
<translation>Alle nedlastinger ble pauset.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1221"/>
|
||||
<location filename="../GUI.cpp" line="1239"/>
|
||||
<source>'%1' paused.</source>
|
||||
<comment>xxx.avi paused.</comment>
|
||||
<translation>'%1' pauset.</translation>
|
||||
|
@ -1724,30 +1734,30 @@ Vennligst avslutt denne først.</translation>
|
|||
<translation type="obsolete">Kobler til...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1254"/>
|
||||
<location filename="../GUI.cpp" line="1272"/>
|
||||
<source>All downloads were resumed.</source>
|
||||
<translation>Alle nedlastinger ble gjenopptatt.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1280"/>
|
||||
<location filename="../GUI.cpp" line="1298"/>
|
||||
<source>'%1' resumed.</source>
|
||||
<comment>e.g: xxx.avi resumed.</comment>
|
||||
<translation>'%1' gjenopptatt.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="355"/>
|
||||
<location filename="../GUI.cpp" line="367"/>
|
||||
<source>%1 has finished downloading.</source>
|
||||
<comment>e.g: xxx.avi has finished downloading.</comment>
|
||||
<translation>%1 er ferdig nedlastet.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="364"/>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<source>I/O Error</source>
|
||||
<comment>i.e: Input/Output Error</comment>
|
||||
<translation>Lese/Skrive feil</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="364"/>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<source>An error occured when trying to read or write %1. The disk is probably full, download has been paused</source>
|
||||
<comment>e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused</comment>
|
||||
<translation>Det oppsto en feil ved lesing eller skriving til %1. Disken er mest sannsynelig full, nedlastingen har blitt pauset</translation>
|
||||
|
@ -1759,23 +1769,23 @@ Vennligst avslutt denne først.</translation>
|
|||
<translation type="obsolete">Det har oppstått en feil (full disk?), '%1' er pauset.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>Connection Status:</source>
|
||||
<translation>Tilkoblingsstatus:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1355"/>
|
||||
<location filename="../GUI.cpp" line="1373"/>
|
||||
<source>Online</source>
|
||||
<translation>Tilkoblet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>Firewalled?</source>
|
||||
<comment>i.e: Behind a firewall/router?</comment>
|
||||
<translation>Beskyttet av en brannmur?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>No incoming connections...</source>
|
||||
<translation>Ingen innkommende tilkoblinger...</translation>
|
||||
</message>
|
||||
|
@ -1807,193 +1817,193 @@ Vennligst avslutt denne først.</translation>
|
|||
<translation type="obsolete">Laster ned '%1'...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<location filename="../GUI.cpp" line="388"/>
|
||||
<source>An error occured (full disk?), '%1' paused.</source>
|
||||
<comment>e.g: An error occured (full disk?), 'xxx.avi' paused.</comment>
|
||||
<translation>Det har oppstått en feil (full disk?), '%1' er pauset.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="165"/>
|
||||
<location filename="../GUI.cpp" line="153"/>
|
||||
<source>Search</source>
|
||||
<translation type="unfinished">Søk</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="169"/>
|
||||
<location filename="../GUI.cpp" line="279"/>
|
||||
<source>RSS</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="935"/>
|
||||
<location filename="../GUI.cpp" line="947"/>
|
||||
<source>qBittorrent is bind to port: %1</source>
|
||||
<comment>e.g: qBittorrent is bind to port: 1666</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1036"/>
|
||||
<location filename="../GUI.cpp" line="1048"/>
|
||||
<source>DHT support [ON], port: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1042"/>
|
||||
<location filename="../GUI.cpp" line="1054"/>
|
||||
<source>DHT support [OFF]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1046"/>
|
||||
<location filename="../GUI.cpp" line="1058"/>
|
||||
<source>PeX support [ON]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1050"/>
|
||||
<location filename="../GUI.cpp" line="1062"/>
|
||||
<source>PeX support [OFF]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="612"/>
|
||||
<location filename="../GUI.cpp" line="624"/>
|
||||
<source>The download list is not empty.
|
||||
Are you sure you want to quit qBittorrent?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1104"/>
|
||||
<location filename="../GUI.cpp" line="1122"/>
|
||||
<source>Downloads</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="825"/>
|
||||
<location filename="../GUI.cpp" line="837"/>
|
||||
<source>Are you sure you want to delete the selected item(s) in finished list?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="957"/>
|
||||
<location filename="../GUI.cpp" line="969"/>
|
||||
<source>UPnP support [ON]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1070"/>
|
||||
<location filename="../GUI.cpp" line="1082"/>
|
||||
<source>Encryption support [ON]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1075"/>
|
||||
<location filename="../GUI.cpp" line="1087"/>
|
||||
<source>Encryption support [FORCED]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1080"/>
|
||||
<location filename="../GUI.cpp" line="1092"/>
|
||||
<source>Encryption support [OFF]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="383"/>
|
||||
<location filename="../GUI.cpp" line="395"/>
|
||||
<source>Alt+1</source>
|
||||
<comment>shortcut to switch to first tab</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="385"/>
|
||||
<location filename="../GUI.cpp" line="397"/>
|
||||
<source>Alt+2</source>
|
||||
<comment>shortcut to switch to second tab</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="391"/>
|
||||
<location filename="../GUI.cpp" line="403"/>
|
||||
<source>Alt+4</source>
|
||||
<comment>shortcut to switch to fourth tab</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="459"/>
|
||||
<location filename="../GUI.cpp" line="471"/>
|
||||
<source>Url download error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="459"/>
|
||||
<location filename="../GUI.cpp" line="471"/>
|
||||
<source>Couldn't download file at url: %1, reason: %2.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="758"/>
|
||||
<location filename="../GUI.cpp" line="770"/>
|
||||
<source>Are you sure you want to delete the selected item(s) from download list and from hard drive?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="765"/>
|
||||
<location filename="../GUI.cpp" line="777"/>
|
||||
<source>Are you sure you want to delete the selected item(s) from finished list and from hard drive?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="779"/>
|
||||
<location filename="../GUI.cpp" line="791"/>
|
||||
<source>'%1' was removed permanently.</source>
|
||||
<comment>'xxx.avi' was removed permanently.</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="387"/>
|
||||
<location filename="../GUI.cpp" line="399"/>
|
||||
<source>Alt+3</source>
|
||||
<comment>shortcut to switch to third tab</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="389"/>
|
||||
<location filename="../GUI.cpp" line="401"/>
|
||||
<source>Ctrl+F</source>
|
||||
<comment>shortcut to switch to search tab</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="960"/>
|
||||
<location filename="../GUI.cpp" line="972"/>
|
||||
<source>UPnP support [OFF]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="965"/>
|
||||
<location filename="../GUI.cpp" line="977"/>
|
||||
<source>NAT-PMP support [ON]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="968"/>
|
||||
<location filename="../GUI.cpp" line="980"/>
|
||||
<source>NAT-PMP support [OFF]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1055"/>
|
||||
<location filename="../GUI.cpp" line="1067"/>
|
||||
<source>Local Peer Discovery [ON]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1058"/>
|
||||
<location filename="../GUI.cpp" line="1070"/>
|
||||
<source>Local Peer Discovery support [OFF]</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="785"/>
|
||||
<location filename="../GUI.cpp" line="797"/>
|
||||
<source>'%1' was removed because its ratio reached the maximum value you set.</source>
|
||||
<comment>%1 is a file name</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1321"/>
|
||||
<location filename="../GUI.cpp" line="1339"/>
|
||||
<source>qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)</source>
|
||||
<comment>%1 is qBittorrent version</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1306"/>
|
||||
<location filename="../GUI.cpp" line="1324"/>
|
||||
<source>DL: %1 KiB/s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1307"/>
|
||||
<location filename="../GUI.cpp" line="1325"/>
|
||||
<source>UP: %1 KiB/s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="291"/>
|
||||
<location filename="../GUI.cpp" line="303"/>
|
||||
<source>Ratio: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="293"/>
|
||||
<location filename="../GUI.cpp" line="305"/>
|
||||
<source>DHT: %1 nodes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -3510,9 +3520,9 @@ However, those plugins were disabled.</source>
|
|||
<translation type="obsolete">timer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../misc.h" line="322"/>
|
||||
<location filename="../misc.h" line="303"/>
|
||||
<source>Unknown</source>
|
||||
<translation>ukjent</translation>
|
||||
<translation type="obsolete">ukjent</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../misc.h" line="215"/>
|
||||
|
@ -3671,12 +3681,12 @@ However, those plugins were disabled.</source>
|
|||
<translation type="obsolete">Denne IP adressen er ugyldig.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="774"/>
|
||||
<location filename="../options_imp.cpp" line="787"/>
|
||||
<source>Options were saved successfully.</source>
|
||||
<translation>Innstillingene ble lagret.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1052"/>
|
||||
<location filename="../options_imp.cpp" line="1075"/>
|
||||
<source>Choose scan directory</source>
|
||||
<translation>Velg mappe for gjennomsøking</translation>
|
||||
</message>
|
||||
|
@ -3686,7 +3696,7 @@ However, those plugins were disabled.</source>
|
|||
<translation type="obsolete">Velg en ipfilter.dat fil</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1067"/>
|
||||
<location filename="../options_imp.cpp" line="1090"/>
|
||||
<source>Choose a save directory</source>
|
||||
<translation>Velg mappe for lagring</translation>
|
||||
</message>
|
||||
|
@ -3702,12 +3712,12 @@ However, those plugins were disabled.</source>
|
|||
<translation type="obsolete">Klarte ikke å åpne %1 i lesemodus.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1059"/>
|
||||
<location filename="../options_imp.cpp" line="1082"/>
|
||||
<source>Choose an ip filter file</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1059"/>
|
||||
<location filename="../options_imp.cpp" line="1082"/>
|
||||
<source>Filters</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
Binary file not shown.
|
@ -398,12 +398,12 @@ Copyright 2006 door Christophe Dumez<br>
|
|||
<translation type="obsolete">0.0.0.0</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1800"/>
|
||||
<location filename="../options.ui" line="1819"/>
|
||||
<source>Port:</source>
|
||||
<translation>Poort:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1839"/>
|
||||
<location filename="../options.ui" line="1858"/>
|
||||
<source>Authentication</source>
|
||||
<translation>Authenticatie</translation>
|
||||
</message>
|
||||
|
@ -413,7 +413,7 @@ Copyright 2006 door Christophe Dumez<br>
|
|||
<translation type="obsolete">Gebruikersnaam:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1860"/>
|
||||
<location filename="../options.ui" line="1879"/>
|
||||
<source>Password:</source>
|
||||
<translation>Wachtwoord:</translation>
|
||||
</message>
|
||||
|
@ -967,7 +967,7 @@ Copyright 2006 door Christophe Dumez<br>
|
|||
<translation>Proxy:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1850"/>
|
||||
<location filename="../options.ui" line="1869"/>
|
||||
<source>Username:</source>
|
||||
<translation>Gebruikersnaam:</translation>
|
||||
</message>
|
||||
|
@ -1052,17 +1052,17 @@ Copyright 2006 door Christophe Dumez<br>
|
|||
<translation>RSS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1660"/>
|
||||
<location filename="../options.ui" line="1676"/>
|
||||
<source>RSS feeds refresh interval:</source>
|
||||
<translation>RSS feeds vernieuwingsinterval:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1680"/>
|
||||
<location filename="../options.ui" line="1696"/>
|
||||
<source>minutes</source>
|
||||
<translation>minuten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1704"/>
|
||||
<location filename="../options.ui" line="1720"/>
|
||||
<source>Maximum number of articles per feed:</source>
|
||||
<translation>Maximum aantal artikelen per feed:</translation>
|
||||
</message>
|
||||
|
@ -1133,20 +1133,30 @@ Copyright 2006 door Christophe Dumez<br>
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1765"/>
|
||||
<location filename="../options.ui" line="1784"/>
|
||||
<source>Web UI</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1778"/>
|
||||
<location filename="../options.ui" line="1797"/>
|
||||
<source>Enable Web User Interface</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1791"/>
|
||||
<location filename="../options.ui" line="1810"/>
|
||||
<source>HTTP Server</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1629"/>
|
||||
<source>Enable RSS support</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1639"/>
|
||||
<source>RSS settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DownloadingTorrents</name>
|
||||
|
@ -1407,7 +1417,7 @@ Copyright 2006 door Christophe Dumez<br>
|
|||
<translation type="obsolete"> gestart.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1341"/>
|
||||
<location filename="../GUI.cpp" line="1359"/>
|
||||
<source>qBittorrent</source>
|
||||
<translation>qBittorrent</translation>
|
||||
</message>
|
||||
|
@ -1427,12 +1437,12 @@ Copyright 2006 door Christophe Dumez<br>
|
|||
<translation type="obsolete"> UP snelheid:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="716"/>
|
||||
<location filename="../GUI.cpp" line="728"/>
|
||||
<source>Open Torrent Files</source>
|
||||
<translation>Open Torrent bestanden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="717"/>
|
||||
<location filename="../GUI.cpp" line="729"/>
|
||||
<source>Torrent Files</source>
|
||||
<translation>Torrent bestanden</translation>
|
||||
</message>
|
||||
|
@ -1478,7 +1488,7 @@ Copyright 2006 door Christophe Dumez<br>
|
|||
<translation type="obsolete">Dit bestand is corrupt of is geen torrent.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="824"/>
|
||||
<location filename="../GUI.cpp" line="836"/>
|
||||
<source>Are you sure? -- qBittorrent</source>
|
||||
<translation>Weet u het zeker? -- qBittorrent</translation>
|
||||
</message>
|
||||
|
@ -1488,12 +1498,12 @@ Copyright 2006 door Christophe Dumez<br>
|
|||
<translation type="obsolete">Weet u zeker dat u alle bestanden uit de downloadlijst wilt verwijderen?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="826"/>
|
||||
<location filename="../GUI.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation>&Ja</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="826"/>
|
||||
<location filename="../GUI.cpp" line="838"/>
|
||||
<source>&No</source>
|
||||
<translation>&Nee</translation>
|
||||
</message>
|
||||
|
@ -1503,7 +1513,7 @@ Copyright 2006 door Christophe Dumez<br>
|
|||
<translation type="obsolete">Downloadlijst leeg gemaakt.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="818"/>
|
||||
<location filename="../GUI.cpp" line="830"/>
|
||||
<source>Are you sure you want to delete the selected item(s) in download list?</source>
|
||||
<translation>Weet u zeker dat u de geselecteerde bestanden uit de downloadlijst wilt verwijderen?</translation>
|
||||
</message>
|
||||
|
@ -1587,7 +1597,7 @@ Copyright 2006 door Christophe Dumez<br>
|
|||
<translation type="obsolete">/s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1109"/>
|
||||
<location filename="../GUI.cpp" line="1127"/>
|
||||
<source>Finished</source>
|
||||
<translation>Klaar</translation>
|
||||
</message>
|
||||
|
@ -1853,7 +1863,7 @@ Stop het eerste proccess eerst.
|
|||
<translation type="obsolete">Overdrachten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="355"/>
|
||||
<location filename="../GUI.cpp" line="367"/>
|
||||
<source>Download finished</source>
|
||||
<translation>Download afgerond</translation>
|
||||
</message>
|
||||
|
@ -1879,23 +1889,23 @@ Stop het eerste proccess eerst.
|
|||
<translation type="obsolete">Weet u zeker dat u de geselecteerde onderdelen in de download lijst en van harde schijf wil verwijderen?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="908"/>
|
||||
<location filename="../GUI.cpp" line="920"/>
|
||||
<source>qBittorrent %1</source>
|
||||
<comment>e.g: qBittorrent v0.x</comment>
|
||||
<translation>qBittorrent %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>Connection status:</source>
|
||||
<translation>Verbindingsstatus:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>Offline</source>
|
||||
<translation>Offline</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>No peers found...</source>
|
||||
<translation>Geen peers gevonden...</translation>
|
||||
</message>
|
||||
|
@ -1960,13 +1970,13 @@ Stop het eerste proccess eerst.
|
|||
<translation type="obsolete">qBittorrent %1 gestart.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1344"/>
|
||||
<location filename="../GUI.cpp" line="1362"/>
|
||||
<source>DL speed: %1 KiB/s</source>
|
||||
<comment>e.g: Download speed: 10 KiB/s</comment>
|
||||
<translation>DL snelheid: %1 KiB/s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1347"/>
|
||||
<location filename="../GUI.cpp" line="1365"/>
|
||||
<source>UP speed: %1 KiB/s</source>
|
||||
<comment>e.g: Upload speed: 10 KiB/s</comment>
|
||||
<translation>UP snelheid: %1 KiB/s</translation>
|
||||
|
@ -1990,12 +2000,12 @@ Stop het eerste proccess eerst.
|
|||
<translation type="obsolete">Stilstaand</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="611"/>
|
||||
<location filename="../GUI.cpp" line="623"/>
|
||||
<source>Are you sure you want to quit?</source>
|
||||
<translation>Weet u zeker dat u wilt afsluiten?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="839"/>
|
||||
<location filename="../GUI.cpp" line="851"/>
|
||||
<source>'%1' was removed.</source>
|
||||
<comment>'xxx.avi' was removed.</comment>
|
||||
<translation>'%1' is verwijderd.</translation>
|
||||
|
@ -2037,12 +2047,12 @@ Stop het eerste proccess eerst.
|
|||
<translation type="obsolete">Aan het luisteren op poort: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1195"/>
|
||||
<location filename="../GUI.cpp" line="1213"/>
|
||||
<source>All downloads were paused.</source>
|
||||
<translation>Alle downloads gepauzeerd.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1221"/>
|
||||
<location filename="../GUI.cpp" line="1239"/>
|
||||
<source>'%1' paused.</source>
|
||||
<comment>xxx.avi paused.</comment>
|
||||
<translation>'%1' gepauzeerd.</translation>
|
||||
|
@ -2054,52 +2064,52 @@ Stop het eerste proccess eerst.
|
|||
<translation type="obsolete">Verbinding maken...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1254"/>
|
||||
<location filename="../GUI.cpp" line="1272"/>
|
||||
<source>All downloads were resumed.</source>
|
||||
<translation>Alle downloads hervat.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1280"/>
|
||||
<location filename="../GUI.cpp" line="1298"/>
|
||||
<source>'%1' resumed.</source>
|
||||
<comment>e.g: xxx.avi resumed.</comment>
|
||||
<translation>'%1' hervat.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="355"/>
|
||||
<location filename="../GUI.cpp" line="367"/>
|
||||
<source>%1 has finished downloading.</source>
|
||||
<comment>e.g: xxx.avi has finished downloading.</comment>
|
||||
<translation>%1 is klaar met downloaden.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="364"/>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<source>I/O Error</source>
|
||||
<comment>i.e: Input/Output Error</comment>
|
||||
<translation>I/O Fout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="364"/>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<source>An error occured when trying to read or write %1. The disk is probably full, download has been paused</source>
|
||||
<comment>e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused</comment>
|
||||
<translation>Een fout is opgetreden tijdens het lezen of schrijven van %1. De schijf is waarschijnlijk vol, de download is gepauzeerd</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>Connection Status:</source>
|
||||
<translation>Verbindingsstatus:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1355"/>
|
||||
<location filename="../GUI.cpp" line="1373"/>
|
||||
<source>Online</source>
|
||||
<translation>Online</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>Firewalled?</source>
|
||||
<comment>i.e: Behind a firewall/router?</comment>
|
||||
<translation>Geblokkeerd?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>No incoming connections...</source>
|
||||
<translation>Geen inkomende verbindingen...</translation>
|
||||
</message>
|
||||
|
@ -2131,194 +2141,194 @@ Stop het eerste proccess eerst.
|
|||
<translation type="obsolete">Bezig met downloaden van '%1', even geduld alstublieft...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<location filename="../GUI.cpp" line="388"/>
|
||||
<source>An error occured (full disk?), '%1' paused.</source>
|
||||
<comment>e.g: An error occured (full disk?), 'xxx.avi' paused.</comment>
|
||||
<translation>Er is een fout opgetreden (schijf vol?), '%1' gepauzeerd.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="165"/>
|
||||
<location filename="../GUI.cpp" line="153"/>
|
||||
<source>Search</source>
|
||||
<translation>Zoeken</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="169"/>
|
||||
<location filename="../GUI.cpp" line="279"/>
|
||||
<source>RSS</source>
|
||||
<translation>RSS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="935"/>
|
||||
<location filename="../GUI.cpp" line="947"/>
|
||||
<source>qBittorrent is bind to port: %1</source>
|
||||
<comment>e.g: qBittorrent is bind to port: 1666</comment>
|
||||
<translation>qBittorrent is verbonden aan poort: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1036"/>
|
||||
<location filename="../GUI.cpp" line="1048"/>
|
||||
<source>DHT support [ON], port: %1</source>
|
||||
<translation>DHT ondersteuning [AAN], poort: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1042"/>
|
||||
<location filename="../GUI.cpp" line="1054"/>
|
||||
<source>DHT support [OFF]</source>
|
||||
<translation>DHT ondersteuning [UIT]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1046"/>
|
||||
<location filename="../GUI.cpp" line="1058"/>
|
||||
<source>PeX support [ON]</source>
|
||||
<translation>PeX ondersteuning [AAN]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1050"/>
|
||||
<location filename="../GUI.cpp" line="1062"/>
|
||||
<source>PeX support [OFF]</source>
|
||||
<translation>PeX ondersteuning [UIT]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="612"/>
|
||||
<location filename="../GUI.cpp" line="624"/>
|
||||
<source>The download list is not empty.
|
||||
Are you sure you want to quit qBittorrent?</source>
|
||||
<translation>De downloadlijst is niet leeg.
|
||||
Weet u zeker dat u qBittorrent wilt afsluiten?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1104"/>
|
||||
<location filename="../GUI.cpp" line="1122"/>
|
||||
<source>Downloads</source>
|
||||
<translation>Downloads</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="825"/>
|
||||
<location filename="../GUI.cpp" line="837"/>
|
||||
<source>Are you sure you want to delete the selected item(s) in finished list?</source>
|
||||
<translation>Weet u zeker dat u de geselecteerde item(s) wilt verwijderen van de voltooidlijst?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="957"/>
|
||||
<location filename="../GUI.cpp" line="969"/>
|
||||
<source>UPnP support [ON]</source>
|
||||
<translation>UPnP ondersteuning [AAN]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1070"/>
|
||||
<location filename="../GUI.cpp" line="1082"/>
|
||||
<source>Encryption support [ON]</source>
|
||||
<translation>Encryptie ondersteuning [AAN]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1075"/>
|
||||
<location filename="../GUI.cpp" line="1087"/>
|
||||
<source>Encryption support [FORCED]</source>
|
||||
<translation>Encryptie ondersteuning [GEFORCEERD]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1080"/>
|
||||
<location filename="../GUI.cpp" line="1092"/>
|
||||
<source>Encryption support [OFF]</source>
|
||||
<translation>Encryptie ondersteuning [UIT]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="383"/>
|
||||
<location filename="../GUI.cpp" line="395"/>
|
||||
<source>Alt+1</source>
|
||||
<comment>shortcut to switch to first tab</comment>
|
||||
<translation>Alt+1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="385"/>
|
||||
<location filename="../GUI.cpp" line="397"/>
|
||||
<source>Alt+2</source>
|
||||
<comment>shortcut to switch to second tab</comment>
|
||||
<translation>Alt+2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="391"/>
|
||||
<location filename="../GUI.cpp" line="403"/>
|
||||
<source>Alt+4</source>
|
||||
<comment>shortcut to switch to fourth tab</comment>
|
||||
<translation>Alt+4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="459"/>
|
||||
<location filename="../GUI.cpp" line="471"/>
|
||||
<source>Url download error</source>
|
||||
<translation>Url download fout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="459"/>
|
||||
<location filename="../GUI.cpp" line="471"/>
|
||||
<source>Couldn't download file at url: %1, reason: %2.</source>
|
||||
<translation>Kon bestand niet downloaden vanaf url: %1, reden: %2.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="758"/>
|
||||
<location filename="../GUI.cpp" line="770"/>
|
||||
<source>Are you sure you want to delete the selected item(s) from download list and from hard drive?</source>
|
||||
<translation>Weet u zeker dat u de geselecteerde item(s) wilt verwijderen van de downloadlijst en de harde schijf?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="765"/>
|
||||
<location filename="../GUI.cpp" line="777"/>
|
||||
<source>Are you sure you want to delete the selected item(s) from finished list and from hard drive?</source>
|
||||
<translation>Weet u zeker dat u de geselecteerde item(s) wilt verwijderen van de voltooidlijst en de harde schijf?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="779"/>
|
||||
<location filename="../GUI.cpp" line="791"/>
|
||||
<source>'%1' was removed permanently.</source>
|
||||
<comment>'xxx.avi' was removed permanently.</comment>
|
||||
<translation>'%1' is permanent verwijderd.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="387"/>
|
||||
<location filename="../GUI.cpp" line="399"/>
|
||||
<source>Alt+3</source>
|
||||
<comment>shortcut to switch to third tab</comment>
|
||||
<translation>Alt+3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="389"/>
|
||||
<location filename="../GUI.cpp" line="401"/>
|
||||
<source>Ctrl+F</source>
|
||||
<comment>shortcut to switch to search tab</comment>
|
||||
<translation>Ctrl+F</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="960"/>
|
||||
<location filename="../GUI.cpp" line="972"/>
|
||||
<source>UPnP support [OFF]</source>
|
||||
<translation>UPnP ondersteuning [UIT]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="965"/>
|
||||
<location filename="../GUI.cpp" line="977"/>
|
||||
<source>NAT-PMP support [ON]</source>
|
||||
<translation>NAT-PMP ondersteuning [AAN]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="968"/>
|
||||
<location filename="../GUI.cpp" line="980"/>
|
||||
<source>NAT-PMP support [OFF]</source>
|
||||
<translation>NAT-PMP ondersteuning [UIT]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1055"/>
|
||||
<location filename="../GUI.cpp" line="1067"/>
|
||||
<source>Local Peer Discovery [ON]</source>
|
||||
<translation>Local Peer Discovery [AAN]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1058"/>
|
||||
<location filename="../GUI.cpp" line="1070"/>
|
||||
<source>Local Peer Discovery support [OFF]</source>
|
||||
<translation>Local Peer Discovery ondersteuning [UIT]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="785"/>
|
||||
<location filename="../GUI.cpp" line="797"/>
|
||||
<source>'%1' was removed because its ratio reached the maximum value you set.</source>
|
||||
<comment>%1 is a file name</comment>
|
||||
<translation>'%1' is verwijderd omdat de ratio de maximale ingestelde waarde heeft bereikt.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1321"/>
|
||||
<location filename="../GUI.cpp" line="1339"/>
|
||||
<source>qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)</source>
|
||||
<comment>%1 is qBittorrent version</comment>
|
||||
<translation>qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1306"/>
|
||||
<location filename="../GUI.cpp" line="1324"/>
|
||||
<source>DL: %1 KiB/s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1307"/>
|
||||
<location filename="../GUI.cpp" line="1325"/>
|
||||
<source>UP: %1 KiB/s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="291"/>
|
||||
<location filename="../GUI.cpp" line="303"/>
|
||||
<source>Ratio: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="293"/>
|
||||
<location filename="../GUI.cpp" line="305"/>
|
||||
<source>DHT: %1 nodes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -3997,9 +4007,9 @@ De plugins zijn uitgeschakeld.</translation>
|
|||
<translation type="obsolete"> d</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../misc.h" line="322"/>
|
||||
<location filename="../misc.h" line="303"/>
|
||||
<source>Unknown</source>
|
||||
<translation>Onbekend</translation>
|
||||
<translation type="obsolete">Onbekend</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../misc.h" line="215"/>
|
||||
|
@ -4158,12 +4168,12 @@ De plugins zijn uitgeschakeld.</translation>
|
|||
<translation type="obsolete">Dit IP is ongeldig.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="774"/>
|
||||
<location filename="../options_imp.cpp" line="787"/>
|
||||
<source>Options were saved successfully.</source>
|
||||
<translation>Opties zijn succesvol opgeslagen.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1052"/>
|
||||
<location filename="../options_imp.cpp" line="1075"/>
|
||||
<source>Choose scan directory</source>
|
||||
<translation>Kies scanmap</translation>
|
||||
</message>
|
||||
|
@ -4173,7 +4183,7 @@ De plugins zijn uitgeschakeld.</translation>
|
|||
<translation type="obsolete">Kies een ipfilter.dat bestand</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1067"/>
|
||||
<location filename="../options_imp.cpp" line="1090"/>
|
||||
<source>Choose a save directory</source>
|
||||
<translation>Kies een opslagmap</translation>
|
||||
</message>
|
||||
|
@ -4189,12 +4199,12 @@ De plugins zijn uitgeschakeld.</translation>
|
|||
<translation type="obsolete">Kon %1 niet openen om te lezen.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1059"/>
|
||||
<location filename="../options_imp.cpp" line="1082"/>
|
||||
<source>Choose an ip filter file</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1059"/>
|
||||
<location filename="../options_imp.cpp" line="1082"/>
|
||||
<source>Filters</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
Binary file not shown.
|
@ -301,7 +301,7 @@ Wszystkie prawa zastrzeżone © 2006 Christophe Dumez<br>
|
|||
<translation type="obsolete">0.0.0.0</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1800"/>
|
||||
<location filename="../options.ui" line="1819"/>
|
||||
<source>Port:</source>
|
||||
<translation>Port:</translation>
|
||||
</message>
|
||||
|
@ -311,7 +311,7 @@ Wszystkie prawa zastrzeżone © 2006 Christophe Dumez<br>
|
|||
<translation type="obsolete">Serwer proxy wymaga autentykacji</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1839"/>
|
||||
<location filename="../options.ui" line="1858"/>
|
||||
<source>Authentication</source>
|
||||
<translation>Autentykacja</translation>
|
||||
</message>
|
||||
|
@ -321,7 +321,7 @@ Wszystkie prawa zastrzeżone © 2006 Christophe Dumez<br>
|
|||
<translation type="obsolete">Użytkownik:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1860"/>
|
||||
<location filename="../options.ui" line="1879"/>
|
||||
<source>Password:</source>
|
||||
<translation>Hasło:</translation>
|
||||
</message>
|
||||
|
@ -955,7 +955,7 @@ Wszystkie prawa zastrzeżone © 2006 Christophe Dumez<br>
|
|||
<translation>Proxy:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1850"/>
|
||||
<location filename="../options.ui" line="1869"/>
|
||||
<source>Username:</source>
|
||||
<translation>Nazwa użytkownika:</translation>
|
||||
</message>
|
||||
|
@ -1040,17 +1040,17 @@ Wszystkie prawa zastrzeżone © 2006 Christophe Dumez<br>
|
|||
<translation>RSS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1660"/>
|
||||
<location filename="../options.ui" line="1676"/>
|
||||
<source>RSS feeds refresh interval:</source>
|
||||
<translation>Okres odświeżania nagłówków RSS:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1680"/>
|
||||
<location filename="../options.ui" line="1696"/>
|
||||
<source>minutes</source>
|
||||
<translation>minut</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1704"/>
|
||||
<location filename="../options.ui" line="1720"/>
|
||||
<source>Maximum number of articles per feed:</source>
|
||||
<translation>Maksymalna ilość wiadomości w nagłówku:</translation>
|
||||
</message>
|
||||
|
@ -1121,20 +1121,30 @@ Wszystkie prawa zastrzeżone © 2006 Christophe Dumez<br>
|
|||
<translation>Podrabianie Azureusa pozwala ominąć blokadę (wymagany restart)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1765"/>
|
||||
<location filename="../options.ui" line="1784"/>
|
||||
<source>Web UI</source>
|
||||
<translation>Web UI</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1778"/>
|
||||
<location filename="../options.ui" line="1797"/>
|
||||
<source>Enable Web User Interface</source>
|
||||
<translation>Włącz interfejs Web</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1791"/>
|
||||
<location filename="../options.ui" line="1810"/>
|
||||
<source>HTTP Server</source>
|
||||
<translation>Serwer HTTP</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1629"/>
|
||||
<source>Enable RSS support</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1639"/>
|
||||
<source>RSS settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DownloadingTorrents</name>
|
||||
|
@ -1411,12 +1421,12 @@ Wszystkie prawa zastrzeżone © 2006 Christophe Dumez<br>
|
|||
<translation type="obsolete">Prędkość UP:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="716"/>
|
||||
<location filename="../GUI.cpp" line="728"/>
|
||||
<source>Open Torrent Files</source>
|
||||
<translation>Otwórz pliki Torrent</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="717"/>
|
||||
<location filename="../GUI.cpp" line="729"/>
|
||||
<source>Torrent Files</source>
|
||||
<translation>Pliki Torrent</translation>
|
||||
</message>
|
||||
|
@ -1467,12 +1477,12 @@ Wszystkie prawa zastrzeżone © 2006 Christophe Dumez<br>
|
|||
<translation type="obsolete">Czy chcesz usunać wszystkie pliki z listy pobierania?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="826"/>
|
||||
<location filename="../GUI.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation>&Tak</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="826"/>
|
||||
<location filename="../GUI.cpp" line="838"/>
|
||||
<source>&No</source>
|
||||
<translation>&Nie</translation>
|
||||
</message>
|
||||
|
@ -1482,7 +1492,7 @@ Wszystkie prawa zastrzeżone © 2006 Christophe Dumez<br>
|
|||
<translation type="obsolete">List pobierania wyczyszczona.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="818"/>
|
||||
<location filename="../GUI.cpp" line="830"/>
|
||||
<source>Are you sure you want to delete the selected item(s) in download list?</source>
|
||||
<translation>Czy chcesz usunąć wybrane elementy z listy pobierania?</translation>
|
||||
</message>
|
||||
|
@ -1530,7 +1540,7 @@ Wszystkie prawa zastrzeżone © 2006 Christophe Dumez<br>
|
|||
<translation type="obsolete">wznowiony.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1109"/>
|
||||
<location filename="../GUI.cpp" line="1127"/>
|
||||
<source>Finished</source>
|
||||
<translation>Ukończone</translation>
|
||||
</message>
|
||||
|
@ -1573,12 +1583,12 @@ Wszystkie prawa zastrzeżone © 2006 Christophe Dumez<br>
|
|||
<translation type="obsolete">qBittorrent</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1341"/>
|
||||
<location filename="../GUI.cpp" line="1359"/>
|
||||
<source>qBittorrent</source>
|
||||
<translation>qBittorrent</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="824"/>
|
||||
<location filename="../GUI.cpp" line="836"/>
|
||||
<source>Are you sure? -- qBittorrent</source>
|
||||
<translation>Jesteś pewny? -- qBittorrent</translation>
|
||||
</message>
|
||||
|
@ -1903,7 +1913,7 @@ Zamknij najpierw okno podglądu.</translation>
|
|||
<translation type="obsolete">Czy na pewno chcesz usunąć wybrany element z listy i z dysku?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="355"/>
|
||||
<location filename="../GUI.cpp" line="367"/>
|
||||
<source>Download finished</source>
|
||||
<translation>Pobieranie zakończone</translation>
|
||||
</message>
|
||||
|
@ -1919,23 +1929,23 @@ Zamknij najpierw okno podglądu.</translation>
|
|||
<translation type="obsolete">Wyszukiwarka</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="908"/>
|
||||
<location filename="../GUI.cpp" line="920"/>
|
||||
<source>qBittorrent %1</source>
|
||||
<comment>e.g: qBittorrent v0.x</comment>
|
||||
<translation>qBittorent %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>Connection status:</source>
|
||||
<translation>Status połączenia:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>Offline</source>
|
||||
<translation>Niepołączony</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>No peers found...</source>
|
||||
<translation>Nie znaleziono peerów...</translation>
|
||||
</message>
|
||||
|
@ -2000,13 +2010,13 @@ Zamknij najpierw okno podglądu.</translation>
|
|||
<translation type="obsolete">qBittorrent %1 uruchomiony.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1344"/>
|
||||
<location filename="../GUI.cpp" line="1362"/>
|
||||
<source>DL speed: %1 KiB/s</source>
|
||||
<comment>e.g: Download speed: 10 KiB/s</comment>
|
||||
<translation>Prędkość DL: %1 KiB/s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1347"/>
|
||||
<location filename="../GUI.cpp" line="1365"/>
|
||||
<source>UP speed: %1 KiB/s</source>
|
||||
<comment>e.g: Upload speed: 10 KiB/s</comment>
|
||||
<translation>Prędkość UP: %1 KiB/</translation>
|
||||
|
@ -2030,12 +2040,12 @@ Zamknij najpierw okno podglądu.</translation>
|
|||
<translation type="obsolete">Zablokowany</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="611"/>
|
||||
<location filename="../GUI.cpp" line="623"/>
|
||||
<source>Are you sure you want to quit?</source>
|
||||
<translation>Czy na pewno chcesz zakończyć aplikację?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="839"/>
|
||||
<location filename="../GUI.cpp" line="851"/>
|
||||
<source>'%1' was removed.</source>
|
||||
<comment>'xxx.avi' was removed.</comment>
|
||||
<translation>'%1' został usunięty.</translation>
|
||||
|
@ -2077,12 +2087,12 @@ Zamknij najpierw okno podglądu.</translation>
|
|||
<translation type="obsolete">Nasłuchuje na porcie: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1195"/>
|
||||
<location filename="../GUI.cpp" line="1213"/>
|
||||
<source>All downloads were paused.</source>
|
||||
<translation>Wszystkie zadania pobierania wstrzymane.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1221"/>
|
||||
<location filename="../GUI.cpp" line="1239"/>
|
||||
<source>'%1' paused.</source>
|
||||
<comment>xxx.avi paused.</comment>
|
||||
<translation>'%1' wstrzymany.</translation>
|
||||
|
@ -2094,30 +2104,30 @@ Zamknij najpierw okno podglądu.</translation>
|
|||
<translation type="obsolete">Łączenie...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1254"/>
|
||||
<location filename="../GUI.cpp" line="1272"/>
|
||||
<source>All downloads were resumed.</source>
|
||||
<translation>Wszystkie zadania pobierania wzniowione.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1280"/>
|
||||
<location filename="../GUI.cpp" line="1298"/>
|
||||
<source>'%1' resumed.</source>
|
||||
<comment>e.g: xxx.avi resumed.</comment>
|
||||
<translation>'%1' wznowiony.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="355"/>
|
||||
<location filename="../GUI.cpp" line="367"/>
|
||||
<source>%1 has finished downloading.</source>
|
||||
<comment>e.g: xxx.avi has finished downloading.</comment>
|
||||
<translation>%1 został pobrany.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="364"/>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<source>I/O Error</source>
|
||||
<comment>i.e: Input/Output Error</comment>
|
||||
<translation>Błąd We/Wy</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="364"/>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<source>An error occured when trying to read or write %1. The disk is probably full, download has been paused</source>
|
||||
<comment>e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused</comment>
|
||||
<translation>Wystąpił błąd podczas próby odczytu lub zapisu %1. Prawdopodobnie brak miejsca na dysku, zadania pobierania zostały wstrzymane</translation>
|
||||
|
@ -2129,23 +2139,23 @@ Zamknij najpierw okno podglądu.</translation>
|
|||
<translation type="obsolete">Wystąpił błąd (brak miejsca?), '%1' wstrzymany.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>Connection Status:</source>
|
||||
<translation>Status połączenia:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1355"/>
|
||||
<location filename="../GUI.cpp" line="1373"/>
|
||||
<source>Online</source>
|
||||
<translation>Połączony</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>Firewalled?</source>
|
||||
<comment>i.e: Behind a firewall/router?</comment>
|
||||
<translation>Zablokowany?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>No incoming connections...</source>
|
||||
<translation>Brak połączeń przychodzących...</translation>
|
||||
</message>
|
||||
|
@ -2177,56 +2187,56 @@ Zamknij najpierw okno podglądu.</translation>
|
|||
<translation type="obsolete">Pobieranie '%1', proszę czekać...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<location filename="../GUI.cpp" line="388"/>
|
||||
<source>An error occured (full disk?), '%1' paused.</source>
|
||||
<comment>e.g: An error occured (full disk?), 'xxx.avi' paused.</comment>
|
||||
<translation>Wystąpił błąd (brak miejsca?), '%1' wstrzymany.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="165"/>
|
||||
<location filename="../GUI.cpp" line="153"/>
|
||||
<source>Search</source>
|
||||
<translation>Szukaj</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="169"/>
|
||||
<location filename="../GUI.cpp" line="279"/>
|
||||
<source>RSS</source>
|
||||
<translation>RSS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="935"/>
|
||||
<location filename="../GUI.cpp" line="947"/>
|
||||
<source>qBittorrent is bind to port: %1</source>
|
||||
<comment>e.g: qBittorrent is bind to port: 1666</comment>
|
||||
<translation>qBittorrent jest podłączony do portu: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1036"/>
|
||||
<location filename="../GUI.cpp" line="1048"/>
|
||||
<source>DHT support [ON], port: %1</source>
|
||||
<translation>Wsparcie DHT [WŁ], port: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1042"/>
|
||||
<location filename="../GUI.cpp" line="1054"/>
|
||||
<source>DHT support [OFF]</source>
|
||||
<translation>Wsparcie DHT [WYŁ]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1046"/>
|
||||
<location filename="../GUI.cpp" line="1058"/>
|
||||
<source>PeX support [ON]</source>
|
||||
<translation>Wsparcie PeX [WŁ]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1050"/>
|
||||
<location filename="../GUI.cpp" line="1062"/>
|
||||
<source>PeX support [OFF]</source>
|
||||
<translation>Wsparcie pEx [WYŁ]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="612"/>
|
||||
<location filename="../GUI.cpp" line="624"/>
|
||||
<source>The download list is not empty.
|
||||
Are you sure you want to quit qBittorrent?</source>
|
||||
<translation>Lista pobierania nie jest pusta.
|
||||
Czy napewno zamknąć qBittorrent?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1104"/>
|
||||
<location filename="../GUI.cpp" line="1122"/>
|
||||
<source>Downloads</source>
|
||||
<translation>Pobieranie</translation>
|
||||
</message>
|
||||
|
@ -2236,12 +2246,12 @@ Czy napewno zamknąć qBittorrent?</translation>
|
|||
<translation type="obsolete">Czy napewno usunąć wybrane pozycje z listy zakończonych z twardego dysku?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="825"/>
|
||||
<location filename="../GUI.cpp" line="837"/>
|
||||
<source>Are you sure you want to delete the selected item(s) in finished list?</source>
|
||||
<translation>Czy napewno usunąć wybrane pozycje z listy zakończonych?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="957"/>
|
||||
<location filename="../GUI.cpp" line="969"/>
|
||||
<source>UPnP support [ON]</source>
|
||||
<translation>Wsparcie UPnP [WŁ]</translation>
|
||||
</message>
|
||||
|
@ -2251,17 +2261,17 @@ Czy napewno zamknąć qBittorrent?</translation>
|
|||
<translation type="obsolete">Bądź ostrożny, wymiana plików chronionych prawami autorskimi jest niezgodna z prawem.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1070"/>
|
||||
<location filename="../GUI.cpp" line="1082"/>
|
||||
<source>Encryption support [ON]</source>
|
||||
<translation>Wsparcie szyfrowania [WŁ]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1075"/>
|
||||
<location filename="../GUI.cpp" line="1087"/>
|
||||
<source>Encryption support [FORCED]</source>
|
||||
<translation>Wsparcie szyfrowania [WYMUSZONE]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1080"/>
|
||||
<location filename="../GUI.cpp" line="1092"/>
|
||||
<source>Encryption support [OFF]</source>
|
||||
<translation>Wsparcie szyfrowania [WYŁ]</translation>
|
||||
</message>
|
||||
|
@ -2277,13 +2287,13 @@ Czy napewno zamknąć qBittorrent?</translation>
|
|||
<translation type="obsolete">Ratio</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="383"/>
|
||||
<location filename="../GUI.cpp" line="395"/>
|
||||
<source>Alt+1</source>
|
||||
<comment>shortcut to switch to first tab</comment>
|
||||
<translation>Alt+1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="385"/>
|
||||
<location filename="../GUI.cpp" line="397"/>
|
||||
<source>Alt+2</source>
|
||||
<comment>shortcut to switch to second tab</comment>
|
||||
<translation>Alt+2</translation>
|
||||
|
@ -2295,18 +2305,18 @@ Czy napewno zamknąć qBittorrent?</translation>
|
|||
<translation type="obsolete">Alt+3, Ctrl+F</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="391"/>
|
||||
<location filename="../GUI.cpp" line="403"/>
|
||||
<source>Alt+4</source>
|
||||
<comment>shortcut to switch to fourth tab</comment>
|
||||
<translation>Alt+4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="459"/>
|
||||
<location filename="../GUI.cpp" line="471"/>
|
||||
<source>Url download error</source>
|
||||
<translation>Błąd pobierania URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="459"/>
|
||||
<location filename="../GUI.cpp" line="471"/>
|
||||
<source>Couldn't download file at url: %1, reason: %2.</source>
|
||||
<translation>Nie można pobrać pliku z url: %1, powód: %2.</translation>
|
||||
</message>
|
||||
|
@ -2316,17 +2326,17 @@ Czy napewno zamknąć qBittorrent?</translation>
|
|||
<translation type="obsolete">Szybkie wznowienie danych zostało odrzucone przez torrent %1, sprawdzam ponownie...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="758"/>
|
||||
<location filename="../GUI.cpp" line="770"/>
|
||||
<source>Are you sure you want to delete the selected item(s) from download list and from hard drive?</source>
|
||||
<translation>Czy chcesz usunąć wybrane elementy z listy pobierania i z twardego dysku?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="765"/>
|
||||
<location filename="../GUI.cpp" line="777"/>
|
||||
<source>Are you sure you want to delete the selected item(s) from finished list and from hard drive?</source>
|
||||
<translation>Czy chcesz usunąć wybrane elementy z listy ukończonych i z twardego dysku?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="779"/>
|
||||
<location filename="../GUI.cpp" line="791"/>
|
||||
<source>'%1' was removed permanently.</source>
|
||||
<comment>'xxx.avi' was removed permanently.</comment>
|
||||
<translation>'%1' został całkowicie usunięty.</translation>
|
||||
|
@ -2337,71 +2347,71 @@ Czy napewno zamknąć qBittorrent?</translation>
|
|||
<translation type="obsolete">Błąd wyszukiwania url seeda dla url:%1, wiadomość: %2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="387"/>
|
||||
<location filename="../GUI.cpp" line="399"/>
|
||||
<source>Alt+3</source>
|
||||
<comment>shortcut to switch to third tab</comment>
|
||||
<translation>Alt+3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="389"/>
|
||||
<location filename="../GUI.cpp" line="401"/>
|
||||
<source>Ctrl+F</source>
|
||||
<comment>shortcut to switch to search tab</comment>
|
||||
<translation>Ctrl+F</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="960"/>
|
||||
<location filename="../GUI.cpp" line="972"/>
|
||||
<source>UPnP support [OFF]</source>
|
||||
<translation>Obsługa UPnP [WYŁ]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="965"/>
|
||||
<location filename="../GUI.cpp" line="977"/>
|
||||
<source>NAT-PMP support [ON]</source>
|
||||
<translation>Obsługa NAT-PMP [WŁ]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="968"/>
|
||||
<location filename="../GUI.cpp" line="980"/>
|
||||
<source>NAT-PMP support [OFF]</source>
|
||||
<translation>Obsługa NAT-PMP [WYŁ]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1055"/>
|
||||
<location filename="../GUI.cpp" line="1067"/>
|
||||
<source>Local Peer Discovery [ON]</source>
|
||||
<translation>Local Peer Discovery [WŁ]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1058"/>
|
||||
<location filename="../GUI.cpp" line="1070"/>
|
||||
<source>Local Peer Discovery support [OFF]</source>
|
||||
<translation>Obsługa Local Peer Discovery [WYŁ]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="785"/>
|
||||
<location filename="../GUI.cpp" line="797"/>
|
||||
<source>'%1' was removed because its ratio reached the maximum value you set.</source>
|
||||
<comment>%1 is a file name</comment>
|
||||
<translation>'%1' został usunięty ponieważ ratio osiągnęło ustawioną wartość.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1321"/>
|
||||
<location filename="../GUI.cpp" line="1339"/>
|
||||
<source>qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)</source>
|
||||
<comment>%1 is qBittorrent version</comment>
|
||||
<translation>qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1306"/>
|
||||
<location filename="../GUI.cpp" line="1324"/>
|
||||
<source>DL: %1 KiB/s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1307"/>
|
||||
<location filename="../GUI.cpp" line="1325"/>
|
||||
<source>UP: %1 KiB/s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="291"/>
|
||||
<location filename="../GUI.cpp" line="303"/>
|
||||
<source>Ratio: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="293"/>
|
||||
<location filename="../GUI.cpp" line="305"/>
|
||||
<source>DHT: %1 nodes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -4130,9 +4140,9 @@ Jednak tamte wtyczki były wyłączone.</translation>
|
|||
<translation type="obsolete">d</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../misc.h" line="322"/>
|
||||
<location filename="../misc.h" line="303"/>
|
||||
<source>Unknown</source>
|
||||
<translation>Nieznany</translation>
|
||||
<translation type="obsolete">Nieznany</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="" line="0"/>
|
||||
|
@ -4291,12 +4301,12 @@ Jednak tamte wtyczki były wyłączone.</translation>
|
|||
<translation type="obsolete">Ten adres IP jest niepoprawny.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="774"/>
|
||||
<location filename="../options_imp.cpp" line="787"/>
|
||||
<source>Options were saved successfully.</source>
|
||||
<translation>Ustawienia zapisane.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1052"/>
|
||||
<location filename="../options_imp.cpp" line="1075"/>
|
||||
<source>Choose scan directory</source>
|
||||
<translation>Wybierz katalog przeszukiwania</translation>
|
||||
</message>
|
||||
|
@ -4306,7 +4316,7 @@ Jednak tamte wtyczki były wyłączone.</translation>
|
|||
<translation type="obsolete">Wybierz plik ipfilter.dat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1067"/>
|
||||
<location filename="../options_imp.cpp" line="1090"/>
|
||||
<source>Choose a save directory</source>
|
||||
<translation>Wybierz katalog docelowy</translation>
|
||||
</message>
|
||||
|
@ -4322,7 +4332,7 @@ Jednak tamte wtyczki były wyłączone.</translation>
|
|||
<translation type="obsolete">Nie można otworzyć %1 w trybie odczytu.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1059"/>
|
||||
<location filename="../options_imp.cpp" line="1082"/>
|
||||
<source>Choose an ip filter file</source>
|
||||
<translation>Wybierz plik ip filter</translation>
|
||||
</message>
|
||||
|
@ -4332,7 +4342,7 @@ Jednak tamte wtyczki były wyłączone.</translation>
|
|||
<translation type="obsolete">Filtry (*.dat *.p2p *.p2b)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1059"/>
|
||||
<location filename="../options_imp.cpp" line="1082"/>
|
||||
<source>Filters</source>
|
||||
<translation>Filtry</translation>
|
||||
</message>
|
||||
|
|
Binary file not shown.
|
@ -229,7 +229,7 @@ Copyright ©2007 por Christophe Dumez<br>
|
|||
<translation type="obsolete">0.0.0.0</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1800"/>
|
||||
<location filename="../options.ui" line="1819"/>
|
||||
<source>Port:</source>
|
||||
<translation>Porta:</translation>
|
||||
</message>
|
||||
|
@ -239,7 +239,7 @@ Copyright ©2007 por Christophe Dumez<br>
|
|||
<translation type="obsolete">Servidor proxy requer autenticação</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1839"/>
|
||||
<location filename="../options.ui" line="1858"/>
|
||||
<source>Authentication</source>
|
||||
<translation>Autenticação</translation>
|
||||
</message>
|
||||
|
@ -249,7 +249,7 @@ Copyright ©2007 por Christophe Dumez<br>
|
|||
<translation type="obsolete">Usuário:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1860"/>
|
||||
<location filename="../options.ui" line="1879"/>
|
||||
<source>Password:</source>
|
||||
<translation>Senha:</translation>
|
||||
</message>
|
||||
|
@ -823,7 +823,7 @@ Copyright ©2007 por Christophe Dumez<br>
|
|||
<translation>Proxy:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1850"/>
|
||||
<location filename="../options.ui" line="1869"/>
|
||||
<source>Username:</source>
|
||||
<translation>Usuário:</translation>
|
||||
</message>
|
||||
|
@ -908,17 +908,17 @@ Copyright ©2007 por Christophe Dumez<br>
|
|||
<translation>RSS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1660"/>
|
||||
<location filename="../options.ui" line="1676"/>
|
||||
<source>RSS feeds refresh interval:</source>
|
||||
<translation>Intervalo de atualização dos RSS feeds:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1680"/>
|
||||
<location filename="../options.ui" line="1696"/>
|
||||
<source>minutes</source>
|
||||
<translation>minutos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1704"/>
|
||||
<location filename="../options.ui" line="1720"/>
|
||||
<source>Maximum number of articles per feed:</source>
|
||||
<translation>Número máximo de artigos por feed:</translation>
|
||||
</message>
|
||||
|
@ -989,20 +989,30 @@ Copyright ©2007 por Christophe Dumez<br>
|
|||
<translation>Parar Azureus para evitar ser banido</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1765"/>
|
||||
<location filename="../options.ui" line="1784"/>
|
||||
<source>Web UI</source>
|
||||
<translation>Caminho web</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1778"/>
|
||||
<location filename="../options.ui" line="1797"/>
|
||||
<source>Enable Web User Interface</source>
|
||||
<translation>Habilitar interface de usuário web</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1791"/>
|
||||
<location filename="../options.ui" line="1810"/>
|
||||
<source>HTTP Server</source>
|
||||
<translation>Servidor web</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1629"/>
|
||||
<source>Enable RSS support</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1639"/>
|
||||
<source>RSS settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DownloadingTorrents</name>
|
||||
|
@ -1259,7 +1269,7 @@ Copyright ©2007 por Christophe Dumez<br>
|
|||
<context>
|
||||
<name>GUI</name>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="716"/>
|
||||
<location filename="../GUI.cpp" line="728"/>
|
||||
<source>Open Torrent Files</source>
|
||||
<translation>Abrir Arquivos Torrent</translation>
|
||||
</message>
|
||||
|
@ -1279,17 +1289,17 @@ Copyright ©2007 por Christophe Dumez<br>
|
|||
<translation type="obsolete">Tem certeza que deseja apagar todos os arquivos na lista de downloads?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="826"/>
|
||||
<location filename="../GUI.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation>&Sim</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="826"/>
|
||||
<location filename="../GUI.cpp" line="838"/>
|
||||
<source>&No</source>
|
||||
<translation>&Não</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="818"/>
|
||||
<location filename="../GUI.cpp" line="830"/>
|
||||
<source>Are you sure you want to delete the selected item(s) in download list?</source>
|
||||
<translation>Tem certeza que deseja apagar o(s) arquivo(s) selecionado(s) na lista de downloads?</translation>
|
||||
</message>
|
||||
|
@ -1304,7 +1314,7 @@ Copyright ©2007 por Christophe Dumez<br>
|
|||
<translation type="obsolete">iniciado</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1109"/>
|
||||
<location filename="../GUI.cpp" line="1127"/>
|
||||
<source>Finished</source>
|
||||
<translation>Concluído</translation>
|
||||
</message>
|
||||
|
@ -1359,7 +1369,7 @@ Copyright ©2007 por Christophe Dumez<br>
|
|||
<translation type="obsolete">Não pode criar o diretório:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="717"/>
|
||||
<location filename="../GUI.cpp" line="729"/>
|
||||
<source>Torrent Files</source>
|
||||
<translation>Arquivos Torrent</translation>
|
||||
</message>
|
||||
|
@ -1413,12 +1423,12 @@ Copyright ©2007 por Christophe Dumez<br>
|
|||
<translation type="obsolete">qBittorrent</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1341"/>
|
||||
<location filename="../GUI.cpp" line="1359"/>
|
||||
<source>qBittorrent</source>
|
||||
<translation>qBittorrent</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="824"/>
|
||||
<location filename="../GUI.cpp" line="836"/>
|
||||
<source>Are you sure? -- qBittorrent</source>
|
||||
<translation>Tem certeza? -- qBittorrent</translation>
|
||||
</message>
|
||||
|
@ -1672,7 +1682,7 @@ Por favor feche o outro primeiro.</translation>
|
|||
<translation type="obsolete">Transferências</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="355"/>
|
||||
<location filename="../GUI.cpp" line="367"/>
|
||||
<source>Download finished</source>
|
||||
<translation>Download finalizado</translation>
|
||||
</message>
|
||||
|
@ -1703,23 +1713,23 @@ Por favor feche o outro primeiro.</translation>
|
|||
<translation type="obsolete">Erro de Entrada/Saída</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="908"/>
|
||||
<location filename="../GUI.cpp" line="920"/>
|
||||
<source>qBittorrent %1</source>
|
||||
<comment>e.g: qBittorrent v0.x</comment>
|
||||
<translation>qBittorrent %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>Connection status:</source>
|
||||
<translation>Estado da conexão:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>Offline</source>
|
||||
<translation>Offline</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>No peers found...</source>
|
||||
<translation>Peers não encontrados...</translation>
|
||||
</message>
|
||||
|
@ -1784,13 +1794,13 @@ Por favor feche o outro primeiro.</translation>
|
|||
<translation type="obsolete">qBittorrent %1 iniciado.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1344"/>
|
||||
<location filename="../GUI.cpp" line="1362"/>
|
||||
<source>DL speed: %1 KiB/s</source>
|
||||
<comment>e.g: Download speed: 10 KiB/s</comment>
|
||||
<translation>Velocidade de download: %1 KiB/s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1347"/>
|
||||
<location filename="../GUI.cpp" line="1365"/>
|
||||
<source>UP speed: %1 KiB/s</source>
|
||||
<comment>e.g: Upload speed: 10 KiB/s</comment>
|
||||
<translation>Velocidade de Upload: %1 KiB/s</translation>
|
||||
|
@ -1814,12 +1824,12 @@ Por favor feche o outro primeiro.</translation>
|
|||
<translation type="obsolete">Parado</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="611"/>
|
||||
<location filename="../GUI.cpp" line="623"/>
|
||||
<source>Are you sure you want to quit?</source>
|
||||
<translation>Você tem certeza que quer sair?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="839"/>
|
||||
<location filename="../GUI.cpp" line="851"/>
|
||||
<source>'%1' was removed.</source>
|
||||
<comment>'xxx.avi' was removed.</comment>
|
||||
<translation>'%1' foi deletado.</translation>
|
||||
|
@ -1861,12 +1871,12 @@ Por favor feche o outro primeiro.</translation>
|
|||
<translation type="obsolete">Escutando a porta: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1195"/>
|
||||
<location filename="../GUI.cpp" line="1213"/>
|
||||
<source>All downloads were paused.</source>
|
||||
<translation>Todos os downloads pausados.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1221"/>
|
||||
<location filename="../GUI.cpp" line="1239"/>
|
||||
<source>'%1' paused.</source>
|
||||
<comment>xxx.avi paused.</comment>
|
||||
<translation>'%1' pausado.</translation>
|
||||
|
@ -1878,30 +1888,30 @@ Por favor feche o outro primeiro.</translation>
|
|||
<translation type="obsolete">Conectando...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1254"/>
|
||||
<location filename="../GUI.cpp" line="1272"/>
|
||||
<source>All downloads were resumed.</source>
|
||||
<translation>Todos os downloads foram resumidos.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1280"/>
|
||||
<location filename="../GUI.cpp" line="1298"/>
|
||||
<source>'%1' resumed.</source>
|
||||
<comment>e.g: xxx.avi resumed.</comment>
|
||||
<translation>'%1' resumido.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="355"/>
|
||||
<location filename="../GUI.cpp" line="367"/>
|
||||
<source>%1 has finished downloading.</source>
|
||||
<comment>e.g: xxx.avi has finished downloading.</comment>
|
||||
<translation>%1 download finalizado.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="364"/>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<source>I/O Error</source>
|
||||
<comment>i.e: Input/Output Error</comment>
|
||||
<translation>Erro de Entrada/Saída</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="364"/>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<source>An error occured when trying to read or write %1. The disk is probably full, download has been paused</source>
|
||||
<comment>e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused</comment>
|
||||
<translation>Ocorreu um erro quando tentava ler ou escrever %1. Provavelmente o seu disco está cheio, o download foi pausado</translation>
|
||||
|
@ -1913,23 +1923,23 @@ Por favor feche o outro primeiro.</translation>
|
|||
<translation type="obsolete">Ocorreu um erro (disco cheio?), '%1' pausado.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>Connection Status:</source>
|
||||
<translation>Estado da conexão:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1355"/>
|
||||
<location filename="../GUI.cpp" line="1373"/>
|
||||
<source>Online</source>
|
||||
<translation>Online</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>Firewalled?</source>
|
||||
<comment>i.e: Behind a firewall/router?</comment>
|
||||
<translation>Sob firewall?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>No incoming connections...</source>
|
||||
<translation>Sem conexão...</translation>
|
||||
</message>
|
||||
|
@ -1961,66 +1971,66 @@ Por favor feche o outro primeiro.</translation>
|
|||
<translation type="obsolete">baixando '%1', por favor espere...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<location filename="../GUI.cpp" line="388"/>
|
||||
<source>An error occured (full disk?), '%1' paused.</source>
|
||||
<comment>e.g: An error occured (full disk?), 'xxx.avi' paused.</comment>
|
||||
<translation>Ocorreu um erro (disco cheio?), '%1' pausado.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="165"/>
|
||||
<location filename="../GUI.cpp" line="153"/>
|
||||
<source>Search</source>
|
||||
<translation>Busca</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="169"/>
|
||||
<location filename="../GUI.cpp" line="279"/>
|
||||
<source>RSS</source>
|
||||
<translation>RSS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="935"/>
|
||||
<location filename="../GUI.cpp" line="947"/>
|
||||
<source>qBittorrent is bind to port: %1</source>
|
||||
<comment>e.g: qBittorrent is bind to port: 1666</comment>
|
||||
<translation>qBittorrent escuta a porta: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1036"/>
|
||||
<location filename="../GUI.cpp" line="1048"/>
|
||||
<source>DHT support [ON], port: %1</source>
|
||||
<translation>Suporte DHT [Ligado], porta: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1042"/>
|
||||
<location filename="../GUI.cpp" line="1054"/>
|
||||
<source>DHT support [OFF]</source>
|
||||
<translation>Suporte DHT [Desligado]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1046"/>
|
||||
<location filename="../GUI.cpp" line="1058"/>
|
||||
<source>PeX support [ON]</source>
|
||||
<translation>Suporte PeX [Ligado]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1050"/>
|
||||
<location filename="../GUI.cpp" line="1062"/>
|
||||
<source>PeX support [OFF]</source>
|
||||
<translation>Suporte PeX [Desligado]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="612"/>
|
||||
<location filename="../GUI.cpp" line="624"/>
|
||||
<source>The download list is not empty.
|
||||
Are you sure you want to quit qBittorrent?</source>
|
||||
<translation>A lista de download não está vazia.
|
||||
Deseja mesmo sair do qBittorrent?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1104"/>
|
||||
<location filename="../GUI.cpp" line="1122"/>
|
||||
<source>Downloads</source>
|
||||
<translation>Downloads</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="825"/>
|
||||
<location filename="../GUI.cpp" line="837"/>
|
||||
<source>Are you sure you want to delete the selected item(s) in finished list?</source>
|
||||
<translation>Quer mesmo deletar os ítems selecionados na lista de finalizados?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="957"/>
|
||||
<location filename="../GUI.cpp" line="969"/>
|
||||
<source>UPnP support [ON]</source>
|
||||
<translation>Suporte UPnP [Ligado]</translation>
|
||||
</message>
|
||||
|
@ -2030,17 +2040,17 @@ Deseja mesmo sair do qBittorrent?</translation>
|
|||
<translation type="obsolete">Esteja ciente, compartilhar material protejido sem permissão é contra a lei.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1070"/>
|
||||
<location filename="../GUI.cpp" line="1082"/>
|
||||
<source>Encryption support [ON]</source>
|
||||
<translation>Suporte a encriptação [Ligado]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1075"/>
|
||||
<location filename="../GUI.cpp" line="1087"/>
|
||||
<source>Encryption support [FORCED]</source>
|
||||
<translation>Suporte a encriptação [FORÇADO]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1080"/>
|
||||
<location filename="../GUI.cpp" line="1092"/>
|
||||
<source>Encryption support [OFF]</source>
|
||||
<translation>Suporte a encriptação [Desligado]</translation>
|
||||
</message>
|
||||
|
@ -2056,13 +2066,13 @@ Deseja mesmo sair do qBittorrent?</translation>
|
|||
<translation type="obsolete">Taxa</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="383"/>
|
||||
<location filename="../GUI.cpp" line="395"/>
|
||||
<source>Alt+1</source>
|
||||
<comment>shortcut to switch to first tab</comment>
|
||||
<translation>Alt+1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="385"/>
|
||||
<location filename="../GUI.cpp" line="397"/>
|
||||
<source>Alt+2</source>
|
||||
<comment>shortcut to switch to second tab</comment>
|
||||
<translation>Alt+2</translation>
|
||||
|
@ -2074,18 +2084,18 @@ Deseja mesmo sair do qBittorrent?</translation>
|
|||
<translation type="obsolete">Alt+3, Ctrl+F</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="391"/>
|
||||
<location filename="../GUI.cpp" line="403"/>
|
||||
<source>Alt+4</source>
|
||||
<comment>shortcut to switch to fourth tab</comment>
|
||||
<translation>Alt+4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="459"/>
|
||||
<location filename="../GUI.cpp" line="471"/>
|
||||
<source>Url download error</source>
|
||||
<translation>Erro no download da URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="459"/>
|
||||
<location filename="../GUI.cpp" line="471"/>
|
||||
<source>Couldn't download file at url: %1, reason: %2.</source>
|
||||
<translation>Não pude baixar arquivo em: %1, motivo: %2.</translation>
|
||||
</message>
|
||||
|
@ -2095,17 +2105,17 @@ Deseja mesmo sair do qBittorrent?</translation>
|
|||
<translation type="obsolete">Resumo rápido rejeitado para o torrent %1, tente novamente...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="758"/>
|
||||
<location filename="../GUI.cpp" line="770"/>
|
||||
<source>Are you sure you want to delete the selected item(s) from download list and from hard drive?</source>
|
||||
<translation>Quer mesmo deletar o(s) arquivo(s) selecionado(s) da lista e do seu HD ?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="765"/>
|
||||
<location filename="../GUI.cpp" line="777"/>
|
||||
<source>Are you sure you want to delete the selected item(s) from finished list and from hard drive?</source>
|
||||
<translation>Quer mesmo deletar o(s) arquivo(s) selecionado(s) da lista finalizada e do seu HD ?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="779"/>
|
||||
<location filename="../GUI.cpp" line="791"/>
|
||||
<source>'%1' was removed permanently.</source>
|
||||
<comment>'xxx.avi' was removed permanently.</comment>
|
||||
<translation>'%1' foi removido permanentemente.</translation>
|
||||
|
@ -2116,71 +2126,71 @@ Deseja mesmo sair do qBittorrent?</translation>
|
|||
<translation type="obsolete">Url falhou para: %1, mensagem: %2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="387"/>
|
||||
<location filename="../GUI.cpp" line="399"/>
|
||||
<source>Alt+3</source>
|
||||
<comment>shortcut to switch to third tab</comment>
|
||||
<translation>Alt+3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="389"/>
|
||||
<location filename="../GUI.cpp" line="401"/>
|
||||
<source>Ctrl+F</source>
|
||||
<comment>shortcut to switch to search tab</comment>
|
||||
<translation>Ctrl+F</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="960"/>
|
||||
<location filename="../GUI.cpp" line="972"/>
|
||||
<source>UPnP support [OFF]</source>
|
||||
<translation>Suporte UPnP [desligado]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="965"/>
|
||||
<location filename="../GUI.cpp" line="977"/>
|
||||
<source>NAT-PMP support [ON]</source>
|
||||
<translation>Suporte NAT-PMP [ligado]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="968"/>
|
||||
<location filename="../GUI.cpp" line="980"/>
|
||||
<source>NAT-PMP support [OFF]</source>
|
||||
<translation>Suporte NAT-PMP [desligado]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1055"/>
|
||||
<location filename="../GUI.cpp" line="1067"/>
|
||||
<source>Local Peer Discovery [ON]</source>
|
||||
<translation>Peer discovery [ligado]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1058"/>
|
||||
<location filename="../GUI.cpp" line="1070"/>
|
||||
<source>Local Peer Discovery support [OFF]</source>
|
||||
<translation>Peer discovery [desligado]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="785"/>
|
||||
<location filename="../GUI.cpp" line="797"/>
|
||||
<source>'%1' was removed because its ratio reached the maximum value you set.</source>
|
||||
<comment>%1 is a file name</comment>
|
||||
<translation>'%1' foi removido sua taxa atingiu o valor máximo que você configurou.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1321"/>
|
||||
<location filename="../GUI.cpp" line="1339"/>
|
||||
<source>qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)</source>
|
||||
<comment>%1 is qBittorrent version</comment>
|
||||
<translation>qBittorrent %1 (Down: %2Kb/s, Up: %3kb/s)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1306"/>
|
||||
<location filename="../GUI.cpp" line="1324"/>
|
||||
<source>DL: %1 KiB/s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1307"/>
|
||||
<location filename="../GUI.cpp" line="1325"/>
|
||||
<source>UP: %1 KiB/s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="291"/>
|
||||
<location filename="../GUI.cpp" line="303"/>
|
||||
<source>Ratio: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="293"/>
|
||||
<location filename="../GUI.cpp" line="305"/>
|
||||
<source>DHT: %1 nodes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -3941,9 +3951,9 @@ Portanto os plugins foram desabilitados.</translation>
|
|||
<translation type="obsolete">h</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../misc.h" line="322"/>
|
||||
<location filename="../misc.h" line="303"/>
|
||||
<source>Unknown</source>
|
||||
<translation>Desconhecido</translation>
|
||||
<translation type="obsolete">Desconhecido</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="" line="0"/>
|
||||
|
@ -4102,12 +4112,12 @@ Portanto os plugins foram desabilitados.</translation>
|
|||
<translation type="obsolete">Este IP é inválido.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="774"/>
|
||||
<location filename="../options_imp.cpp" line="787"/>
|
||||
<source>Options were saved successfully.</source>
|
||||
<translation>Opções salvas com sucesso.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1052"/>
|
||||
<location filename="../options_imp.cpp" line="1075"/>
|
||||
<source>Choose scan directory</source>
|
||||
<translation>Selecione diretório para varredura</translation>
|
||||
</message>
|
||||
|
@ -4117,7 +4127,7 @@ Portanto os plugins foram desabilitados.</translation>
|
|||
<translation type="obsolete">Selecione um arquivo ipfilter.dat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1067"/>
|
||||
<location filename="../options_imp.cpp" line="1090"/>
|
||||
<source>Choose a save directory</source>
|
||||
<translation>Selecione um diretório de salvamento</translation>
|
||||
</message>
|
||||
|
@ -4133,12 +4143,12 @@ Portanto os plugins foram desabilitados.</translation>
|
|||
<translation type="obsolete">Não posso abrir %1 no modo de leitura.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1059"/>
|
||||
<location filename="../options_imp.cpp" line="1082"/>
|
||||
<source>Choose an ip filter file</source>
|
||||
<translation>Escolha um arquivo de filtro de ip</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1059"/>
|
||||
<location filename="../options_imp.cpp" line="1082"/>
|
||||
<source>Filters</source>
|
||||
<translation>Filtros</translation>
|
||||
</message>
|
||||
|
|
Binary file not shown.
|
@ -229,7 +229,7 @@ Copyright ©2007 por Christophe Dumez<br>
|
|||
<translation type="obsolete">0.0.0.0</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1800"/>
|
||||
<location filename="../options.ui" line="1819"/>
|
||||
<source>Port:</source>
|
||||
<translation>Porta:</translation>
|
||||
</message>
|
||||
|
@ -239,7 +239,7 @@ Copyright ©2007 por Christophe Dumez<br>
|
|||
<translation type="obsolete">Servidor proxy requer autenticação</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1839"/>
|
||||
<location filename="../options.ui" line="1858"/>
|
||||
<source>Authentication</source>
|
||||
<translation>Autenticação</translation>
|
||||
</message>
|
||||
|
@ -249,7 +249,7 @@ Copyright ©2007 por Christophe Dumez<br>
|
|||
<translation type="obsolete">Usuário:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1860"/>
|
||||
<location filename="../options.ui" line="1879"/>
|
||||
<source>Password:</source>
|
||||
<translation>Senha:</translation>
|
||||
</message>
|
||||
|
@ -823,7 +823,7 @@ Copyright ©2007 por Christophe Dumez<br>
|
|||
<translation>Proxy:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1850"/>
|
||||
<location filename="../options.ui" line="1869"/>
|
||||
<source>Username:</source>
|
||||
<translation>Usuário:</translation>
|
||||
</message>
|
||||
|
@ -908,17 +908,17 @@ Copyright ©2007 por Christophe Dumez<br>
|
|||
<translation>RSS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1660"/>
|
||||
<location filename="../options.ui" line="1676"/>
|
||||
<source>RSS feeds refresh interval:</source>
|
||||
<translation>Intervalo de atualização dos RSS feeds:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1680"/>
|
||||
<location filename="../options.ui" line="1696"/>
|
||||
<source>minutes</source>
|
||||
<translation>minutos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1704"/>
|
||||
<location filename="../options.ui" line="1720"/>
|
||||
<source>Maximum number of articles per feed:</source>
|
||||
<translation>Número máximo de artigos por feed:</translation>
|
||||
</message>
|
||||
|
@ -989,20 +989,30 @@ Copyright ©2007 por Christophe Dumez<br>
|
|||
<translation>Parar Azureus para evitar ser banido</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1765"/>
|
||||
<location filename="../options.ui" line="1784"/>
|
||||
<source>Web UI</source>
|
||||
<translation>Caminho web</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1778"/>
|
||||
<location filename="../options.ui" line="1797"/>
|
||||
<source>Enable Web User Interface</source>
|
||||
<translation>Habilitar interface de usuário web</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1791"/>
|
||||
<location filename="../options.ui" line="1810"/>
|
||||
<source>HTTP Server</source>
|
||||
<translation>Servidor web</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1629"/>
|
||||
<source>Enable RSS support</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1639"/>
|
||||
<source>RSS settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DownloadingTorrents</name>
|
||||
|
@ -1259,7 +1269,7 @@ Copyright ©2007 por Christophe Dumez<br>
|
|||
<context>
|
||||
<name>GUI</name>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="716"/>
|
||||
<location filename="../GUI.cpp" line="728"/>
|
||||
<source>Open Torrent Files</source>
|
||||
<translation>Abrir Arquivos Torrent</translation>
|
||||
</message>
|
||||
|
@ -1279,17 +1289,17 @@ Copyright ©2007 por Christophe Dumez<br>
|
|||
<translation type="obsolete">Tem certeza que deseja apagar todos os arquivos na lista de downloads?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="826"/>
|
||||
<location filename="../GUI.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation>&Sim</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="826"/>
|
||||
<location filename="../GUI.cpp" line="838"/>
|
||||
<source>&No</source>
|
||||
<translation>&Não</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="818"/>
|
||||
<location filename="../GUI.cpp" line="830"/>
|
||||
<source>Are you sure you want to delete the selected item(s) in download list?</source>
|
||||
<translation>Tem certeza que deseja apagar o(s) arquivo(s) selecionado(s) na lista de downloads?</translation>
|
||||
</message>
|
||||
|
@ -1304,7 +1314,7 @@ Copyright ©2007 por Christophe Dumez<br>
|
|||
<translation type="obsolete">iniciado</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1109"/>
|
||||
<location filename="../GUI.cpp" line="1127"/>
|
||||
<source>Finished</source>
|
||||
<translation>Concluído</translation>
|
||||
</message>
|
||||
|
@ -1359,7 +1369,7 @@ Copyright ©2007 por Christophe Dumez<br>
|
|||
<translation type="obsolete">Não pode criar o diretório:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="717"/>
|
||||
<location filename="../GUI.cpp" line="729"/>
|
||||
<source>Torrent Files</source>
|
||||
<translation>Arquivos Torrent</translation>
|
||||
</message>
|
||||
|
@ -1413,12 +1423,12 @@ Copyright ©2007 por Christophe Dumez<br>
|
|||
<translation type="obsolete">qBittorrent</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1341"/>
|
||||
<location filename="../GUI.cpp" line="1359"/>
|
||||
<source>qBittorrent</source>
|
||||
<translation>qBittorrent</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="824"/>
|
||||
<location filename="../GUI.cpp" line="836"/>
|
||||
<source>Are you sure? -- qBittorrent</source>
|
||||
<translation>Tem certeza? -- qBittorrent</translation>
|
||||
</message>
|
||||
|
@ -1672,7 +1682,7 @@ Por favor feche o outro primeiro.</translation>
|
|||
<translation type="obsolete">Transferências</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="355"/>
|
||||
<location filename="../GUI.cpp" line="367"/>
|
||||
<source>Download finished</source>
|
||||
<translation>Download finalizado</translation>
|
||||
</message>
|
||||
|
@ -1703,23 +1713,23 @@ Por favor feche o outro primeiro.</translation>
|
|||
<translation type="obsolete">Erro de Entrada/Saída</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="908"/>
|
||||
<location filename="../GUI.cpp" line="920"/>
|
||||
<source>qBittorrent %1</source>
|
||||
<comment>e.g: qBittorrent v0.x</comment>
|
||||
<translation>qBittorrent %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>Connection status:</source>
|
||||
<translation>Estado da conexão:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>Offline</source>
|
||||
<translation>Offline</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>No peers found...</source>
|
||||
<translation>Peers não encontrados...</translation>
|
||||
</message>
|
||||
|
@ -1784,13 +1794,13 @@ Por favor feche o outro primeiro.</translation>
|
|||
<translation type="obsolete">qBittorrent %1 iniciado.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1344"/>
|
||||
<location filename="../GUI.cpp" line="1362"/>
|
||||
<source>DL speed: %1 KiB/s</source>
|
||||
<comment>e.g: Download speed: 10 KiB/s</comment>
|
||||
<translation>Velocidade de download: %1 KiB/s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1347"/>
|
||||
<location filename="../GUI.cpp" line="1365"/>
|
||||
<source>UP speed: %1 KiB/s</source>
|
||||
<comment>e.g: Upload speed: 10 KiB/s</comment>
|
||||
<translation>Velocidade de Upload: %1 KiB/s</translation>
|
||||
|
@ -1814,12 +1824,12 @@ Por favor feche o outro primeiro.</translation>
|
|||
<translation type="obsolete">Parado</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="611"/>
|
||||
<location filename="../GUI.cpp" line="623"/>
|
||||
<source>Are you sure you want to quit?</source>
|
||||
<translation>Você tem certeza que quer sair?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="839"/>
|
||||
<location filename="../GUI.cpp" line="851"/>
|
||||
<source>'%1' was removed.</source>
|
||||
<comment>'xxx.avi' was removed.</comment>
|
||||
<translation>'%1' foi deletado.</translation>
|
||||
|
@ -1861,12 +1871,12 @@ Por favor feche o outro primeiro.</translation>
|
|||
<translation type="obsolete">Escutando a porta: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1195"/>
|
||||
<location filename="../GUI.cpp" line="1213"/>
|
||||
<source>All downloads were paused.</source>
|
||||
<translation>Todos os downloads pausados.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1221"/>
|
||||
<location filename="../GUI.cpp" line="1239"/>
|
||||
<source>'%1' paused.</source>
|
||||
<comment>xxx.avi paused.</comment>
|
||||
<translation>'%1' pausado.</translation>
|
||||
|
@ -1878,30 +1888,30 @@ Por favor feche o outro primeiro.</translation>
|
|||
<translation type="obsolete">Conectando...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1254"/>
|
||||
<location filename="../GUI.cpp" line="1272"/>
|
||||
<source>All downloads were resumed.</source>
|
||||
<translation>Todos os downloads foram resumidos.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1280"/>
|
||||
<location filename="../GUI.cpp" line="1298"/>
|
||||
<source>'%1' resumed.</source>
|
||||
<comment>e.g: xxx.avi resumed.</comment>
|
||||
<translation>'%1' resumido.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="355"/>
|
||||
<location filename="../GUI.cpp" line="367"/>
|
||||
<source>%1 has finished downloading.</source>
|
||||
<comment>e.g: xxx.avi has finished downloading.</comment>
|
||||
<translation>%1 download finalizado.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="364"/>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<source>I/O Error</source>
|
||||
<comment>i.e: Input/Output Error</comment>
|
||||
<translation>Erro de Entrada/Saída</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="364"/>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<source>An error occured when trying to read or write %1. The disk is probably full, download has been paused</source>
|
||||
<comment>e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused</comment>
|
||||
<translation>Ocorreu um erro quando tentava ler ou escrever %1. Provavelmente o seu disco está cheio, o download foi pausado</translation>
|
||||
|
@ -1913,23 +1923,23 @@ Por favor feche o outro primeiro.</translation>
|
|||
<translation type="obsolete">Ocorreu um erro (disco cheio?), '%1' pausado.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>Connection Status:</source>
|
||||
<translation>Estado da conexão:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1355"/>
|
||||
<location filename="../GUI.cpp" line="1373"/>
|
||||
<source>Online</source>
|
||||
<translation>Online</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>Firewalled?</source>
|
||||
<comment>i.e: Behind a firewall/router?</comment>
|
||||
<translation>Sob firewall?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>No incoming connections...</source>
|
||||
<translation>Sem conexão...</translation>
|
||||
</message>
|
||||
|
@ -1961,66 +1971,66 @@ Por favor feche o outro primeiro.</translation>
|
|||
<translation type="obsolete">baixando '%1', por favor espere...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<location filename="../GUI.cpp" line="388"/>
|
||||
<source>An error occured (full disk?), '%1' paused.</source>
|
||||
<comment>e.g: An error occured (full disk?), 'xxx.avi' paused.</comment>
|
||||
<translation>Ocorreu um erro (disco cheio?), '%1' pausado.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="165"/>
|
||||
<location filename="../GUI.cpp" line="153"/>
|
||||
<source>Search</source>
|
||||
<translation>Busca</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="169"/>
|
||||
<location filename="../GUI.cpp" line="279"/>
|
||||
<source>RSS</source>
|
||||
<translation>RSS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="935"/>
|
||||
<location filename="../GUI.cpp" line="947"/>
|
||||
<source>qBittorrent is bind to port: %1</source>
|
||||
<comment>e.g: qBittorrent is bind to port: 1666</comment>
|
||||
<translation>qBittorrent escuta a porta: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1036"/>
|
||||
<location filename="../GUI.cpp" line="1048"/>
|
||||
<source>DHT support [ON], port: %1</source>
|
||||
<translation>Suporte DHT [Ligado], porta: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1042"/>
|
||||
<location filename="../GUI.cpp" line="1054"/>
|
||||
<source>DHT support [OFF]</source>
|
||||
<translation>Suporte DHT [Desligado]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1046"/>
|
||||
<location filename="../GUI.cpp" line="1058"/>
|
||||
<source>PeX support [ON]</source>
|
||||
<translation>Suporte PeX [Ligado]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1050"/>
|
||||
<location filename="../GUI.cpp" line="1062"/>
|
||||
<source>PeX support [OFF]</source>
|
||||
<translation>Suporte PeX [Desligado]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="612"/>
|
||||
<location filename="../GUI.cpp" line="624"/>
|
||||
<source>The download list is not empty.
|
||||
Are you sure you want to quit qBittorrent?</source>
|
||||
<translation>A lista de download não está vazia.
|
||||
Deseja mesmo sair do qBittorrent?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1104"/>
|
||||
<location filename="../GUI.cpp" line="1122"/>
|
||||
<source>Downloads</source>
|
||||
<translation>Downloads</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="825"/>
|
||||
<location filename="../GUI.cpp" line="837"/>
|
||||
<source>Are you sure you want to delete the selected item(s) in finished list?</source>
|
||||
<translation>Quer mesmo deletar os ítems selecionados na lista de finalizados?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="957"/>
|
||||
<location filename="../GUI.cpp" line="969"/>
|
||||
<source>UPnP support [ON]</source>
|
||||
<translation>Suporte UPnP [Ligado]</translation>
|
||||
</message>
|
||||
|
@ -2030,17 +2040,17 @@ Deseja mesmo sair do qBittorrent?</translation>
|
|||
<translation type="obsolete">Esteja ciente, compartilhar material protejido sem permissão é contra a lei.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1070"/>
|
||||
<location filename="../GUI.cpp" line="1082"/>
|
||||
<source>Encryption support [ON]</source>
|
||||
<translation>Suporte a encriptação [Ligado]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1075"/>
|
||||
<location filename="../GUI.cpp" line="1087"/>
|
||||
<source>Encryption support [FORCED]</source>
|
||||
<translation>Suporte a encriptação [FORÇADO]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1080"/>
|
||||
<location filename="../GUI.cpp" line="1092"/>
|
||||
<source>Encryption support [OFF]</source>
|
||||
<translation>Suporte a encriptação [Desligado]</translation>
|
||||
</message>
|
||||
|
@ -2056,13 +2066,13 @@ Deseja mesmo sair do qBittorrent?</translation>
|
|||
<translation type="obsolete">Taxa</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="383"/>
|
||||
<location filename="../GUI.cpp" line="395"/>
|
||||
<source>Alt+1</source>
|
||||
<comment>shortcut to switch to first tab</comment>
|
||||
<translation>Alt+1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="385"/>
|
||||
<location filename="../GUI.cpp" line="397"/>
|
||||
<source>Alt+2</source>
|
||||
<comment>shortcut to switch to second tab</comment>
|
||||
<translation>Alt+2</translation>
|
||||
|
@ -2074,18 +2084,18 @@ Deseja mesmo sair do qBittorrent?</translation>
|
|||
<translation type="obsolete">Alt+3, Ctrl+F</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="391"/>
|
||||
<location filename="../GUI.cpp" line="403"/>
|
||||
<source>Alt+4</source>
|
||||
<comment>shortcut to switch to fourth tab</comment>
|
||||
<translation>Alt+4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="459"/>
|
||||
<location filename="../GUI.cpp" line="471"/>
|
||||
<source>Url download error</source>
|
||||
<translation>Erro no download da URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="459"/>
|
||||
<location filename="../GUI.cpp" line="471"/>
|
||||
<source>Couldn't download file at url: %1, reason: %2.</source>
|
||||
<translation>Não pude baixar arquivo em: %1, motivo: %2.</translation>
|
||||
</message>
|
||||
|
@ -2095,17 +2105,17 @@ Deseja mesmo sair do qBittorrent?</translation>
|
|||
<translation type="obsolete">Resumo rápido rejeitado para o torrent %1, tente novamente...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="758"/>
|
||||
<location filename="../GUI.cpp" line="770"/>
|
||||
<source>Are you sure you want to delete the selected item(s) from download list and from hard drive?</source>
|
||||
<translation>Quer mesmo deletar o(s) arquivo(s) selecionado(s) da lista e do seu HD ?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="765"/>
|
||||
<location filename="../GUI.cpp" line="777"/>
|
||||
<source>Are you sure you want to delete the selected item(s) from finished list and from hard drive?</source>
|
||||
<translation>Quer mesmo deletar o(s) arquivo(s) selecionado(s) da lista finalizada e do seu HD ?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="779"/>
|
||||
<location filename="../GUI.cpp" line="791"/>
|
||||
<source>'%1' was removed permanently.</source>
|
||||
<comment>'xxx.avi' was removed permanently.</comment>
|
||||
<translation>'%1' foi removido permanentemente.</translation>
|
||||
|
@ -2116,71 +2126,71 @@ Deseja mesmo sair do qBittorrent?</translation>
|
|||
<translation type="obsolete">Url falhou para: %1, mensagem: %2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="387"/>
|
||||
<location filename="../GUI.cpp" line="399"/>
|
||||
<source>Alt+3</source>
|
||||
<comment>shortcut to switch to third tab</comment>
|
||||
<translation>Alt+3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="389"/>
|
||||
<location filename="../GUI.cpp" line="401"/>
|
||||
<source>Ctrl+F</source>
|
||||
<comment>shortcut to switch to search tab</comment>
|
||||
<translation>Ctrl+F</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="960"/>
|
||||
<location filename="../GUI.cpp" line="972"/>
|
||||
<source>UPnP support [OFF]</source>
|
||||
<translation>Suporte UPnP [desligado]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="965"/>
|
||||
<location filename="../GUI.cpp" line="977"/>
|
||||
<source>NAT-PMP support [ON]</source>
|
||||
<translation>Suporte NAT-PMP [ligado]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="968"/>
|
||||
<location filename="../GUI.cpp" line="980"/>
|
||||
<source>NAT-PMP support [OFF]</source>
|
||||
<translation>Suporte NAT-PMP [desligado]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1055"/>
|
||||
<location filename="../GUI.cpp" line="1067"/>
|
||||
<source>Local Peer Discovery [ON]</source>
|
||||
<translation>Peer discovery [ligado]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1058"/>
|
||||
<location filename="../GUI.cpp" line="1070"/>
|
||||
<source>Local Peer Discovery support [OFF]</source>
|
||||
<translation>Peer discovery [desligado]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="785"/>
|
||||
<location filename="../GUI.cpp" line="797"/>
|
||||
<source>'%1' was removed because its ratio reached the maximum value you set.</source>
|
||||
<comment>%1 is a file name</comment>
|
||||
<translation>'%1' foi removido sua taxa atingiu o valor máximo que você configurou.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1321"/>
|
||||
<location filename="../GUI.cpp" line="1339"/>
|
||||
<source>qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)</source>
|
||||
<comment>%1 is qBittorrent version</comment>
|
||||
<translation>qBittorrent %1 (Down: %2Kb/s, Up: %3kb/s)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1306"/>
|
||||
<location filename="../GUI.cpp" line="1324"/>
|
||||
<source>DL: %1 KiB/s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1307"/>
|
||||
<location filename="../GUI.cpp" line="1325"/>
|
||||
<source>UP: %1 KiB/s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="291"/>
|
||||
<location filename="../GUI.cpp" line="303"/>
|
||||
<source>Ratio: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="293"/>
|
||||
<location filename="../GUI.cpp" line="305"/>
|
||||
<source>DHT: %1 nodes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -3941,9 +3951,9 @@ Portanto os plugins foram desabilitados.</translation>
|
|||
<translation type="obsolete">h</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../misc.h" line="322"/>
|
||||
<location filename="../misc.h" line="303"/>
|
||||
<source>Unknown</source>
|
||||
<translation>Desconhecido</translation>
|
||||
<translation type="obsolete">Desconhecido</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="" line="0"/>
|
||||
|
@ -4102,12 +4112,12 @@ Portanto os plugins foram desabilitados.</translation>
|
|||
<translation type="obsolete">Este IP é inválido.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="774"/>
|
||||
<location filename="../options_imp.cpp" line="787"/>
|
||||
<source>Options were saved successfully.</source>
|
||||
<translation>Opções salvas com sucesso.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1052"/>
|
||||
<location filename="../options_imp.cpp" line="1075"/>
|
||||
<source>Choose scan directory</source>
|
||||
<translation>Selecione diretório para varredura</translation>
|
||||
</message>
|
||||
|
@ -4117,7 +4127,7 @@ Portanto os plugins foram desabilitados.</translation>
|
|||
<translation type="obsolete">Selecione um arquivo ipfilter.dat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1067"/>
|
||||
<location filename="../options_imp.cpp" line="1090"/>
|
||||
<source>Choose a save directory</source>
|
||||
<translation>Selecione um diretório de salvamento</translation>
|
||||
</message>
|
||||
|
@ -4133,12 +4143,12 @@ Portanto os plugins foram desabilitados.</translation>
|
|||
<translation type="obsolete">Não posso abrir %1 no modo de leitura.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1059"/>
|
||||
<location filename="../options_imp.cpp" line="1082"/>
|
||||
<source>Choose an ip filter file</source>
|
||||
<translation>Escolha um arquivo de filtro de ip</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1059"/>
|
||||
<location filename="../options_imp.cpp" line="1082"/>
|
||||
<source>Filters</source>
|
||||
<translation>Filtros</translation>
|
||||
</message>
|
||||
|
|
Binary file not shown.
|
@ -229,7 +229,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">0.0.0.0</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1800"/>
|
||||
<location filename="../options.ui" line="1819"/>
|
||||
<source>Port:</source>
|
||||
<translation>Portul:</translation>
|
||||
</message>
|
||||
|
@ -239,7 +239,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">Serverul Proxy cere autentificare</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1839"/>
|
||||
<location filename="../options.ui" line="1858"/>
|
||||
<source>Authentication</source>
|
||||
<translation>Autentificare</translation>
|
||||
</message>
|
||||
|
@ -249,7 +249,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">Numele utilizatorului:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1860"/>
|
||||
<location filename="../options.ui" line="1879"/>
|
||||
<source>Password:</source>
|
||||
<translation>Parola:</translation>
|
||||
</message>
|
||||
|
@ -833,7 +833,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation>Proxy:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1850"/>
|
||||
<location filename="../options.ui" line="1869"/>
|
||||
<source>Username:</source>
|
||||
<translation>Numele de utilizator:</translation>
|
||||
</message>
|
||||
|
@ -918,17 +918,17 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation>RSS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1660"/>
|
||||
<location filename="../options.ui" line="1676"/>
|
||||
<source>RSS feeds refresh interval:</source>
|
||||
<translation>Intervalul de reînnoire al listei RSS:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1680"/>
|
||||
<location filename="../options.ui" line="1696"/>
|
||||
<source>minutes</source>
|
||||
<translation>minute</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1704"/>
|
||||
<location filename="../options.ui" line="1720"/>
|
||||
<source>Maximum number of articles per feed:</source>
|
||||
<translation>Numărul maxim de articole pentru flux:</translation>
|
||||
</message>
|
||||
|
@ -999,20 +999,30 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation>Spoof Azureus to avoid ban (requires restart)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1765"/>
|
||||
<location filename="../options.ui" line="1784"/>
|
||||
<source>Web UI</source>
|
||||
<translation>Web UI</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1778"/>
|
||||
<location filename="../options.ui" line="1797"/>
|
||||
<source>Enable Web User Interface</source>
|
||||
<translation>Activeaza WebUI</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1791"/>
|
||||
<location filename="../options.ui" line="1810"/>
|
||||
<source>HTTP Server</source>
|
||||
<translation>HTTP Server</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1629"/>
|
||||
<source>Enable RSS support</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1639"/>
|
||||
<source>RSS settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DownloadingTorrents</name>
|
||||
|
@ -1269,7 +1279,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<context>
|
||||
<name>GUI</name>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="716"/>
|
||||
<location filename="../GUI.cpp" line="728"/>
|
||||
<source>Open Torrent Files</source>
|
||||
<translation>Deschide Fişiere Torrent</translation>
|
||||
</message>
|
||||
|
@ -1289,17 +1299,17 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">Sunteţi siguri să ştergeţi toate fişierele din lista de download?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="826"/>
|
||||
<location filename="../GUI.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation>&Yes</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="826"/>
|
||||
<location filename="../GUI.cpp" line="838"/>
|
||||
<source>&No</source>
|
||||
<translation>&No</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="818"/>
|
||||
<location filename="../GUI.cpp" line="830"/>
|
||||
<source>Are you sure you want to delete the selected item(s) in download list?</source>
|
||||
<translation>Sunteţi siguri să ştergeţi itemii selectaţi din lista download?</translation>
|
||||
</message>
|
||||
|
@ -1314,7 +1324,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">început</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1109"/>
|
||||
<location filename="../GUI.cpp" line="1127"/>
|
||||
<source>Finished</source>
|
||||
<translation>Finişat</translation>
|
||||
</message>
|
||||
|
@ -1369,7 +1379,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">Nu pot crea directoriul:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="717"/>
|
||||
<location filename="../GUI.cpp" line="729"/>
|
||||
<source>Torrent Files</source>
|
||||
<translation>Fişiere Torrent</translation>
|
||||
</message>
|
||||
|
@ -1423,12 +1433,12 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">qBittorrent </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1341"/>
|
||||
<location filename="../GUI.cpp" line="1359"/>
|
||||
<source>qBittorrent</source>
|
||||
<translation>qBittorrent</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="824"/>
|
||||
<location filename="../GUI.cpp" line="836"/>
|
||||
<source>Are you sure? -- qBittorrent</source>
|
||||
<translation>Sunteţi siguri? -- qBittorrent</translation>
|
||||
</message>
|
||||
|
@ -1715,7 +1725,7 @@ Vă rugăm să-l opriţi.</translation>
|
|||
<translation type="obsolete">Doriti să ştergeţi item(ii) selectaţi?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="355"/>
|
||||
<location filename="../GUI.cpp" line="367"/>
|
||||
<source>Download finished</source>
|
||||
<translation>Descărcarea terminată</translation>
|
||||
</message>
|
||||
|
@ -1736,23 +1746,23 @@ Vă rugăm să-l opriţi.</translation>
|
|||
<translation type="obsolete">Eroare de intrare/eşire</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="908"/>
|
||||
<location filename="../GUI.cpp" line="920"/>
|
||||
<source>qBittorrent %1</source>
|
||||
<comment>e.g: qBittorrent v0.x</comment>
|
||||
<translation>qBittorrent %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>Connection status:</source>
|
||||
<translation>Starea conectării:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>Offline</source>
|
||||
<translation>Deconectat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>No peers found...</source>
|
||||
<translation>Nici un peer nu a fost găsit...</translation>
|
||||
</message>
|
||||
|
@ -1799,13 +1809,13 @@ Vă rugăm să-l opriţi.</translation>
|
|||
<translation type="obsolete">Seederi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1344"/>
|
||||
<location filename="../GUI.cpp" line="1362"/>
|
||||
<source>DL speed: %1 KiB/s</source>
|
||||
<comment>e.g: Download speed: 10 KiB/s</comment>
|
||||
<translation>Viteza DL: %1 KiB/s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1347"/>
|
||||
<location filename="../GUI.cpp" line="1365"/>
|
||||
<source>UP speed: %1 KiB/s</source>
|
||||
<comment>e.g: Upload speed: 10 KiB/s</comment>
|
||||
<translation>Viteza IP: %1 KiB/s</translation>
|
||||
|
@ -1829,12 +1839,12 @@ Vă rugăm să-l opriţi.</translation>
|
|||
<translation type="obsolete">Oprit</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="611"/>
|
||||
<location filename="../GUI.cpp" line="623"/>
|
||||
<source>Are you sure you want to quit?</source>
|
||||
<translation>Doriti să ieşiţi ?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="839"/>
|
||||
<location filename="../GUI.cpp" line="851"/>
|
||||
<source>'%1' was removed.</source>
|
||||
<comment>'xxx.avi' was removed.</comment>
|
||||
<translation>'%1' a fost şters.</translation>
|
||||
|
@ -1846,12 +1856,12 @@ Vă rugăm să-l opriţi.</translation>
|
|||
<translation type="obsolete">Nimic</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1195"/>
|
||||
<location filename="../GUI.cpp" line="1213"/>
|
||||
<source>All downloads were paused.</source>
|
||||
<translation>Toate descărcările au fost pauzate.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1221"/>
|
||||
<location filename="../GUI.cpp" line="1239"/>
|
||||
<source>'%1' paused.</source>
|
||||
<comment>xxx.avi paused.</comment>
|
||||
<translation>'%1' pauzat.</translation>
|
||||
|
@ -1863,52 +1873,52 @@ Vă rugăm să-l opriţi.</translation>
|
|||
<translation type="obsolete">Conectare...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1254"/>
|
||||
<location filename="../GUI.cpp" line="1272"/>
|
||||
<source>All downloads were resumed.</source>
|
||||
<translation>Toate descărcările au fost reluate.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1280"/>
|
||||
<location filename="../GUI.cpp" line="1298"/>
|
||||
<source>'%1' resumed.</source>
|
||||
<comment>e.g: xxx.avi resumed.</comment>
|
||||
<translation>'%1' reluat.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="355"/>
|
||||
<location filename="../GUI.cpp" line="367"/>
|
||||
<source>%1 has finished downloading.</source>
|
||||
<comment>e.g: xxx.avi has finished downloading.</comment>
|
||||
<translation>%1 a fost terminat de descărcat.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="364"/>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<source>I/O Error</source>
|
||||
<comment>i.e: Input/Output Error</comment>
|
||||
<translation>Eroare de intrare/eşire</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="364"/>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<source>An error occured when trying to read or write %1. The disk is probably full, download has been paused</source>
|
||||
<comment>e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused</comment>
|
||||
<translation>O eroare a fost detectată la citire sau scriere în %1. Discul probabil este plin, descărcarea a fost pauzată</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>Connection Status:</source>
|
||||
<translation>Starea conectării:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1355"/>
|
||||
<location filename="../GUI.cpp" line="1373"/>
|
||||
<source>Online</source>
|
||||
<translation>Conectat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>Firewalled?</source>
|
||||
<comment>i.e: Behind a firewall/router?</comment>
|
||||
<translation>Firewalled?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>No incoming connections...</source>
|
||||
<translation>Nu sunt conectări din exterior...</translation>
|
||||
</message>
|
||||
|
@ -1919,194 +1929,194 @@ Vă rugăm să-l opriţi.</translation>
|
|||
<translation type="obsolete">Rezultate</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<location filename="../GUI.cpp" line="388"/>
|
||||
<source>An error occured (full disk?), '%1' paused.</source>
|
||||
<comment>e.g: An error occured (full disk?), 'xxx.avi' paused.</comment>
|
||||
<translation>Eroare a fost detectată(discul plin?), '%1' pauzad.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="165"/>
|
||||
<location filename="../GUI.cpp" line="153"/>
|
||||
<source>Search</source>
|
||||
<translation>Caută</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="169"/>
|
||||
<location filename="../GUI.cpp" line="279"/>
|
||||
<source>RSS</source>
|
||||
<translation>RSS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="935"/>
|
||||
<location filename="../GUI.cpp" line="947"/>
|
||||
<source>qBittorrent is bind to port: %1</source>
|
||||
<comment>e.g: qBittorrent is bind to port: 1666</comment>
|
||||
<translation>qBittorrent foloseşte portul: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1036"/>
|
||||
<location filename="../GUI.cpp" line="1048"/>
|
||||
<source>DHT support [ON], port: %1</source>
|
||||
<translation>Suport DHT[Activat], port: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1042"/>
|
||||
<location filename="../GUI.cpp" line="1054"/>
|
||||
<source>DHT support [OFF]</source>
|
||||
<translation>Suport DHT[Dezactivat]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1046"/>
|
||||
<location filename="../GUI.cpp" line="1058"/>
|
||||
<source>PeX support [ON]</source>
|
||||
<translation>Suport PeX[Activat]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1050"/>
|
||||
<location filename="../GUI.cpp" line="1062"/>
|
||||
<source>PeX support [OFF]</source>
|
||||
<translation>Suport PeX[Dezactivat]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="612"/>
|
||||
<location filename="../GUI.cpp" line="624"/>
|
||||
<source>The download list is not empty.
|
||||
Are you sure you want to quit qBittorrent?</source>
|
||||
<translation>Lista de descărcare nu este vidă.
|
||||
Doriţi să ieşiţi din qBittorrent?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1104"/>
|
||||
<location filename="../GUI.cpp" line="1122"/>
|
||||
<source>Downloads</source>
|
||||
<translation>Descărcări</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="825"/>
|
||||
<location filename="../GUI.cpp" line="837"/>
|
||||
<source>Are you sure you want to delete the selected item(s) in finished list?</source>
|
||||
<translation>Doriţi să ştergeţi itemii selectaţi ?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="957"/>
|
||||
<location filename="../GUI.cpp" line="969"/>
|
||||
<source>UPnP support [ON]</source>
|
||||
<translation>Suport UPnP[Activat]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1070"/>
|
||||
<location filename="../GUI.cpp" line="1082"/>
|
||||
<source>Encryption support [ON]</source>
|
||||
<translation>Suport de codificate[Activat]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1075"/>
|
||||
<location filename="../GUI.cpp" line="1087"/>
|
||||
<source>Encryption support [FORCED]</source>
|
||||
<translation>Suport de codificare[Forţat]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1080"/>
|
||||
<location filename="../GUI.cpp" line="1092"/>
|
||||
<source>Encryption support [OFF]</source>
|
||||
<translation>Suport de codificare [Dezactivat]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="383"/>
|
||||
<location filename="../GUI.cpp" line="395"/>
|
||||
<source>Alt+1</source>
|
||||
<comment>shortcut to switch to first tab</comment>
|
||||
<translation>Alt+1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="385"/>
|
||||
<location filename="../GUI.cpp" line="397"/>
|
||||
<source>Alt+2</source>
|
||||
<comment>shortcut to switch to second tab</comment>
|
||||
<translation>Alt+2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="391"/>
|
||||
<location filename="../GUI.cpp" line="403"/>
|
||||
<source>Alt+4</source>
|
||||
<comment>shortcut to switch to fourth tab</comment>
|
||||
<translation>Alt+4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="459"/>
|
||||
<location filename="../GUI.cpp" line="471"/>
|
||||
<source>Url download error</source>
|
||||
<translation>Eroare la descărcare URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="459"/>
|
||||
<location filename="../GUI.cpp" line="471"/>
|
||||
<source>Couldn't download file at url: %1, reason: %2.</source>
|
||||
<translation>Nu pot descărca fisierul de pe url: %1, motivul: %2.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="758"/>
|
||||
<location filename="../GUI.cpp" line="770"/>
|
||||
<source>Are you sure you want to delete the selected item(s) from download list and from hard drive?</source>
|
||||
<translation>Doriţi să ştergeţi itemii selectaţi din listă si de pe hard disk ?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="765"/>
|
||||
<location filename="../GUI.cpp" line="777"/>
|
||||
<source>Are you sure you want to delete the selected item(s) from finished list and from hard drive?</source>
|
||||
<translation>Doriţi să ştergeţi itemii selectaţi din listă si de pe hard disk ?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="779"/>
|
||||
<location filename="../GUI.cpp" line="791"/>
|
||||
<source>'%1' was removed permanently.</source>
|
||||
<comment>'xxx.avi' was removed permanently.</comment>
|
||||
<translation>'%1' a fost şters pentru totdeauna.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="387"/>
|
||||
<location filename="../GUI.cpp" line="399"/>
|
||||
<source>Alt+3</source>
|
||||
<comment>shortcut to switch to third tab</comment>
|
||||
<translation>Alt+3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="389"/>
|
||||
<location filename="../GUI.cpp" line="401"/>
|
||||
<source>Ctrl+F</source>
|
||||
<comment>shortcut to switch to search tab</comment>
|
||||
<translation>Ctrl+F</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="960"/>
|
||||
<location filename="../GUI.cpp" line="972"/>
|
||||
<source>UPnP support [OFF]</source>
|
||||
<translation>suport de UPnP[Dezactivat]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="965"/>
|
||||
<location filename="../GUI.cpp" line="977"/>
|
||||
<source>NAT-PMP support [ON]</source>
|
||||
<translation>suport NAT-PMP[Activat]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="968"/>
|
||||
<location filename="../GUI.cpp" line="980"/>
|
||||
<source>NAT-PMP support [OFF]</source>
|
||||
<translation>suport NAT-PMP[Dezactivat]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1055"/>
|
||||
<location filename="../GUI.cpp" line="1067"/>
|
||||
<source>Local Peer Discovery [ON]</source>
|
||||
<translation>Căutare peer locali[Activat]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1058"/>
|
||||
<location filename="../GUI.cpp" line="1070"/>
|
||||
<source>Local Peer Discovery support [OFF]</source>
|
||||
<translation>Căutarea peer locali[Dezactivat]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="785"/>
|
||||
<location filename="../GUI.cpp" line="797"/>
|
||||
<source>'%1' was removed because its ratio reached the maximum value you set.</source>
|
||||
<comment>%1 is a file name</comment>
|
||||
<translation>'%1' a fost şters deoarece ratio lui a ajuns la valoarea maximă setată de dvs.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1321"/>
|
||||
<location filename="../GUI.cpp" line="1339"/>
|
||||
<source>qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)</source>
|
||||
<comment>%1 is qBittorrent version</comment>
|
||||
<translation>qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1306"/>
|
||||
<location filename="../GUI.cpp" line="1324"/>
|
||||
<source>DL: %1 KiB/s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1307"/>
|
||||
<location filename="../GUI.cpp" line="1325"/>
|
||||
<source>UP: %1 KiB/s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="291"/>
|
||||
<location filename="../GUI.cpp" line="303"/>
|
||||
<source>Ratio: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="293"/>
|
||||
<location filename="../GUI.cpp" line="305"/>
|
||||
<source>DHT: %1 nodes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -3734,9 +3744,9 @@ Numai acele adăugate de dvs. pot fi dezinstalate.
|
|||
<translation type="obsolete">h</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../misc.h" line="322"/>
|
||||
<location filename="../misc.h" line="303"/>
|
||||
<source>Unknown</source>
|
||||
<translation>Necunoscut</translation>
|
||||
<translation type="obsolete">Necunoscut</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="" line="0"/>
|
||||
|
@ -3895,12 +3905,12 @@ Numai acele adăugate de dvs. pot fi dezinstalate.
|
|||
<translation type="obsolete">Acest IP este valid.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="774"/>
|
||||
<location filename="../options_imp.cpp" line="787"/>
|
||||
<source>Options were saved successfully.</source>
|
||||
<translation>Opţiunile salvate cu success.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1052"/>
|
||||
<location filename="../options_imp.cpp" line="1075"/>
|
||||
<source>Choose scan directory</source>
|
||||
<translation>Selectează directoriul de scanare</translation>
|
||||
</message>
|
||||
|
@ -3910,7 +3920,7 @@ Numai acele adăugate de dvs. pot fi dezinstalate.
|
|||
<translation type="obsolete">Selectează fişierul ipfilter.dat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1067"/>
|
||||
<location filename="../options_imp.cpp" line="1090"/>
|
||||
<source>Choose a save directory</source>
|
||||
<translation>Selectează directoriul de salvare</translation>
|
||||
</message>
|
||||
|
@ -3926,12 +3936,12 @@ Numai acele adăugate de dvs. pot fi dezinstalate.
|
|||
<translation type="obsolete">Nu pot deschide %1 în mod de citire.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1059"/>
|
||||
<location filename="../options_imp.cpp" line="1082"/>
|
||||
<source>Choose an ip filter file</source>
|
||||
<translation>Alageţi un fişier ip filtru</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1059"/>
|
||||
<location filename="../options_imp.cpp" line="1082"/>
|
||||
<source>Filters</source>
|
||||
<translation>Filtre</translation>
|
||||
</message>
|
||||
|
|
Binary file not shown.
|
@ -276,7 +276,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">0.0.0.0</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1800"/>
|
||||
<location filename="../options.ui" line="1819"/>
|
||||
<source>Port:</source>
|
||||
<translation>Порт:</translation>
|
||||
</message>
|
||||
|
@ -286,7 +286,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">Прокси-сервер требует аутентификации</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1839"/>
|
||||
<location filename="../options.ui" line="1858"/>
|
||||
<source>Authentication</source>
|
||||
<translation>Аутентификация</translation>
|
||||
</message>
|
||||
|
@ -296,7 +296,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">Имя пользователя:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1860"/>
|
||||
<location filename="../options.ui" line="1879"/>
|
||||
<source>Password:</source>
|
||||
<translation>Пароль:</translation>
|
||||
</message>
|
||||
|
@ -890,7 +890,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation>Прокси:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1850"/>
|
||||
<location filename="../options.ui" line="1869"/>
|
||||
<source>Username:</source>
|
||||
<translation>Имя пользователя:</translation>
|
||||
</message>
|
||||
|
@ -975,17 +975,17 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation>RSS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1660"/>
|
||||
<location filename="../options.ui" line="1676"/>
|
||||
<source>RSS feeds refresh interval:</source>
|
||||
<translation>Интервал обновления RSS ячеек:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1680"/>
|
||||
<location filename="../options.ui" line="1696"/>
|
||||
<source>minutes</source>
|
||||
<translation>минут</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1704"/>
|
||||
<location filename="../options.ui" line="1720"/>
|
||||
<source>Maximum number of articles per feed:</source>
|
||||
<translation>Максимальное число статей на ячейку:</translation>
|
||||
</message>
|
||||
|
@ -1056,20 +1056,30 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1765"/>
|
||||
<location filename="../options.ui" line="1784"/>
|
||||
<source>Web UI</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1778"/>
|
||||
<location filename="../options.ui" line="1797"/>
|
||||
<source>Enable Web User Interface</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1791"/>
|
||||
<location filename="../options.ui" line="1810"/>
|
||||
<source>HTTP Server</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1629"/>
|
||||
<source>Enable RSS support</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1639"/>
|
||||
<source>RSS settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DownloadingTorrents</name>
|
||||
|
@ -1335,7 +1345,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete"> начат.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1341"/>
|
||||
<location filename="../GUI.cpp" line="1359"/>
|
||||
<source>qBittorrent</source>
|
||||
<translation>qBittorrent</translation>
|
||||
</message>
|
||||
|
@ -1355,12 +1365,12 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete"> Скорость Загр.:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="716"/>
|
||||
<location filename="../GUI.cpp" line="728"/>
|
||||
<source>Open Torrent Files</source>
|
||||
<translation>Открыть файлы Torrent</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="717"/>
|
||||
<location filename="../GUI.cpp" line="729"/>
|
||||
<source>Torrent Files</source>
|
||||
<translation>Файлы Torrent</translation>
|
||||
</message>
|
||||
|
@ -1406,7 +1416,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">Этот файл либо поврежден, либо не torrent типа.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="824"/>
|
||||
<location filename="../GUI.cpp" line="836"/>
|
||||
<source>Are you sure? -- qBittorrent</source>
|
||||
<translation>Вы уверены? -- qBittorrent</translation>
|
||||
</message>
|
||||
|
@ -1416,12 +1426,12 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">Вы уверены что хотите удалить все файлы из списка закачек?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="826"/>
|
||||
<location filename="../GUI.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation>&Да</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="826"/>
|
||||
<location filename="../GUI.cpp" line="838"/>
|
||||
<source>&No</source>
|
||||
<translation>&Нет</translation>
|
||||
</message>
|
||||
|
@ -1431,7 +1441,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">Список закачек очищен.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="818"/>
|
||||
<location filename="../GUI.cpp" line="830"/>
|
||||
<source>Are you sure you want to delete the selected item(s) in download list?</source>
|
||||
<translation>Вы уверены что хотите удалить выделенные пункты из списка закачек?</translation>
|
||||
</message>
|
||||
|
@ -1515,7 +1525,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">/с</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1109"/>
|
||||
<location filename="../GUI.cpp" line="1127"/>
|
||||
<source>Finished</source>
|
||||
<translation>Закончено</translation>
|
||||
</message>
|
||||
|
@ -1810,7 +1820,7 @@ Please close the other one first.</source>
|
|||
<translation type="obsolete">Вы действительно хотите удалить выбранный(-е) элемент(ы) из списка скачек и с жесткого диска?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="355"/>
|
||||
<location filename="../GUI.cpp" line="367"/>
|
||||
<source>Download finished</source>
|
||||
<translation>Скачивание завершено</translation>
|
||||
</message>
|
||||
|
@ -1826,23 +1836,23 @@ Please close the other one first.</source>
|
|||
<translation type="obsolete">Поисковый движок</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="908"/>
|
||||
<location filename="../GUI.cpp" line="920"/>
|
||||
<source>qBittorrent %1</source>
|
||||
<comment>e.g: qBittorrent v0.x</comment>
|
||||
<translation>qBittorrent %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>Connection status:</source>
|
||||
<translation>Состояние связи:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>Offline</source>
|
||||
<translation>Не в сети</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>No peers found...</source>
|
||||
<translation>Не найдено пиров...</translation>
|
||||
</message>
|
||||
|
@ -1907,13 +1917,13 @@ Please close the other one first.</source>
|
|||
<translation type="obsolete">qBittorrent %1 запущен.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1344"/>
|
||||
<location filename="../GUI.cpp" line="1362"/>
|
||||
<source>DL speed: %1 KiB/s</source>
|
||||
<comment>e.g: Download speed: 10 KiB/s</comment>
|
||||
<translation>Скорость скач.: %1 KiB/с</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1347"/>
|
||||
<location filename="../GUI.cpp" line="1365"/>
|
||||
<source>UP speed: %1 KiB/s</source>
|
||||
<comment>e.g: Upload speed: 10 KiB/s</comment>
|
||||
<translation>Скорость загр.: %1 KiB/с</translation>
|
||||
|
@ -1937,12 +1947,12 @@ Please close the other one first.</source>
|
|||
<translation type="obsolete">Простаивает</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="611"/>
|
||||
<location filename="../GUI.cpp" line="623"/>
|
||||
<source>Are you sure you want to quit?</source>
|
||||
<translation>Вы действительно хотите выйти?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="839"/>
|
||||
<location filename="../GUI.cpp" line="851"/>
|
||||
<source>'%1' was removed.</source>
|
||||
<comment>'xxx.avi' was removed.</comment>
|
||||
<translation>'%1' был удален.</translation>
|
||||
|
@ -1984,12 +1994,12 @@ Please close the other one first.</source>
|
|||
<translation type="obsolete">Прослушивание порта: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1195"/>
|
||||
<location filename="../GUI.cpp" line="1213"/>
|
||||
<source>All downloads were paused.</source>
|
||||
<translation>Все закачки были приостановлены.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1221"/>
|
||||
<location filename="../GUI.cpp" line="1239"/>
|
||||
<source>'%1' paused.</source>
|
||||
<comment>xxx.avi paused.</comment>
|
||||
<translation>'%1' приостановлен.</translation>
|
||||
|
@ -2001,30 +2011,30 @@ Please close the other one first.</source>
|
|||
<translation type="obsolete">Подключение...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1254"/>
|
||||
<location filename="../GUI.cpp" line="1272"/>
|
||||
<source>All downloads were resumed.</source>
|
||||
<translation>Все закачки были запущены.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1280"/>
|
||||
<location filename="../GUI.cpp" line="1298"/>
|
||||
<source>'%1' resumed.</source>
|
||||
<comment>e.g: xxx.avi resumed.</comment>
|
||||
<translation>'%1' запущена.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="355"/>
|
||||
<location filename="../GUI.cpp" line="367"/>
|
||||
<source>%1 has finished downloading.</source>
|
||||
<comment>e.g: xxx.avi has finished downloading.</comment>
|
||||
<translation>скачивание %1 завершено.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="364"/>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<source>I/O Error</source>
|
||||
<comment>i.e: Input/Output Error</comment>
|
||||
<translation>Ошибка ввода/вывода</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="364"/>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<source>An error occured when trying to read or write %1. The disk is probably full, download has been paused</source>
|
||||
<comment>e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused</comment>
|
||||
<translation>При попытке чтения/записи %1 произошла ошибка. Возможно, на диске не хватает места, закачка приостановлена</translation>
|
||||
|
@ -2036,23 +2046,23 @@ Please close the other one first.</source>
|
|||
<translation type="obsolete">Произошла ошибка (нет места?), '%1' остановлен.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>Connection Status:</source>
|
||||
<translation>Состояние связи:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1355"/>
|
||||
<location filename="../GUI.cpp" line="1373"/>
|
||||
<source>Online</source>
|
||||
<translation>В сети</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>Firewalled?</source>
|
||||
<comment>i.e: Behind a firewall/router?</comment>
|
||||
<translation>Файерволл?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>No incoming connections...</source>
|
||||
<translation>Нет входящих соединений...</translation>
|
||||
</message>
|
||||
|
@ -2084,66 +2094,66 @@ Please close the other one first.</source>
|
|||
<translation type="obsolete">Скачивание '%1', подождите...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<location filename="../GUI.cpp" line="388"/>
|
||||
<source>An error occured (full disk?), '%1' paused.</source>
|
||||
<comment>e.g: An error occured (full disk?), 'xxx.avi' paused.</comment>
|
||||
<translation>Произошла ошибка (нет места?), '%1' остановлен.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="165"/>
|
||||
<location filename="../GUI.cpp" line="153"/>
|
||||
<source>Search</source>
|
||||
<translation>Поиск</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="169"/>
|
||||
<location filename="../GUI.cpp" line="279"/>
|
||||
<source>RSS</source>
|
||||
<translation>RSS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="935"/>
|
||||
<location filename="../GUI.cpp" line="947"/>
|
||||
<source>qBittorrent is bind to port: %1</source>
|
||||
<comment>e.g: qBittorrent is bind to port: 1666</comment>
|
||||
<translation>qBittorrent прикреплен на порт: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1036"/>
|
||||
<location filename="../GUI.cpp" line="1048"/>
|
||||
<source>DHT support [ON], port: %1</source>
|
||||
<translation>Поддержка DHT [Вкл], порт: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1042"/>
|
||||
<location filename="../GUI.cpp" line="1054"/>
|
||||
<source>DHT support [OFF]</source>
|
||||
<translation>Поддержка DHT [Выкл]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1046"/>
|
||||
<location filename="../GUI.cpp" line="1058"/>
|
||||
<source>PeX support [ON]</source>
|
||||
<translation>Поддержка PeX [Вкл]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1050"/>
|
||||
<location filename="../GUI.cpp" line="1062"/>
|
||||
<source>PeX support [OFF]</source>
|
||||
<translation>Поддержка PeX [Выкл]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="612"/>
|
||||
<location filename="../GUI.cpp" line="624"/>
|
||||
<source>The download list is not empty.
|
||||
Are you sure you want to quit qBittorrent?</source>
|
||||
<translation>Список закачек не пуст.
|
||||
Вы хотите выйти из qBittorrent?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1104"/>
|
||||
<location filename="../GUI.cpp" line="1122"/>
|
||||
<source>Downloads</source>
|
||||
<translation>Закачки</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="825"/>
|
||||
<location filename="../GUI.cpp" line="837"/>
|
||||
<source>Are you sure you want to delete the selected item(s) in finished list?</source>
|
||||
<translation>Вы уверены что хотите удалить выделенные пункты из списка завершенных?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="957"/>
|
||||
<location filename="../GUI.cpp" line="969"/>
|
||||
<source>UPnP support [ON]</source>
|
||||
<translation>Поддержка UPnP [Вкл]</translation>
|
||||
</message>
|
||||
|
@ -2153,17 +2163,17 @@ Are you sure you want to quit qBittorrent?</source>
|
|||
<translation type="obsolete">Осторожнее, раздача материалов защищенных авторскими правами, преследуется по закону.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1070"/>
|
||||
<location filename="../GUI.cpp" line="1082"/>
|
||||
<source>Encryption support [ON]</source>
|
||||
<translation>Поддержка шифрования [Вкл]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1075"/>
|
||||
<location filename="../GUI.cpp" line="1087"/>
|
||||
<source>Encryption support [FORCED]</source>
|
||||
<translation>Поддержка шифрования [Принудительно]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1080"/>
|
||||
<location filename="../GUI.cpp" line="1092"/>
|
||||
<source>Encryption support [OFF]</source>
|
||||
<translation>Поддержка шифрования [Выкл]</translation>
|
||||
</message>
|
||||
|
@ -2179,13 +2189,13 @@ Are you sure you want to quit qBittorrent?</source>
|
|||
<translation type="obsolete">Соотношение</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="383"/>
|
||||
<location filename="../GUI.cpp" line="395"/>
|
||||
<source>Alt+1</source>
|
||||
<comment>shortcut to switch to first tab</comment>
|
||||
<translation>Alt+1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="385"/>
|
||||
<location filename="../GUI.cpp" line="397"/>
|
||||
<source>Alt+2</source>
|
||||
<comment>shortcut to switch to second tab</comment>
|
||||
<translation>Alt+2</translation>
|
||||
|
@ -2197,18 +2207,18 @@ Are you sure you want to quit qBittorrent?</source>
|
|||
<translation type="obsolete">Alt+3, Ctrl+F</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="391"/>
|
||||
<location filename="../GUI.cpp" line="403"/>
|
||||
<source>Alt+4</source>
|
||||
<comment>shortcut to switch to fourth tab</comment>
|
||||
<translation>Alt+4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="459"/>
|
||||
<location filename="../GUI.cpp" line="471"/>
|
||||
<source>Url download error</source>
|
||||
<translation>Ошибка URL скачивания</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="459"/>
|
||||
<location filename="../GUI.cpp" line="471"/>
|
||||
<source>Couldn't download file at url: %1, reason: %2.</source>
|
||||
<translation>Невозможно скачать файл по URL: %1, причина: %2.</translation>
|
||||
</message>
|
||||
|
@ -2218,17 +2228,17 @@ Are you sure you want to quit qBittorrent?</source>
|
|||
<translation type="obsolete">Быстрое восстановление данных для торрента %1 было невозможно, проверка заново...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="758"/>
|
||||
<location filename="../GUI.cpp" line="770"/>
|
||||
<source>Are you sure you want to delete the selected item(s) from download list and from hard drive?</source>
|
||||
<translation>Вы действительно хотите удалить выбранный(-е) элемент(ы) из списка скачек и с жесткого диска?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="765"/>
|
||||
<location filename="../GUI.cpp" line="777"/>
|
||||
<source>Are you sure you want to delete the selected item(s) from finished list and from hard drive?</source>
|
||||
<translation>Вы действительно хотите удалить выбранный(-е) элемент(ы) из списка законченных скачек и с жесткого диска?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="779"/>
|
||||
<location filename="../GUI.cpp" line="791"/>
|
||||
<source>'%1' was removed permanently.</source>
|
||||
<comment>'xxx.avi' was removed permanently.</comment>
|
||||
<translation>'%1' был удален.</translation>
|
||||
|
@ -2239,71 +2249,71 @@ Are you sure you want to quit qBittorrent?</source>
|
|||
<translation type="obsolete">Поиск раздающего Url не удался: %1, сообщение: %2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="387"/>
|
||||
<location filename="../GUI.cpp" line="399"/>
|
||||
<source>Alt+3</source>
|
||||
<comment>shortcut to switch to third tab</comment>
|
||||
<translation>Alt+3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="389"/>
|
||||
<location filename="../GUI.cpp" line="401"/>
|
||||
<source>Ctrl+F</source>
|
||||
<comment>shortcut to switch to search tab</comment>
|
||||
<translation>Ctrl+F</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="960"/>
|
||||
<location filename="../GUI.cpp" line="972"/>
|
||||
<source>UPnP support [OFF]</source>
|
||||
<translation>Поддержка UPnP [Выкл]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="965"/>
|
||||
<location filename="../GUI.cpp" line="977"/>
|
||||
<source>NAT-PMP support [ON]</source>
|
||||
<translation>Поддержка NAT-PMP [Вкл]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="968"/>
|
||||
<location filename="../GUI.cpp" line="980"/>
|
||||
<source>NAT-PMP support [OFF]</source>
|
||||
<translation>Поддержка NAT-PMP [Выкл]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1055"/>
|
||||
<location filename="../GUI.cpp" line="1067"/>
|
||||
<source>Local Peer Discovery [ON]</source>
|
||||
<translation>Обнаружение локальных пиров [Вкл]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1058"/>
|
||||
<location filename="../GUI.cpp" line="1070"/>
|
||||
<source>Local Peer Discovery support [OFF]</source>
|
||||
<translation>Обнаружение локальных пиров [Выкл]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="785"/>
|
||||
<location filename="../GUI.cpp" line="797"/>
|
||||
<source>'%1' was removed because its ratio reached the maximum value you set.</source>
|
||||
<comment>%1 is a file name</comment>
|
||||
<translation>'%1' был удален, так как его соотношение достигло максимально установленного вами.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1321"/>
|
||||
<location filename="../GUI.cpp" line="1339"/>
|
||||
<source>qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)</source>
|
||||
<comment>%1 is qBittorrent version</comment>
|
||||
<translation>qBittorrent %1 (Скач: %2КиБ/с, Загр: %3КиБ/с)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1306"/>
|
||||
<location filename="../GUI.cpp" line="1324"/>
|
||||
<source>DL: %1 KiB/s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1307"/>
|
||||
<location filename="../GUI.cpp" line="1325"/>
|
||||
<source>UP: %1 KiB/s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="291"/>
|
||||
<location filename="../GUI.cpp" line="303"/>
|
||||
<source>Ratio: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="293"/>
|
||||
<location filename="../GUI.cpp" line="305"/>
|
||||
<source>DHT: %1 nodes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -3991,9 +4001,9 @@ However, those plugins were disabled.</source>
|
|||
<translation type="obsolete"> д</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../misc.h" line="322"/>
|
||||
<location filename="../misc.h" line="303"/>
|
||||
<source>Unknown</source>
|
||||
<translation>Неизвестно</translation>
|
||||
<translation type="obsolete">Неизвестно</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="" line="134768880"/>
|
||||
|
@ -4152,12 +4162,12 @@ However, those plugins were disabled.</source>
|
|||
<translation type="obsolete">Этот IP неправилен.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="774"/>
|
||||
<location filename="../options_imp.cpp" line="787"/>
|
||||
<source>Options were saved successfully.</source>
|
||||
<translation>Настройки были успешно сохранены.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1052"/>
|
||||
<location filename="../options_imp.cpp" line="1075"/>
|
||||
<source>Choose scan directory</source>
|
||||
<translation>Выберите директорию для сканирования</translation>
|
||||
</message>
|
||||
|
@ -4167,7 +4177,7 @@ However, those plugins were disabled.</source>
|
|||
<translation type="obsolete">Выберите файл ipfilter.dat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1067"/>
|
||||
<location filename="../options_imp.cpp" line="1090"/>
|
||||
<source>Choose a save directory</source>
|
||||
<translation>Выберите путь сохранения</translation>
|
||||
</message>
|
||||
|
@ -4183,12 +4193,12 @@ However, those plugins were disabled.</source>
|
|||
<translation type="obsolete">Невозможно открыть %1 в режиме чтения.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1059"/>
|
||||
<location filename="../options_imp.cpp" line="1082"/>
|
||||
<source>Choose an ip filter file</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1059"/>
|
||||
<location filename="../options_imp.cpp" line="1082"/>
|
||||
<source>Filters</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
Binary file not shown.
|
@ -226,7 +226,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">0.0.0.0</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1800"/>
|
||||
<location filename="../options.ui" line="1819"/>
|
||||
<source>Port:</source>
|
||||
<translation>Port:</translation>
|
||||
</message>
|
||||
|
@ -236,7 +236,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">Proxy server vyžaduje autentfikáciu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1839"/>
|
||||
<location filename="../options.ui" line="1858"/>
|
||||
<source>Authentication</source>
|
||||
<translation>Autentifikácia</translation>
|
||||
</message>
|
||||
|
@ -246,7 +246,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">Používateľské meno:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1860"/>
|
||||
<location filename="../options.ui" line="1879"/>
|
||||
<source>Password:</source>
|
||||
<translation>Heslo:</translation>
|
||||
</message>
|
||||
|
@ -840,7 +840,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation>Proxy:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1850"/>
|
||||
<location filename="../options.ui" line="1869"/>
|
||||
<source>Username:</source>
|
||||
<translation>Meno používateľa:</translation>
|
||||
</message>
|
||||
|
@ -925,17 +925,17 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation>RSS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1660"/>
|
||||
<location filename="../options.ui" line="1676"/>
|
||||
<source>RSS feeds refresh interval:</source>
|
||||
<translation>Interval obnovovania RSS kanálov:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1680"/>
|
||||
<location filename="../options.ui" line="1696"/>
|
||||
<source>minutes</source>
|
||||
<translation>minút</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1704"/>
|
||||
<location filename="../options.ui" line="1720"/>
|
||||
<source>Maximum number of articles per feed:</source>
|
||||
<translation>Maximálny počet článkov na kanál:</translation>
|
||||
</message>
|
||||
|
@ -1006,20 +1006,30 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation>Klamať Azureus, aby sme sa vyhli blokovaniu (vyžaduje reštart)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1765"/>
|
||||
<location filename="../options.ui" line="1784"/>
|
||||
<source>Web UI</source>
|
||||
<translation>Webové rozhranie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1778"/>
|
||||
<location filename="../options.ui" line="1797"/>
|
||||
<source>Enable Web User Interface</source>
|
||||
<translation>Zapnúť webové rozhranie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1791"/>
|
||||
<location filename="../options.ui" line="1810"/>
|
||||
<source>HTTP Server</source>
|
||||
<translation>HTTP Server</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1629"/>
|
||||
<source>Enable RSS support</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1639"/>
|
||||
<source>RSS settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DownloadingTorrents</name>
|
||||
|
@ -1253,7 +1263,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<context>
|
||||
<name>GUI</name>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="716"/>
|
||||
<location filename="../GUI.cpp" line="728"/>
|
||||
<source>Open Torrent Files</source>
|
||||
<translation>Otvoriť torrent súbory</translation>
|
||||
</message>
|
||||
|
@ -1273,17 +1283,17 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">Určite chcete zmazať všetky súbory v zozname sťahovaných?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="826"/>
|
||||
<location filename="../GUI.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation>&Áno</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="826"/>
|
||||
<location filename="../GUI.cpp" line="838"/>
|
||||
<source>&No</source>
|
||||
<translation>&Nie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="818"/>
|
||||
<location filename="../GUI.cpp" line="830"/>
|
||||
<source>Are you sure you want to delete the selected item(s) in download list?</source>
|
||||
<translation>Určite chcete zmazať vybrané položky v zozname sťahovaných?</translation>
|
||||
</message>
|
||||
|
@ -1298,7 +1308,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">spusten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1109"/>
|
||||
<location filename="../GUI.cpp" line="1127"/>
|
||||
<source>Finished</source>
|
||||
<translation>Dokončené</translation>
|
||||
</message>
|
||||
|
@ -1353,7 +1363,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">Nebolo možné vytvoriť adresár:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="717"/>
|
||||
<location filename="../GUI.cpp" line="729"/>
|
||||
<source>Torrent Files</source>
|
||||
<translation>Torrent súbory</translation>
|
||||
</message>
|
||||
|
@ -1403,12 +1413,12 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">qBittorrent </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1341"/>
|
||||
<location filename="../GUI.cpp" line="1359"/>
|
||||
<source>qBittorrent</source>
|
||||
<translation>qBittorrent</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="824"/>
|
||||
<location filename="../GUI.cpp" line="836"/>
|
||||
<source>Are you sure? -- qBittorrent</source>
|
||||
<translation>Ste si istý? -- qBittorrent</translation>
|
||||
</message>
|
||||
|
@ -1713,7 +1723,7 @@ Najskôr ho prosím zatvorte.</translation>
|
|||
<translation type="obsolete">Ste si istý, že chcete zmazať vybrané položky v zozname sťahovaných a na pevnom disku?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="355"/>
|
||||
<location filename="../GUI.cpp" line="367"/>
|
||||
<source>Download finished</source>
|
||||
<translation>Sťahovanie dokončené</translation>
|
||||
</message>
|
||||
|
@ -1734,23 +1744,23 @@ Najskôr ho prosím zatvorte.</translation>
|
|||
<translation type="obsolete">V/V Chyba</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="908"/>
|
||||
<location filename="../GUI.cpp" line="920"/>
|
||||
<source>qBittorrent %1</source>
|
||||
<comment>e.g: qBittorrent v0.x</comment>
|
||||
<translation>qBittorrent %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>Connection status:</source>
|
||||
<translation>Stav spojenia:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>Offline</source>
|
||||
<translation>Offline</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>No peers found...</source>
|
||||
<translation>Neboli nájdení rovesníci...</translation>
|
||||
</message>
|
||||
|
@ -1815,13 +1825,13 @@ Najskôr ho prosím zatvorte.</translation>
|
|||
<translation type="obsolete">qBittorrent %1 spustený.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1344"/>
|
||||
<location filename="../GUI.cpp" line="1362"/>
|
||||
<source>DL speed: %1 KiB/s</source>
|
||||
<comment>e.g: Download speed: 10 KiB/s</comment>
|
||||
<translation>Rýchlosť sťahovania: %1 KiB/s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1347"/>
|
||||
<location filename="../GUI.cpp" line="1365"/>
|
||||
<source>UP speed: %1 KiB/s</source>
|
||||
<comment>e.g: Upload speed: 10 KiB/s</comment>
|
||||
<translation>Rýchlosť nahrávania: %1 KiB/s</translation>
|
||||
|
@ -1845,12 +1855,12 @@ Najskôr ho prosím zatvorte.</translation>
|
|||
<translation type="obsolete">Bez pohybu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="611"/>
|
||||
<location filename="../GUI.cpp" line="623"/>
|
||||
<source>Are you sure you want to quit?</source>
|
||||
<translation>Ste si istý, že chcete skončiť?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="839"/>
|
||||
<location filename="../GUI.cpp" line="851"/>
|
||||
<source>'%1' was removed.</source>
|
||||
<comment>'xxx.avi' was removed.</comment>
|
||||
<translation>„%1“ bol odstránený.</translation>
|
||||
|
@ -1892,12 +1902,12 @@ Najskôr ho prosím zatvorte.</translation>
|
|||
<translation type="obsolete">Počúvam na porte: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1195"/>
|
||||
<location filename="../GUI.cpp" line="1213"/>
|
||||
<source>All downloads were paused.</source>
|
||||
<translation>Všetky sťahovania pozastavené.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1221"/>
|
||||
<location filename="../GUI.cpp" line="1239"/>
|
||||
<source>'%1' paused.</source>
|
||||
<comment>xxx.avi paused.</comment>
|
||||
<translation>„%1“ pozastavené.</translation>
|
||||
|
@ -1909,30 +1919,30 @@ Najskôr ho prosím zatvorte.</translation>
|
|||
<translation type="obsolete">pripája sa...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1254"/>
|
||||
<location filename="../GUI.cpp" line="1272"/>
|
||||
<source>All downloads were resumed.</source>
|
||||
<translation>Všetky sťahovania obnovené.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1280"/>
|
||||
<location filename="../GUI.cpp" line="1298"/>
|
||||
<source>'%1' resumed.</source>
|
||||
<comment>e.g: xxx.avi resumed.</comment>
|
||||
<translation>„%1“ obnovené.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="355"/>
|
||||
<location filename="../GUI.cpp" line="367"/>
|
||||
<source>%1 has finished downloading.</source>
|
||||
<comment>e.g: xxx.avi has finished downloading.</comment>
|
||||
<translation>%1 je stiahnutý.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="364"/>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<source>I/O Error</source>
|
||||
<comment>i.e: Input/Output Error</comment>
|
||||
<translation>V/V Chyba</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="364"/>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<source>An error occured when trying to read or write %1. The disk is probably full, download has been paused</source>
|
||||
<comment>e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused</comment>
|
||||
<translation>Vyskytla sa chyba pri pokuse o čítanie alebo zapisovanie do %1. Disk je pravdepodobne plný, sťahovanie bolo pozastavené</translation>
|
||||
|
@ -1944,23 +1954,23 @@ Najskôr ho prosím zatvorte.</translation>
|
|||
<translation type="obsolete">Vyskytla sa chyba (plný disk?), „%1“ pozastavené.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>Connection Status:</source>
|
||||
<translation>Stav spojenia:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1355"/>
|
||||
<location filename="../GUI.cpp" line="1373"/>
|
||||
<source>Online</source>
|
||||
<translation>Online</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>Firewalled?</source>
|
||||
<comment>i.e: Behind a firewall/router?</comment>
|
||||
<translation>Za firewallom?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>No incoming connections...</source>
|
||||
<translation>Žiadne prichádzajúce spojenia...</translation>
|
||||
</message>
|
||||
|
@ -1992,66 +2002,66 @@ Najskôr ho prosím zatvorte.</translation>
|
|||
<translation type="obsolete">Sťahuje sa „%1“;, čakajte prosím...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<location filename="../GUI.cpp" line="388"/>
|
||||
<source>An error occured (full disk?), '%1' paused.</source>
|
||||
<comment>e.g: An error occured (full disk?), 'xxx.avi' paused.</comment>
|
||||
<translation>Vyskytla sa chyba (plný disk?), „%1“ pozastavené.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="165"/>
|
||||
<location filename="../GUI.cpp" line="153"/>
|
||||
<source>Search</source>
|
||||
<translation>Vyhľadávanie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="169"/>
|
||||
<location filename="../GUI.cpp" line="279"/>
|
||||
<source>RSS</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1104"/>
|
||||
<location filename="../GUI.cpp" line="1122"/>
|
||||
<source>Downloads</source>
|
||||
<translation>Sťahovania</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="612"/>
|
||||
<location filename="../GUI.cpp" line="624"/>
|
||||
<source>The download list is not empty.
|
||||
Are you sure you want to quit qBittorrent?</source>
|
||||
<translation>Zoznam sťahovaní nie je prázdny.
|
||||
Ste si istý, že chcete ukončiť qBittorrent?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="825"/>
|
||||
<location filename="../GUI.cpp" line="837"/>
|
||||
<source>Are you sure you want to delete the selected item(s) in finished list?</source>
|
||||
<translation>Ste si istý, že chcete zmazať vybrané položky zo zoznamu dokončených?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="935"/>
|
||||
<location filename="../GUI.cpp" line="947"/>
|
||||
<source>qBittorrent is bind to port: %1</source>
|
||||
<comment>e.g: qBittorrent is bind to port: 1666</comment>
|
||||
<translation>qBittorrent sa viaže (bind) na port: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1036"/>
|
||||
<location filename="../GUI.cpp" line="1048"/>
|
||||
<source>DHT support [ON], port: %1</source>
|
||||
<translation>Podpora DHT [zapnutá], port: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1042"/>
|
||||
<location filename="../GUI.cpp" line="1054"/>
|
||||
<source>DHT support [OFF]</source>
|
||||
<translation>Podpora DHT [vypnutá]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="957"/>
|
||||
<location filename="../GUI.cpp" line="969"/>
|
||||
<source>UPnP support [ON]</source>
|
||||
<translation>Podpora UPnP [zapnutá]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1046"/>
|
||||
<location filename="../GUI.cpp" line="1058"/>
|
||||
<source>PeX support [ON]</source>
|
||||
<translation>Podpora PeX [zapnutá]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1050"/>
|
||||
<location filename="../GUI.cpp" line="1062"/>
|
||||
<source>PeX support [OFF]</source>
|
||||
<translation>Podpora PeX [vypnutá]</translation>
|
||||
</message>
|
||||
|
@ -2061,17 +2071,17 @@ Ste si istý, že chcete ukončiť qBittorrent?</translation>
|
|||
<translation type="obsolete">Buďte opatrní, zdieľanie materiálu chráneného autorskými právami bez povolenia je protizákonné.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1070"/>
|
||||
<location filename="../GUI.cpp" line="1082"/>
|
||||
<source>Encryption support [ON]</source>
|
||||
<translation>Podpora šifrovania [zapnuté]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1075"/>
|
||||
<location filename="../GUI.cpp" line="1087"/>
|
||||
<source>Encryption support [FORCED]</source>
|
||||
<translation>Podpora šifrovania [vynútené]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1080"/>
|
||||
<location filename="../GUI.cpp" line="1092"/>
|
||||
<source>Encryption support [OFF]</source>
|
||||
<translation>Podpora šifrovania [vypnuté]</translation>
|
||||
</message>
|
||||
|
@ -2087,13 +2097,13 @@ Ste si istý, že chcete ukončiť qBittorrent?</translation>
|
|||
<translation type="obsolete">Pomer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="383"/>
|
||||
<location filename="../GUI.cpp" line="395"/>
|
||||
<source>Alt+1</source>
|
||||
<comment>shortcut to switch to first tab</comment>
|
||||
<translation>Alt+1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="385"/>
|
||||
<location filename="../GUI.cpp" line="397"/>
|
||||
<source>Alt+2</source>
|
||||
<comment>shortcut to switch to second tab</comment>
|
||||
<translation>Alt+2</translation>
|
||||
|
@ -2105,18 +2115,18 @@ Ste si istý, že chcete ukončiť qBittorrent?</translation>
|
|||
<translation type="obsolete">Alt+3, Ctrl+F</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="391"/>
|
||||
<location filename="../GUI.cpp" line="403"/>
|
||||
<source>Alt+4</source>
|
||||
<comment>shortcut to switch to fourth tab</comment>
|
||||
<translation>Alt+4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="459"/>
|
||||
<location filename="../GUI.cpp" line="471"/>
|
||||
<source>Url download error</source>
|
||||
<translation>Chyba sťahovania url</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="459"/>
|
||||
<location filename="../GUI.cpp" line="471"/>
|
||||
<source>Couldn't download file at url: %1, reason: %2.</source>
|
||||
<translation>Nebolo možné stiahnuť súbor z url: %1, dôvod: %2.</translation>
|
||||
</message>
|
||||
|
@ -2126,17 +2136,17 @@ Ste si istý, že chcete ukončiť qBittorrent?</translation>
|
|||
<translation type="obsolete">Rýchle obnovenie torrentu torrent %1 bolo odmietnuté, skúšam znova...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="758"/>
|
||||
<location filename="../GUI.cpp" line="770"/>
|
||||
<source>Are you sure you want to delete the selected item(s) from download list and from hard drive?</source>
|
||||
<translation>Ste si istý, že chcete zmazať vybrané položky zo zoznamu sťahovaných a z pevného disku?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="765"/>
|
||||
<location filename="../GUI.cpp" line="777"/>
|
||||
<source>Are you sure you want to delete the selected item(s) from finished list and from hard drive?</source>
|
||||
<translation>Ste si istý, že chcete zmazať vybrané položky zo zoznamu dokončených a z pevného disku?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="779"/>
|
||||
<location filename="../GUI.cpp" line="791"/>
|
||||
<source>'%1' was removed permanently.</source>
|
||||
<comment>'xxx.avi' was removed permanently.</comment>
|
||||
<translation>„%1“ bol permanentne odstránený.</translation>
|
||||
|
@ -2147,71 +2157,71 @@ Ste si istý, že chcete ukončiť qBittorrent?</translation>
|
|||
<translation type="obsolete">Vyhľadanie url seedu zlyhalo pre url: %1, správa: %2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="387"/>
|
||||
<location filename="../GUI.cpp" line="399"/>
|
||||
<source>Alt+3</source>
|
||||
<comment>shortcut to switch to third tab</comment>
|
||||
<translation>Alt+3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="389"/>
|
||||
<location filename="../GUI.cpp" line="401"/>
|
||||
<source>Ctrl+F</source>
|
||||
<comment>shortcut to switch to search tab</comment>
|
||||
<translation>Ctrl+F</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="960"/>
|
||||
<location filename="../GUI.cpp" line="972"/>
|
||||
<source>UPnP support [OFF]</source>
|
||||
<translation>Podpora UPnP [vypnutá]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="965"/>
|
||||
<location filename="../GUI.cpp" line="977"/>
|
||||
<source>NAT-PMP support [ON]</source>
|
||||
<translation>Podpora NAT-PMP [zapnutá]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="968"/>
|
||||
<location filename="../GUI.cpp" line="980"/>
|
||||
<source>NAT-PMP support [OFF]</source>
|
||||
<translation>Podpora NAT-PMP [vypnutá]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1055"/>
|
||||
<location filename="../GUI.cpp" line="1067"/>
|
||||
<source>Local Peer Discovery [ON]</source>
|
||||
<translation>Local Peer Discovery [zapnutá]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1058"/>
|
||||
<location filename="../GUI.cpp" line="1070"/>
|
||||
<source>Local Peer Discovery support [OFF]</source>
|
||||
<translation>Podpora Local Peer Discovery support [vypnutá]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="785"/>
|
||||
<location filename="../GUI.cpp" line="797"/>
|
||||
<source>'%1' was removed because its ratio reached the maximum value you set.</source>
|
||||
<comment>%1 is a file name</comment>
|
||||
<translation>„%1“ bol odstránený, pretože jeho pomer dosiahol maximálnu hodonotu, ktorú ste nastavili.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1321"/>
|
||||
<location filename="../GUI.cpp" line="1339"/>
|
||||
<source>qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)</source>
|
||||
<comment>%1 is qBittorrent version</comment>
|
||||
<translation>qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1306"/>
|
||||
<location filename="../GUI.cpp" line="1324"/>
|
||||
<source>DL: %1 KiB/s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1307"/>
|
||||
<location filename="../GUI.cpp" line="1325"/>
|
||||
<source>UP: %1 KiB/s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="291"/>
|
||||
<location filename="../GUI.cpp" line="303"/>
|
||||
<source>Ratio: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="293"/>
|
||||
<location filename="../GUI.cpp" line="305"/>
|
||||
<source>DHT: %1 nodes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -3885,9 +3895,9 @@ Tieto moduly však boli vypnuté.</translation>
|
|||
<translation type="obsolete">h </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../misc.h" line="322"/>
|
||||
<location filename="../misc.h" line="303"/>
|
||||
<source>Unknown</source>
|
||||
<translation>Neznámy</translation>
|
||||
<translation type="obsolete">Neznámy</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="" line="0"/>
|
||||
|
@ -4103,12 +4113,12 @@ Tieto moduly však boli vypnuté.</translation>
|
|||
<translation type="obsolete">Táto IP je neplatná.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="774"/>
|
||||
<location filename="../options_imp.cpp" line="787"/>
|
||||
<source>Options were saved successfully.</source>
|
||||
<translation>Nastavenia úspešne uložené.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1052"/>
|
||||
<location filename="../options_imp.cpp" line="1075"/>
|
||||
<source>Choose scan directory</source>
|
||||
<translation>Zvoliť adresár pre prezeranie</translation>
|
||||
</message>
|
||||
|
@ -4118,7 +4128,7 @@ Tieto moduly však boli vypnuté.</translation>
|
|||
<translation type="obsolete">Vyberte súbor ipfilter.dat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1067"/>
|
||||
<location filename="../options_imp.cpp" line="1090"/>
|
||||
<source>Choose a save directory</source>
|
||||
<translation>Vyberte adresár, kde sa bude ukladať</translation>
|
||||
</message>
|
||||
|
@ -4134,12 +4144,12 @@ Tieto moduly však boli vypnuté.</translation>
|
|||
<translation type="obsolete">Nebolo možné otvoriť %1 v režime pre čítanie.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1059"/>
|
||||
<location filename="../options_imp.cpp" line="1082"/>
|
||||
<source>Choose an ip filter file</source>
|
||||
<translation>Zvoliť súbor IP filtra</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1059"/>
|
||||
<location filename="../options_imp.cpp" line="1082"/>
|
||||
<source>Filters</source>
|
||||
<translation>Filtre</translation>
|
||||
</message>
|
||||
|
|
Binary file not shown.
|
@ -172,17 +172,17 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation>Proxyinställningar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1800"/>
|
||||
<location filename="../options.ui" line="1819"/>
|
||||
<source>Port:</source>
|
||||
<translation>Port:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1839"/>
|
||||
<location filename="../options.ui" line="1858"/>
|
||||
<source>Authentication</source>
|
||||
<translation>Autentisering</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1860"/>
|
||||
<location filename="../options.ui" line="1879"/>
|
||||
<source>Password:</source>
|
||||
<translation>Lösenord:</translation>
|
||||
</message>
|
||||
|
@ -435,7 +435,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation>Proxy:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1850"/>
|
||||
<location filename="../options.ui" line="1869"/>
|
||||
<source>Username:</source>
|
||||
<translation>Användarnamn:</translation>
|
||||
</message>
|
||||
|
@ -520,17 +520,17 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation>RSS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1660"/>
|
||||
<location filename="../options.ui" line="1676"/>
|
||||
<source>RSS feeds refresh interval:</source>
|
||||
<translation>Uppdateringsintervall för RSS-kanaler:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1680"/>
|
||||
<location filename="../options.ui" line="1696"/>
|
||||
<source>minutes</source>
|
||||
<translation>minuter</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1704"/>
|
||||
<location filename="../options.ui" line="1720"/>
|
||||
<source>Maximum number of articles per feed:</source>
|
||||
<translation>Maximalt antal inlägg per RSS-kanal:</translation>
|
||||
</message>
|
||||
|
@ -607,20 +607,30 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation>Identifiera som Azureus för att undvika bannlysning (kräver omstart)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1765"/>
|
||||
<location filename="../options.ui" line="1784"/>
|
||||
<source>Web UI</source>
|
||||
<translation>Webbgränssnitt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1778"/>
|
||||
<location filename="../options.ui" line="1797"/>
|
||||
<source>Enable Web User Interface</source>
|
||||
<translation>Aktivera webbgränssnitt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1791"/>
|
||||
<location filename="../options.ui" line="1810"/>
|
||||
<source>HTTP Server</source>
|
||||
<translation>HTTP-server</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1629"/>
|
||||
<source>Enable RSS support</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1639"/>
|
||||
<source>RSS settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DownloadingTorrents</name>
|
||||
|
@ -826,344 +836,344 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<context>
|
||||
<name>GUI</name>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="716"/>
|
||||
<location filename="../GUI.cpp" line="728"/>
|
||||
<source>Open Torrent Files</source>
|
||||
<translation>Öppna Torrent-filer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="826"/>
|
||||
<location filename="../GUI.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation>&Ja</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="826"/>
|
||||
<location filename="../GUI.cpp" line="838"/>
|
||||
<source>&No</source>
|
||||
<translation>&Nej</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="818"/>
|
||||
<location filename="../GUI.cpp" line="830"/>
|
||||
<source>Are you sure you want to delete the selected item(s) in download list?</source>
|
||||
<translation>Är du säker på att du vill ta bort de markerade post(erna) i hämtningslistan?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="717"/>
|
||||
<location filename="../GUI.cpp" line="729"/>
|
||||
<source>Torrent Files</source>
|
||||
<translation>Torrent-filer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="824"/>
|
||||
<location filename="../GUI.cpp" line="836"/>
|
||||
<source>Are you sure? -- qBittorrent</source>
|
||||
<translation>Är du säker? -- qBittorrent</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="355"/>
|
||||
<location filename="../GUI.cpp" line="367"/>
|
||||
<source>Download finished</source>
|
||||
<translation>Hämtningen är färdig</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="908"/>
|
||||
<location filename="../GUI.cpp" line="920"/>
|
||||
<source>qBittorrent %1</source>
|
||||
<comment>e.g: qBittorrent v0.x</comment>
|
||||
<translation>qBittorrent %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>Connection status:</source>
|
||||
<translation>Anslutningsstatus:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>Offline</source>
|
||||
<translation>Frånkopplad</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>No peers found...</source>
|
||||
<translation>Inga klienter hittades...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1341"/>
|
||||
<location filename="../GUI.cpp" line="1359"/>
|
||||
<source>qBittorrent</source>
|
||||
<translation>qBittorrent</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1344"/>
|
||||
<location filename="../GUI.cpp" line="1362"/>
|
||||
<source>DL speed: %1 KiB/s</source>
|
||||
<comment>e.g: Download speed: 10 KiB/s</comment>
|
||||
<translation>Hämtning: %1 KiB/s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1347"/>
|
||||
<location filename="../GUI.cpp" line="1365"/>
|
||||
<source>UP speed: %1 KiB/s</source>
|
||||
<comment>e.g: Upload speed: 10 KiB/s</comment>
|
||||
<translation>Sändning: %1 KiB/s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="611"/>
|
||||
<location filename="../GUI.cpp" line="623"/>
|
||||
<source>Are you sure you want to quit?</source>
|
||||
<translation>Är du säker på att du vill avsluta?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="839"/>
|
||||
<location filename="../GUI.cpp" line="851"/>
|
||||
<source>'%1' was removed.</source>
|
||||
<comment>'xxx.avi' was removed.</comment>
|
||||
<translation>"%1" togs bort.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1195"/>
|
||||
<location filename="../GUI.cpp" line="1213"/>
|
||||
<source>All downloads were paused.</source>
|
||||
<translation>Alla hämtningar har pausats.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1221"/>
|
||||
<location filename="../GUI.cpp" line="1239"/>
|
||||
<source>'%1' paused.</source>
|
||||
<comment>xxx.avi paused.</comment>
|
||||
<translation>"%1" pausad.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1254"/>
|
||||
<location filename="../GUI.cpp" line="1272"/>
|
||||
<source>All downloads were resumed.</source>
|
||||
<translation>Alla hämtningar har återupptagits.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1280"/>
|
||||
<location filename="../GUI.cpp" line="1298"/>
|
||||
<source>'%1' resumed.</source>
|
||||
<comment>e.g: xxx.avi resumed.</comment>
|
||||
<translation>"%1" återupptogs.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="355"/>
|
||||
<location filename="../GUI.cpp" line="367"/>
|
||||
<source>%1 has finished downloading.</source>
|
||||
<comment>e.g: xxx.avi has finished downloading.</comment>
|
||||
<translation>%1 har hämtats färdigt.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="364"/>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<source>I/O Error</source>
|
||||
<comment>i.e: Input/Output Error</comment>
|
||||
<translation>In/Ut-fel</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="364"/>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<source>An error occured when trying to read or write %1. The disk is probably full, download has been paused</source>
|
||||
<comment>e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused</comment>
|
||||
<translation>Ett fel inträffade vid försök att läsa eller skriva %1. Disken är antagligen full, hämtningen har pausats</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>Connection Status:</source>
|
||||
<translation>Anslutningsstatus:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1355"/>
|
||||
<location filename="../GUI.cpp" line="1373"/>
|
||||
<source>Online</source>
|
||||
<translation>Ansluten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>Firewalled?</source>
|
||||
<comment>i.e: Behind a firewall/router?</comment>
|
||||
<translation>Brandvägg?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>No incoming connections...</source>
|
||||
<translation>Inga inkommande anslutningar...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<location filename="../GUI.cpp" line="388"/>
|
||||
<source>An error occured (full disk?), '%1' paused.</source>
|
||||
<comment>e.g: An error occured (full disk?), 'xxx.avi' paused.</comment>
|
||||
<translation>Ett fel inträffade (full disk?), "%1" har pausats.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="165"/>
|
||||
<location filename="../GUI.cpp" line="153"/>
|
||||
<source>Search</source>
|
||||
<translation>Sök</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="169"/>
|
||||
<location filename="../GUI.cpp" line="279"/>
|
||||
<source>RSS</source>
|
||||
<translation>RSS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="935"/>
|
||||
<location filename="../GUI.cpp" line="947"/>
|
||||
<source>qBittorrent is bind to port: %1</source>
|
||||
<comment>e.g: qBittorrent is bind to port: 1666</comment>
|
||||
<translation>qBittorrent är bunden till port: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1036"/>
|
||||
<location filename="../GUI.cpp" line="1048"/>
|
||||
<source>DHT support [ON], port: %1</source>
|
||||
<translation>DHT-stöd [PÅ], port: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1042"/>
|
||||
<location filename="../GUI.cpp" line="1054"/>
|
||||
<source>DHT support [OFF]</source>
|
||||
<translation>DHT-stöd [AV]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1046"/>
|
||||
<location filename="../GUI.cpp" line="1058"/>
|
||||
<source>PeX support [ON]</source>
|
||||
<translation>PeX-stöd [PÅ]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1050"/>
|
||||
<location filename="../GUI.cpp" line="1062"/>
|
||||
<source>PeX support [OFF]</source>
|
||||
<translation>PeX-stöd [AV]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="612"/>
|
||||
<location filename="../GUI.cpp" line="624"/>
|
||||
<source>The download list is not empty.
|
||||
Are you sure you want to quit qBittorrent?</source>
|
||||
<translation>Hämtningslistan är inte tom.
|
||||
Är du säker på att du vill avsluta qBittorrent?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1104"/>
|
||||
<location filename="../GUI.cpp" line="1122"/>
|
||||
<source>Downloads</source>
|
||||
<translation>Hämtningar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1109"/>
|
||||
<location filename="../GUI.cpp" line="1127"/>
|
||||
<source>Finished</source>
|
||||
<translation>Färdiga</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="825"/>
|
||||
<location filename="../GUI.cpp" line="837"/>
|
||||
<source>Are you sure you want to delete the selected item(s) in finished list?</source>
|
||||
<translation>Är du säker på att du vill ta bort de markerade färdiga objekt(en) i listan?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="957"/>
|
||||
<location filename="../GUI.cpp" line="969"/>
|
||||
<source>UPnP support [ON]</source>
|
||||
<translation>UPnP-stöd [PÅ]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1070"/>
|
||||
<location filename="../GUI.cpp" line="1082"/>
|
||||
<source>Encryption support [ON]</source>
|
||||
<translation>Krypteringsstöd [PÅ]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1075"/>
|
||||
<location filename="../GUI.cpp" line="1087"/>
|
||||
<source>Encryption support [FORCED]</source>
|
||||
<translation>Krypteringsstöd [TVINGAD]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1080"/>
|
||||
<location filename="../GUI.cpp" line="1092"/>
|
||||
<source>Encryption support [OFF]</source>
|
||||
<translation>Krypteringsstöd [AV]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="383"/>
|
||||
<location filename="../GUI.cpp" line="395"/>
|
||||
<source>Alt+1</source>
|
||||
<comment>shortcut to switch to first tab</comment>
|
||||
<translation>Alt+1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="385"/>
|
||||
<location filename="../GUI.cpp" line="397"/>
|
||||
<source>Alt+2</source>
|
||||
<comment>shortcut to switch to second tab</comment>
|
||||
<translation>Alt+2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="391"/>
|
||||
<location filename="../GUI.cpp" line="403"/>
|
||||
<source>Alt+4</source>
|
||||
<comment>shortcut to switch to fourth tab</comment>
|
||||
<translation>Alt+4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="459"/>
|
||||
<location filename="../GUI.cpp" line="471"/>
|
||||
<source>Url download error</source>
|
||||
<translation>Fel vid url-hämtning</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="459"/>
|
||||
<location filename="../GUI.cpp" line="471"/>
|
||||
<source>Couldn't download file at url: %1, reason: %2.</source>
|
||||
<translation>Kunde inte hämta fil från url:en: %1, anledning: %2.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="758"/>
|
||||
<location filename="../GUI.cpp" line="770"/>
|
||||
<source>Are you sure you want to delete the selected item(s) from download list and from hard drive?</source>
|
||||
<translation>Är du säker på att du vill ta bort de markerade objekt(en) från hämtningslistan och från hårddisken?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="765"/>
|
||||
<location filename="../GUI.cpp" line="777"/>
|
||||
<source>Are you sure you want to delete the selected item(s) from finished list and from hard drive?</source>
|
||||
<translation>Är du säker på att du vill ta bort de markerade färdiga objekt(en) från listan och från hårddisken?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="779"/>
|
||||
<location filename="../GUI.cpp" line="791"/>
|
||||
<source>'%1' was removed permanently.</source>
|
||||
<comment>'xxx.avi' was removed permanently.</comment>
|
||||
<translation>"%1" togs bort permanent.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="387"/>
|
||||
<location filename="../GUI.cpp" line="399"/>
|
||||
<source>Alt+3</source>
|
||||
<comment>shortcut to switch to third tab</comment>
|
||||
<translation>Alt+3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="389"/>
|
||||
<location filename="../GUI.cpp" line="401"/>
|
||||
<source>Ctrl+F</source>
|
||||
<comment>shortcut to switch to search tab</comment>
|
||||
<translation>Ctrl+F</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="960"/>
|
||||
<location filename="../GUI.cpp" line="972"/>
|
||||
<source>UPnP support [OFF]</source>
|
||||
<translation>UPnP-stöd [AV]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="965"/>
|
||||
<location filename="../GUI.cpp" line="977"/>
|
||||
<source>NAT-PMP support [ON]</source>
|
||||
<translation>NAT-PMP-stöd [PÅ]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="968"/>
|
||||
<location filename="../GUI.cpp" line="980"/>
|
||||
<source>NAT-PMP support [OFF]</source>
|
||||
<translation>NAT-PMP-stöd [AV]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1055"/>
|
||||
<location filename="../GUI.cpp" line="1067"/>
|
||||
<source>Local Peer Discovery [ON]</source>
|
||||
<translation>Identifiering av lokala klienter [PÅ]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1058"/>
|
||||
<location filename="../GUI.cpp" line="1070"/>
|
||||
<source>Local Peer Discovery support [OFF]</source>
|
||||
<translation>Stöd för identifiering av lokala klienter [AV]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="785"/>
|
||||
<location filename="../GUI.cpp" line="797"/>
|
||||
<source>'%1' was removed because its ratio reached the maximum value you set.</source>
|
||||
<comment>%1 is a file name</comment>
|
||||
<translation>"%1" togs bort därför att dess förhållande nådde det maximala värdet du ställde in.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1321"/>
|
||||
<location filename="../GUI.cpp" line="1339"/>
|
||||
<source>qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)</source>
|
||||
<comment>%1 is qBittorrent version</comment>
|
||||
<translation>qBittorrent %1 (Ned: %2 KiB/s, Upp: %3 KiB/s)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1306"/>
|
||||
<location filename="../GUI.cpp" line="1324"/>
|
||||
<source>DL: %1 KiB/s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1307"/>
|
||||
<location filename="../GUI.cpp" line="1325"/>
|
||||
<source>UP: %1 KiB/s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="291"/>
|
||||
<location filename="../GUI.cpp" line="303"/>
|
||||
<source>Ratio: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="293"/>
|
||||
<location filename="../GUI.cpp" line="305"/>
|
||||
<source>DHT: %1 nodes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -2313,9 +2323,9 @@ Dock har dessa insticksmoduler blivit inaktiverade.</translation>
|
|||
<translation>TiB</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../misc.h" line="322"/>
|
||||
<location filename="../misc.h" line="303"/>
|
||||
<source>Unknown</source>
|
||||
<translation>Okänd</translation>
|
||||
<translation type="obsolete">Okänd</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../misc.h" line="110"/>
|
||||
|
@ -2351,27 +2361,27 @@ Dock har dessa insticksmoduler blivit inaktiverade.</translation>
|
|||
<context>
|
||||
<name>options_imp</name>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="774"/>
|
||||
<location filename="../options_imp.cpp" line="787"/>
|
||||
<source>Options were saved successfully.</source>
|
||||
<translation>Inställningarna har sparats.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1052"/>
|
||||
<location filename="../options_imp.cpp" line="1075"/>
|
||||
<source>Choose scan directory</source>
|
||||
<translation>Välj en avsökningskatalog</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1067"/>
|
||||
<location filename="../options_imp.cpp" line="1090"/>
|
||||
<source>Choose a save directory</source>
|
||||
<translation>Välj en katalog att spara i</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1059"/>
|
||||
<location filename="../options_imp.cpp" line="1082"/>
|
||||
<source>Choose an ip filter file</source>
|
||||
<translation>Välj en IP-filterfil</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1059"/>
|
||||
<location filename="../options_imp.cpp" line="1082"/>
|
||||
<source>Filters</source>
|
||||
<translation>Filter</translation>
|
||||
</message>
|
||||
|
|
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
|
@ -271,7 +271,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">0.0.0.0</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1800"/>
|
||||
<location filename="../options.ui" line="1819"/>
|
||||
<source>Port:</source>
|
||||
<translation>Порт:</translation>
|
||||
</message>
|
||||
|
@ -281,7 +281,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">Проксі-сервер вимагає аутентифікації</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1839"/>
|
||||
<location filename="../options.ui" line="1858"/>
|
||||
<source>Authentication</source>
|
||||
<translation>Аутентифікація</translation>
|
||||
</message>
|
||||
|
@ -291,7 +291,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">Ім'я користувача:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1860"/>
|
||||
<location filename="../options.ui" line="1879"/>
|
||||
<source>Password:</source>
|
||||
<translation>Пароль:</translation>
|
||||
</message>
|
||||
|
@ -885,7 +885,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation>Проксі:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1850"/>
|
||||
<location filename="../options.ui" line="1869"/>
|
||||
<source>Username:</source>
|
||||
<translation>Ім'я користувача:</translation>
|
||||
</message>
|
||||
|
@ -970,17 +970,17 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation>RSS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1660"/>
|
||||
<location filename="../options.ui" line="1676"/>
|
||||
<source>RSS feeds refresh interval:</source>
|
||||
<translation>Інтервал оновлення RSS-фідів:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1680"/>
|
||||
<location filename="../options.ui" line="1696"/>
|
||||
<source>minutes</source>
|
||||
<translation>хвилин</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1704"/>
|
||||
<location filename="../options.ui" line="1720"/>
|
||||
<source>Maximum number of articles per feed:</source>
|
||||
<translation>Максимальне число записів у одному фіді:</translation>
|
||||
</message>
|
||||
|
@ -1051,20 +1051,30 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1765"/>
|
||||
<location filename="../options.ui" line="1784"/>
|
||||
<source>Web UI</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1778"/>
|
||||
<location filename="../options.ui" line="1797"/>
|
||||
<source>Enable Web User Interface</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1791"/>
|
||||
<location filename="../options.ui" line="1810"/>
|
||||
<source>HTTP Server</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1629"/>
|
||||
<source>Enable RSS support</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1639"/>
|
||||
<source>RSS settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DownloadingTorrents</name>
|
||||
|
@ -1315,7 +1325,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<context>
|
||||
<name>GUI</name>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="716"/>
|
||||
<location filename="../GUI.cpp" line="728"/>
|
||||
<source>Open Torrent Files</source>
|
||||
<translation>Відкрити Torrent-файли</translation>
|
||||
</message>
|
||||
|
@ -1335,17 +1345,17 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">Ви впевнені що хочете видалити всі файли зі списку завантажень?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="826"/>
|
||||
<location filename="../GUI.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation>&Так</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="826"/>
|
||||
<location filename="../GUI.cpp" line="838"/>
|
||||
<source>&No</source>
|
||||
<translation>&Ні</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="818"/>
|
||||
<location filename="../GUI.cpp" line="830"/>
|
||||
<source>Are you sure you want to delete the selected item(s) in download list?</source>
|
||||
<translation>Ви впевнені що хочете видалити вибрані файли зі списку завантажень?</translation>
|
||||
</message>
|
||||
|
@ -1360,7 +1370,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">почато</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1109"/>
|
||||
<location filename="../GUI.cpp" line="1127"/>
|
||||
<source>Finished</source>
|
||||
<translation>Закінчено</translation>
|
||||
</message>
|
||||
|
@ -1415,7 +1425,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">Неможливо створити директорію:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="717"/>
|
||||
<location filename="../GUI.cpp" line="729"/>
|
||||
<source>Torrent Files</source>
|
||||
<translation>Torrent файли</translation>
|
||||
</message>
|
||||
|
@ -1487,12 +1497,12 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">qBittorrent</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1341"/>
|
||||
<location filename="../GUI.cpp" line="1359"/>
|
||||
<source>qBittorrent</source>
|
||||
<translation>qBittorrent</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="824"/>
|
||||
<location filename="../GUI.cpp" line="836"/>
|
||||
<source>Are you sure? -- qBittorrent</source>
|
||||
<translation>Ви впевнені? -- qBittorrent</translation>
|
||||
</message>
|
||||
|
@ -1820,7 +1830,7 @@ Please close the other one first.</source>
|
|||
<translation type="obsolete">Ви впевнені, що хочете видалити вибрані завантаження зі списку та з вінчестера?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="355"/>
|
||||
<location filename="../GUI.cpp" line="367"/>
|
||||
<source>Download finished</source>
|
||||
<translation>Завантаження завершено</translation>
|
||||
</message>
|
||||
|
@ -1836,23 +1846,23 @@ Please close the other one first.</source>
|
|||
<translation type="obsolete">Пошуковик</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="908"/>
|
||||
<location filename="../GUI.cpp" line="920"/>
|
||||
<source>qBittorrent %1</source>
|
||||
<comment>e.g: qBittorrent v0.x</comment>
|
||||
<translation>qBittorrent %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>Connection status:</source>
|
||||
<translation>Статус з'єднання:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>Offline</source>
|
||||
<translation>Офлайн</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>No peers found...</source>
|
||||
<translation>Не знайдено пірів...</translation>
|
||||
</message>
|
||||
|
@ -1917,13 +1927,13 @@ Please close the other one first.</source>
|
|||
<translation type="obsolete">qBittorrent %1 запущено.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1344"/>
|
||||
<location filename="../GUI.cpp" line="1362"/>
|
||||
<source>DL speed: %1 KiB/s</source>
|
||||
<comment>e.g: Download speed: 10 KiB/s</comment>
|
||||
<translation>Швидкість прийому: %1 КіБ/с</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1347"/>
|
||||
<location filename="../GUI.cpp" line="1365"/>
|
||||
<source>UP speed: %1 KiB/s</source>
|
||||
<comment>e.g: Upload speed: 10 KiB/s</comment>
|
||||
<translation>Швидкість віддачі: %1 КіБ/с</translation>
|
||||
|
@ -1947,12 +1957,12 @@ Please close the other one first.</source>
|
|||
<translation type="obsolete">Заглохло</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="611"/>
|
||||
<location filename="../GUI.cpp" line="623"/>
|
||||
<source>Are you sure you want to quit?</source>
|
||||
<translation>Ви впевнені, що хочете вийти?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="839"/>
|
||||
<location filename="../GUI.cpp" line="851"/>
|
||||
<source>'%1' was removed.</source>
|
||||
<comment>'xxx.avi' was removed.</comment>
|
||||
<translation>'%1' було видалено.</translation>
|
||||
|
@ -1994,12 +2004,12 @@ Please close the other one first.</source>
|
|||
<translation type="obsolete">Прослуховую порт: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1195"/>
|
||||
<location filename="../GUI.cpp" line="1213"/>
|
||||
<source>All downloads were paused.</source>
|
||||
<translation>Всі завантаження були призупинені.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1221"/>
|
||||
<location filename="../GUI.cpp" line="1239"/>
|
||||
<source>'%1' paused.</source>
|
||||
<comment>xxx.avi paused.</comment>
|
||||
<translation>'%1' призупинено.</translation>
|
||||
|
@ -2011,30 +2021,30 @@ Please close the other one first.</source>
|
|||
<translation type="obsolete">З'єднуюсь...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1254"/>
|
||||
<location filename="../GUI.cpp" line="1272"/>
|
||||
<source>All downloads were resumed.</source>
|
||||
<translation>Всі завантаження було відновлено.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1280"/>
|
||||
<location filename="../GUI.cpp" line="1298"/>
|
||||
<source>'%1' resumed.</source>
|
||||
<comment>e.g: xxx.avi resumed.</comment>
|
||||
<translation>'%1' відновлено.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="355"/>
|
||||
<location filename="../GUI.cpp" line="367"/>
|
||||
<source>%1 has finished downloading.</source>
|
||||
<comment>e.g: xxx.avi has finished downloading.</comment>
|
||||
<translation>Завантаження '%1' закінчилось.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="364"/>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<source>I/O Error</source>
|
||||
<comment>i.e: Input/Output Error</comment>
|
||||
<translation>Помилка вводу/виводу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="364"/>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<source>An error occured when trying to read or write %1. The disk is probably full, download has been paused</source>
|
||||
<comment>e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused</comment>
|
||||
<translation>Сталася помилка під час запису чи зчитування %1. Можливо диск заповнено, завантаження було призупинено</translation>
|
||||
|
@ -2046,23 +2056,23 @@ Please close the other one first.</source>
|
|||
<translation type="obsolete">Сталася помилка (заповнено диск?), '%1' призупинено.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>Connection Status:</source>
|
||||
<translation>Статус з'єднання:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1355"/>
|
||||
<location filename="../GUI.cpp" line="1373"/>
|
||||
<source>Online</source>
|
||||
<translation>Онлайн</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>Firewalled?</source>
|
||||
<comment>i.e: Behind a firewall/router?</comment>
|
||||
<translation>Захищено фаєрволом?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>No incoming connections...</source>
|
||||
<translation>Немає вхідних з'єднань...</translation>
|
||||
</message>
|
||||
|
@ -2094,66 +2104,66 @@ Please close the other one first.</source>
|
|||
<translation type="obsolete">Завантажую '%1', будь-ласка зачекайте...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<location filename="../GUI.cpp" line="388"/>
|
||||
<source>An error occured (full disk?), '%1' paused.</source>
|
||||
<comment>e.g: An error occured (full disk?), 'xxx.avi' paused.</comment>
|
||||
<translation>Сталася помилка (заповнено диск?), '%1' призупинено.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="165"/>
|
||||
<location filename="../GUI.cpp" line="153"/>
|
||||
<source>Search</source>
|
||||
<translation>Пошук</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="169"/>
|
||||
<location filename="../GUI.cpp" line="279"/>
|
||||
<source>RSS</source>
|
||||
<translation>RSS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="935"/>
|
||||
<location filename="../GUI.cpp" line="947"/>
|
||||
<source>qBittorrent is bind to port: %1</source>
|
||||
<comment>e.g: qBittorrent is bind to port: 1666</comment>
|
||||
<translation>qBittorrent прив'язаний до порту: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1036"/>
|
||||
<location filename="../GUI.cpp" line="1048"/>
|
||||
<source>DHT support [ON], port: %1</source>
|
||||
<translation>Підтримка DHT (Увімкнена), порт: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1042"/>
|
||||
<location filename="../GUI.cpp" line="1054"/>
|
||||
<source>DHT support [OFF]</source>
|
||||
<translation>Підтримка DHT (Вимкнена)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1046"/>
|
||||
<location filename="../GUI.cpp" line="1058"/>
|
||||
<source>PeX support [ON]</source>
|
||||
<translation>Підтримка PeX (Увімкнена)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1050"/>
|
||||
<location filename="../GUI.cpp" line="1062"/>
|
||||
<source>PeX support [OFF]</source>
|
||||
<translation>Підтримка PeX (Вимкнена)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="612"/>
|
||||
<location filename="../GUI.cpp" line="624"/>
|
||||
<source>The download list is not empty.
|
||||
Are you sure you want to quit qBittorrent?</source>
|
||||
<translation>Список завантажень не порожній.
|
||||
Ви впевнені, що хочете вийти з qBittorrent?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1104"/>
|
||||
<location filename="../GUI.cpp" line="1122"/>
|
||||
<source>Downloads</source>
|
||||
<translation>Завантаження</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="825"/>
|
||||
<location filename="../GUI.cpp" line="837"/>
|
||||
<source>Are you sure you want to delete the selected item(s) in finished list?</source>
|
||||
<translation>Ви впевнені що хочете видалити вибрані пункти зі списку завершених завантажень?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="957"/>
|
||||
<location filename="../GUI.cpp" line="969"/>
|
||||
<source>UPnP support [ON]</source>
|
||||
<translation>Підтримка UNnP (Увімкнена)</translation>
|
||||
</message>
|
||||
|
@ -2163,17 +2173,17 @@ Are you sure you want to quit qBittorrent?</source>
|
|||
<translation type="obsolete">Будьте обережні, ділення захищеним матеріалом без дозволу є протизаконним.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1070"/>
|
||||
<location filename="../GUI.cpp" line="1082"/>
|
||||
<source>Encryption support [ON]</source>
|
||||
<translation>Підтримка шифрування (Увімкнена)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1075"/>
|
||||
<location filename="../GUI.cpp" line="1087"/>
|
||||
<source>Encryption support [FORCED]</source>
|
||||
<translation>Підтримка шифрування (Примусова)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1080"/>
|
||||
<location filename="../GUI.cpp" line="1092"/>
|
||||
<source>Encryption support [OFF]</source>
|
||||
<translation>Підтримка шифрування (Вимкнена)</translation>
|
||||
</message>
|
||||
|
@ -2189,13 +2199,13 @@ Are you sure you want to quit qBittorrent?</source>
|
|||
<translation type="obsolete">КоеКоефіціент</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="383"/>
|
||||
<location filename="../GUI.cpp" line="395"/>
|
||||
<source>Alt+1</source>
|
||||
<comment>shortcut to switch to first tab</comment>
|
||||
<translation>Alt+1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="385"/>
|
||||
<location filename="../GUI.cpp" line="397"/>
|
||||
<source>Alt+2</source>
|
||||
<comment>shortcut to switch to second tab</comment>
|
||||
<translation>Alt+2</translation>
|
||||
|
@ -2207,18 +2217,18 @@ Are you sure you want to quit qBittorrent?</source>
|
|||
<translation type="obsolete">Alt+3, Ctrl+F</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="391"/>
|
||||
<location filename="../GUI.cpp" line="403"/>
|
||||
<source>Alt+4</source>
|
||||
<comment>shortcut to switch to fourth tab</comment>
|
||||
<translation>Alt+4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="459"/>
|
||||
<location filename="../GUI.cpp" line="471"/>
|
||||
<source>Url download error</source>
|
||||
<translation>Помилка завантаження url</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="459"/>
|
||||
<location filename="../GUI.cpp" line="471"/>
|
||||
<source>Couldn't download file at url: %1, reason: %2.</source>
|
||||
<translation>Неможливо завантажити файл з url: %1, причина: %2.</translation>
|
||||
</message>
|
||||
|
@ -2228,17 +2238,17 @@ Are you sure you want to quit qBittorrent?</source>
|
|||
<translation type="obsolete">Було відмовлено у швидкому відновленні данних для torrent'у %1, перевіряю знову...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="758"/>
|
||||
<location filename="../GUI.cpp" line="770"/>
|
||||
<source>Are you sure you want to delete the selected item(s) from download list and from hard drive?</source>
|
||||
<translation>Ви впевнені що хочете видалити вибрані пункти зі списку завантажень та зі жорсткого диску?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="765"/>
|
||||
<location filename="../GUI.cpp" line="777"/>
|
||||
<source>Are you sure you want to delete the selected item(s) from finished list and from hard drive?</source>
|
||||
<translation>Ви впевнені що хочете видалити вибрані пункти зі списку завершених завантажень та зі жорсткого диску?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="779"/>
|
||||
<location filename="../GUI.cpp" line="791"/>
|
||||
<source>'%1' was removed permanently.</source>
|
||||
<comment>'xxx.avi' was removed permanently.</comment>
|
||||
<translation>'%1' було назавжди видалено.</translation>
|
||||
|
@ -2249,71 +2259,71 @@ Are you sure you want to quit qBittorrent?</source>
|
|||
<translation type="obsolete">Пошук url роздачі невдалий для url: %1, повідомлення: %2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="387"/>
|
||||
<location filename="../GUI.cpp" line="399"/>
|
||||
<source>Alt+3</source>
|
||||
<comment>shortcut to switch to third tab</comment>
|
||||
<translation>Alt+3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="389"/>
|
||||
<location filename="../GUI.cpp" line="401"/>
|
||||
<source>Ctrl+F</source>
|
||||
<comment>shortcut to switch to search tab</comment>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="960"/>
|
||||
<location filename="../GUI.cpp" line="972"/>
|
||||
<source>UPnP support [OFF]</source>
|
||||
<translation>Підтримка UPnP [Вимкнено]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="965"/>
|
||||
<location filename="../GUI.cpp" line="977"/>
|
||||
<source>NAT-PMP support [ON]</source>
|
||||
<translation>Підтримка NAT-PMP [Увімкнено]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="968"/>
|
||||
<location filename="../GUI.cpp" line="980"/>
|
||||
<source>NAT-PMP support [OFF]</source>
|
||||
<translation>Підтримка NAT-PMP [Вимкнено]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1055"/>
|
||||
<location filename="../GUI.cpp" line="1067"/>
|
||||
<source>Local Peer Discovery [ON]</source>
|
||||
<translation>Пошук Локальних Пірів [Увімкнено]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1058"/>
|
||||
<location filename="../GUI.cpp" line="1070"/>
|
||||
<source>Local Peer Discovery support [OFF]</source>
|
||||
<translation>Пошук Локальних Пірів [Вимкнено]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="785"/>
|
||||
<location filename="../GUI.cpp" line="797"/>
|
||||
<source>'%1' was removed because its ratio reached the maximum value you set.</source>
|
||||
<comment>%1 is a file name</comment>
|
||||
<translation>'%1' було видалено, тому що його коефіціент досяг максимального значення встановленого вами.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1321"/>
|
||||
<location filename="../GUI.cpp" line="1339"/>
|
||||
<source>qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)</source>
|
||||
<comment>%1 is qBittorrent version</comment>
|
||||
<translation>qBittorrent %1 (Прийом: %2КіБ/с, Віддача: %3КіБ/с)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1306"/>
|
||||
<location filename="../GUI.cpp" line="1324"/>
|
||||
<source>DL: %1 KiB/s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1307"/>
|
||||
<location filename="../GUI.cpp" line="1325"/>
|
||||
<source>UP: %1 KiB/s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="291"/>
|
||||
<location filename="../GUI.cpp" line="303"/>
|
||||
<source>Ratio: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="293"/>
|
||||
<location filename="../GUI.cpp" line="305"/>
|
||||
<source>DHT: %1 nodes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -3994,9 +4004,9 @@ However, those plugins were disabled.</source>
|
|||
<translation type="obsolete">д</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../misc.h" line="322"/>
|
||||
<location filename="../misc.h" line="303"/>
|
||||
<source>Unknown</source>
|
||||
<translation>Невідомо</translation>
|
||||
<translation type="obsolete">Невідомо</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="" line="7471221"/>
|
||||
|
@ -4155,12 +4165,12 @@ However, those plugins were disabled.</source>
|
|||
<translation type="obsolete">Цей IP неправильний.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="774"/>
|
||||
<location filename="../options_imp.cpp" line="787"/>
|
||||
<source>Options were saved successfully.</source>
|
||||
<translation>Опції були успішно збережені.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1052"/>
|
||||
<location filename="../options_imp.cpp" line="1075"/>
|
||||
<source>Choose scan directory</source>
|
||||
<translation>Виберіть ддиректорію для сканування</translation>
|
||||
</message>
|
||||
|
@ -4170,7 +4180,7 @@ However, those plugins were disabled.</source>
|
|||
<translation type="obsolete">Виберіть файл ipfilter.dat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1067"/>
|
||||
<location filename="../options_imp.cpp" line="1090"/>
|
||||
<source>Choose a save directory</source>
|
||||
<translation>Виберіть директорію для збереження</translation>
|
||||
</message>
|
||||
|
@ -4186,12 +4196,12 @@ However, those plugins were disabled.</source>
|
|||
<translation type="obsolete">Не вдалося відкрити %1 у режимі читання.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1059"/>
|
||||
<location filename="../options_imp.cpp" line="1082"/>
|
||||
<source>Choose an ip filter file</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1059"/>
|
||||
<location filename="../options_imp.cpp" line="1082"/>
|
||||
<source>Filters</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
Binary file not shown.
|
@ -258,7 +258,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">服务器IP:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1800"/>
|
||||
<location filename="../options.ui" line="1819"/>
|
||||
<source>Port:</source>
|
||||
<translation>端口:</translation>
|
||||
</message>
|
||||
|
@ -268,7 +268,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">此代理服务器需要身份验证</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1839"/>
|
||||
<location filename="../options.ui" line="1858"/>
|
||||
<source>Authentication</source>
|
||||
<translation>验证</translation>
|
||||
</message>
|
||||
|
@ -278,7 +278,7 @@ Copyright © 2006 by Christophe Dumez<br>
|
|||
<translation type="obsolete">用户名:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1860"/>
|
||||
<location filename="../options.ui" line="1879"/>
|
||||
<source>Password:</source>
|
||||
<translation>密码:</translation>
|
||||
</message>
|
||||
|
@ -903,7 +903,7 @@ folder:</source>
|
|||
<translation>代理服务器:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1850"/>
|
||||
<location filename="../options.ui" line="1869"/>
|
||||
<source>Username:</source>
|
||||
<translation>用户名:</translation>
|
||||
</message>
|
||||
|
@ -988,17 +988,17 @@ folder:</source>
|
|||
<translation>RSS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1660"/>
|
||||
<location filename="../options.ui" line="1676"/>
|
||||
<source>RSS feeds refresh interval:</source>
|
||||
<translation>RSS消息种子刷新间隔:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1680"/>
|
||||
<location filename="../options.ui" line="1696"/>
|
||||
<source>minutes</source>
|
||||
<translation>分钟</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1704"/>
|
||||
<location filename="../options.ui" line="1720"/>
|
||||
<source>Maximum number of articles per feed:</source>
|
||||
<translation>每个订阅源文章数目最大值:</translation>
|
||||
</message>
|
||||
|
@ -1102,20 +1102,30 @@ folder:</source>
|
|||
<translation>假借Azureus名义避免被阻止(需重启)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1765"/>
|
||||
<location filename="../options.ui" line="1784"/>
|
||||
<source>Web UI</source>
|
||||
<translation>网络操作界面</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1778"/>
|
||||
<location filename="../options.ui" line="1797"/>
|
||||
<source>Enable Web User Interface</source>
|
||||
<translation>启用网络使用者界面</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1791"/>
|
||||
<location filename="../options.ui" line="1810"/>
|
||||
<source>HTTP Server</source>
|
||||
<translation>HTTP 服务器</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1629"/>
|
||||
<source>Enable RSS support</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options.ui" line="1639"/>
|
||||
<source>RSS settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>DownloadingTorrents</name>
|
||||
|
@ -1429,7 +1439,7 @@ wait...</comment>
|
|||
<context>
|
||||
<name>GUI</name>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="716"/>
|
||||
<location filename="../GUI.cpp" line="728"/>
|
||||
<source>Open Torrent Files</source>
|
||||
<translation>打开Torrent文件</translation>
|
||||
</message>
|
||||
|
@ -1451,12 +1461,12 @@ list?</source>
|
|||
<translation type="obsolete">确定删除下载列表中的所有文件?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="826"/>
|
||||
<location filename="../GUI.cpp" line="838"/>
|
||||
<source>&Yes</source>
|
||||
<translation>&是</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="826"/>
|
||||
<location filename="../GUI.cpp" line="838"/>
|
||||
<source>&No</source>
|
||||
<translation>&否</translation>
|
||||
</message>
|
||||
|
@ -1477,7 +1487,7 @@ download list?</source>
|
|||
<translation type="obsolete">开始</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1109"/>
|
||||
<location filename="../GUI.cpp" line="1127"/>
|
||||
<source>Finished</source>
|
||||
<translation>完成</translation>
|
||||
</message>
|
||||
|
@ -1532,7 +1542,7 @@ download list?</source>
|
|||
<translation type="obsolete">无法创建文档:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="717"/>
|
||||
<location filename="../GUI.cpp" line="729"/>
|
||||
<source>Torrent Files</source>
|
||||
<translation>Torrent文件</translation>
|
||||
</message>
|
||||
|
@ -1581,7 +1591,7 @@ download list?</source>
|
|||
<translation type="obsolete"> 使用端口:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="824"/>
|
||||
<location filename="../GUI.cpp" line="836"/>
|
||||
<source>Are you sure? -- qBittorrent</source>
|
||||
<translation>确定? -- qBittorrent</translation>
|
||||
</message>
|
||||
|
@ -1900,7 +1910,7 @@ download list and in hard drive?</source>
|
|||
<translation type="obsolete">确定从硬盘及下载列表中删除所选中的项目?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="355"/>
|
||||
<location filename="../GUI.cpp" line="367"/>
|
||||
<source>Download finished</source>
|
||||
<translation> 下载完毕</translation>
|
||||
</message>
|
||||
|
@ -1921,23 +1931,23 @@ download list and in hard drive?</source>
|
|||
<translation type="obsolete">完整种子/不完整种子</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="908"/>
|
||||
<location filename="../GUI.cpp" line="920"/>
|
||||
<source>qBittorrent %1</source>
|
||||
<comment>e.g: qBittorrent v0.x</comment>
|
||||
<translation>qBittorrent %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>Connection status:</source>
|
||||
<translation>连接状态:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>Offline</source>
|
||||
<translation>离线</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1364"/>
|
||||
<location filename="../GUI.cpp" line="1382"/>
|
||||
<source>No peers found...</source>
|
||||
<translation>找不到资源...</translation>
|
||||
</message>
|
||||
|
@ -2002,18 +2012,18 @@ download list and in hard drive?</source>
|
|||
<translation type="obsolete">qBittorrent %1开始.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1341"/>
|
||||
<location filename="../GUI.cpp" line="1359"/>
|
||||
<source>qBittorrent</source>
|
||||
<translation>qBittorrent</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1344"/>
|
||||
<location filename="../GUI.cpp" line="1362"/>
|
||||
<source>DL speed: %1 KiB/s</source>
|
||||
<comment>e.g: Download speed: 10 KiB/s</comment>
|
||||
<translation>下载速度: %1 KiB/s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1347"/>
|
||||
<location filename="../GUI.cpp" line="1365"/>
|
||||
<source>UP speed: %1 KiB/s</source>
|
||||
<comment>e.g: Upload speed: 10 KiB/s</comment>
|
||||
<translation> 上传速度: %1 KiB/s</translation>
|
||||
|
@ -2038,12 +2048,12 @@ download list and in hard drive?</source>
|
|||
<translation type="obsolete">等待中</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="611"/>
|
||||
<location filename="../GUI.cpp" line="623"/>
|
||||
<source>Are you sure you want to quit?</source>
|
||||
<translation>确实要退出吗?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="839"/>
|
||||
<location filename="../GUI.cpp" line="851"/>
|
||||
<source>'%1' was removed.</source>
|
||||
<comment>'xxx.avi' was removed.</comment>
|
||||
<translation>'%1'已移除.</translation>
|
||||
|
@ -2090,12 +2100,12 @@ list.</comment>
|
|||
使用端口:'%1'</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1195"/>
|
||||
<location filename="../GUI.cpp" line="1213"/>
|
||||
<source>All downloads were paused.</source>
|
||||
<translation>所有下载已暂停.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1221"/>
|
||||
<location filename="../GUI.cpp" line="1239"/>
|
||||
<source>'%1' paused.</source>
|
||||
<comment>xxx.avi paused.</comment>
|
||||
<translation>'%1'暂停.</translation>
|
||||
|
@ -2107,24 +2117,24 @@ list.</comment>
|
|||
<translation type="obsolete">连接中...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1254"/>
|
||||
<location filename="../GUI.cpp" line="1272"/>
|
||||
<source>All downloads were resumed.</source>
|
||||
<translation>重新开始所有下载.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1280"/>
|
||||
<location filename="../GUI.cpp" line="1298"/>
|
||||
<source>'%1' resumed.</source>
|
||||
<comment>e.g: xxx.avi resumed.</comment>
|
||||
<translation>'%1'重新开始.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="355"/>
|
||||
<location filename="../GUI.cpp" line="367"/>
|
||||
<source>%1 has finished downloading.</source>
|
||||
<comment>e.g: xxx.avi has finished downloading.</comment>
|
||||
<translation> '%1'下载完毕.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="364"/>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<source>I/O Error</source>
|
||||
<comment>i.e: Input/Output Error</comment>
|
||||
<translation>输入/输出错误</translation>
|
||||
|
@ -2138,23 +2148,23 @@ The disk is probably full, download has been paused</comment>
|
|||
<translation type="obsolete">读或写%1过程中出现错误.磁盘已满,下载被暂停</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>Connection Status:</source>
|
||||
<translation>连接状态:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1355"/>
|
||||
<location filename="../GUI.cpp" line="1373"/>
|
||||
<source>Online</source>
|
||||
<translation>联机</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>Firewalled?</source>
|
||||
<comment>i.e: Behind a firewall/router?</comment>
|
||||
<translation>存在防火墙?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1360"/>
|
||||
<location filename="../GUI.cpp" line="1378"/>
|
||||
<source>No incoming connections...</source>
|
||||
<translation>无对内连接...</translation>
|
||||
</message>
|
||||
|
@ -2195,50 +2205,50 @@ paused.</comment>
|
|||
<translation type="obsolete">出现错误(磁盘已满?),'%1'暂停.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="165"/>
|
||||
<location filename="../GUI.cpp" line="153"/>
|
||||
<source>Search</source>
|
||||
<translation>搜索</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="169"/>
|
||||
<location filename="../GUI.cpp" line="279"/>
|
||||
<source>RSS</source>
|
||||
<translation>RSS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="935"/>
|
||||
<location filename="../GUI.cpp" line="947"/>
|
||||
<source>qBittorrent is bind to port: %1</source>
|
||||
<comment>e.g: qBittorrent is bind to port: 1666</comment>
|
||||
<translation>qBittorrent 绑定端口:%1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1036"/>
|
||||
<location filename="../GUI.cpp" line="1048"/>
|
||||
<source>DHT support [ON], port: %1</source>
|
||||
<translation>DHT 支持 [开], port: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1042"/>
|
||||
<location filename="../GUI.cpp" line="1054"/>
|
||||
<source>DHT support [OFF]</source>
|
||||
<translation>DHT 支持[关]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1046"/>
|
||||
<location filename="../GUI.cpp" line="1058"/>
|
||||
<source>PeX support [ON]</source>
|
||||
<translation>PeX 支持[ON]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1050"/>
|
||||
<location filename="../GUI.cpp" line="1062"/>
|
||||
<source>PeX support [OFF]</source>
|
||||
<translation>PeX 支持[关]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="612"/>
|
||||
<location filename="../GUI.cpp" line="624"/>
|
||||
<source>The download list is not empty.
|
||||
Are you sure you want to quit qBittorrent?</source>
|
||||
<translation>下载列表不为空
|
||||
您确定要离开qBittorrent吗?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1104"/>
|
||||
<location filename="../GUI.cpp" line="1122"/>
|
||||
<source>Downloads</source>
|
||||
<translation>下载</translation>
|
||||
</message>
|
||||
|
@ -2249,7 +2259,7 @@ finished list?</source>
|
|||
<translation type="obsolete">您确定要删除完成列表中选中的项目吗?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="957"/>
|
||||
<location filename="../GUI.cpp" line="969"/>
|
||||
<source>UPnP support [ON]</source>
|
||||
<translation>UPnP 支持[开]</translation>
|
||||
</message>
|
||||
|
@ -2260,17 +2270,17 @@ is against the law.</source>
|
|||
<translation type="obsolete">注意,在未经允许情况下共享有版权的材料是违法的.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1070"/>
|
||||
<location filename="../GUI.cpp" line="1082"/>
|
||||
<source>Encryption support [ON]</source>
|
||||
<translation>加密支持[开]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1075"/>
|
||||
<location filename="../GUI.cpp" line="1087"/>
|
||||
<source>Encryption support [FORCED]</source>
|
||||
<translation>加密支持[强制]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1080"/>
|
||||
<location filename="../GUI.cpp" line="1092"/>
|
||||
<source>Encryption support [OFF]</source>
|
||||
<translation>加密支持[关]</translation>
|
||||
</message>
|
||||
|
@ -2289,13 +2299,13 @@ color='red'>%1</font>
|
|||
<translation type="obsolete"> 比率</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="383"/>
|
||||
<location filename="../GUI.cpp" line="395"/>
|
||||
<source>Alt+1</source>
|
||||
<comment>shortcut to switch to first tab</comment>
|
||||
<translation>Alt+1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="385"/>
|
||||
<location filename="../GUI.cpp" line="397"/>
|
||||
<source>Alt+2</source>
|
||||
<comment>shortcut to switch to second tab</comment>
|
||||
<translation>Alt+2</translation>
|
||||
|
@ -2307,18 +2317,18 @@ color='red'>%1</font>
|
|||
<translation type="obsolete">Alt+3, Ctrl+F</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="391"/>
|
||||
<location filename="../GUI.cpp" line="403"/>
|
||||
<source>Alt+4</source>
|
||||
<comment>shortcut to switch to fourth tab</comment>
|
||||
<translation>Alt+4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="459"/>
|
||||
<location filename="../GUI.cpp" line="471"/>
|
||||
<source>Url download error</source>
|
||||
<translation>网址下载错误</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="459"/>
|
||||
<location filename="../GUI.cpp" line="471"/>
|
||||
<source>Couldn't download file at url: %1, reason: %2.</source>
|
||||
<translation>无法在网址:%1下载文件,原因:%2.</translation>
|
||||
</message>
|
||||
|
@ -2342,7 +2352,7 @@ finished list and from hard drive?</source>
|
|||
<translation type="obsolete">您确定要从完成列表和硬盘中删除选中的项目吗?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="779"/>
|
||||
<location filename="../GUI.cpp" line="791"/>
|
||||
<source>'%1' was removed permanently.</source>
|
||||
<comment>'xxx.avi' was removed permanently.</comment>
|
||||
<translation>'%1'已永久移除.</translation>
|
||||
|
@ -2354,39 +2364,39 @@ finished list and from hard drive?</source>
|
|||
消息:%2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="387"/>
|
||||
<location filename="../GUI.cpp" line="399"/>
|
||||
<source>Alt+3</source>
|
||||
<comment>shortcut to switch to third tab</comment>
|
||||
<translation>Alt+3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="389"/>
|
||||
<location filename="../GUI.cpp" line="401"/>
|
||||
<source>Ctrl+F</source>
|
||||
<comment>shortcut to switch to search tab</comment>
|
||||
<translation>Ctrl+F</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="960"/>
|
||||
<location filename="../GUI.cpp" line="972"/>
|
||||
<source>UPnP support [OFF]</source>
|
||||
<translation>UPnP 支持[关]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="965"/>
|
||||
<location filename="../GUI.cpp" line="977"/>
|
||||
<source>NAT-PMP support [ON]</source>
|
||||
<translation>NAT-PMP 支持[开]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="968"/>
|
||||
<location filename="../GUI.cpp" line="980"/>
|
||||
<source>NAT-PMP support [OFF]</source>
|
||||
<translation>NAT-PMP 支持[关]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1055"/>
|
||||
<location filename="../GUI.cpp" line="1067"/>
|
||||
<source>Local Peer Discovery [ON]</source>
|
||||
<translation>本地资源搜索[开]</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1058"/>
|
||||
<location filename="../GUI.cpp" line="1070"/>
|
||||
<source>Local Peer Discovery support [OFF]</source>
|
||||
<translation>本地资源搜索支持[关]</translation>
|
||||
</message>
|
||||
|
@ -2398,67 +2408,67 @@ maximum value you set.</source>
|
|||
<translation type="obsolete">'%1'被移除因为它的比率达到您设置的最大值.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1321"/>
|
||||
<location filename="../GUI.cpp" line="1339"/>
|
||||
<source>qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)</source>
|
||||
<comment>%1 is qBittorrent version</comment>
|
||||
<translation>qBittorrent %1 (下载: %2KiB/s, 上传:
|
||||
%3KiB/s)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="364"/>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<source>An error occured when trying to read or write %1. The disk is probably full, download has been paused</source>
|
||||
<comment>e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused</comment>
|
||||
<translation>读或写%1过程中出现错误.磁盘可能已满,下载被暂停</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="376"/>
|
||||
<location filename="../GUI.cpp" line="388"/>
|
||||
<source>An error occured (full disk?), '%1' paused.</source>
|
||||
<comment>e.g: An error occured (full disk?), 'xxx.avi' paused.</comment>
|
||||
<translation>出现错误(磁盘已满?),'%1'暂停.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="758"/>
|
||||
<location filename="../GUI.cpp" line="770"/>
|
||||
<source>Are you sure you want to delete the selected item(s) from download list and from hard drive?</source>
|
||||
<translation>您确定要从下载列表和硬盘中删除选中的项目吗?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="765"/>
|
||||
<location filename="../GUI.cpp" line="777"/>
|
||||
<source>Are you sure you want to delete the selected item(s) from finished list and from hard drive?</source>
|
||||
<translation>您确定要从完成列表和硬盘中删除选中的项目吗?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="785"/>
|
||||
<location filename="../GUI.cpp" line="797"/>
|
||||
<source>'%1' was removed because its ratio reached the maximum value you set.</source>
|
||||
<comment>%1 is a file name</comment>
|
||||
<translation>'%1'被移除因为它的比率达到您设置的最大值.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="818"/>
|
||||
<location filename="../GUI.cpp" line="830"/>
|
||||
<source>Are you sure you want to delete the selected item(s) in download list?</source>
|
||||
<translation>您确定要删除下载列表中选中的项目吗?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="825"/>
|
||||
<location filename="../GUI.cpp" line="837"/>
|
||||
<source>Are you sure you want to delete the selected item(s) in finished list?</source>
|
||||
<translation>您确定要删除完成列表中选中的项目吗?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1306"/>
|
||||
<location filename="../GUI.cpp" line="1324"/>
|
||||
<source>DL: %1 KiB/s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="1307"/>
|
||||
<location filename="../GUI.cpp" line="1325"/>
|
||||
<source>UP: %1 KiB/s</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="291"/>
|
||||
<location filename="../GUI.cpp" line="303"/>
|
||||
<source>Ratio: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="293"/>
|
||||
<location filename="../GUI.cpp" line="305"/>
|
||||
<source>DHT: %1 nodes</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -4196,9 +4206,9 @@ However, those plugins were disabled.</source>
|
|||
<translation type="obsolete">小时</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../misc.h" line="322"/>
|
||||
<location filename="../misc.h" line="303"/>
|
||||
<source>Unknown</source>
|
||||
<translation>未知</translation>
|
||||
<translation type="obsolete">未知</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="misc.h" line="220"/>
|
||||
|
@ -4351,12 +4361,12 @@ However, those plugins were disabled.</source>
|
|||
<translation type="obsolete">此IP无效.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="774"/>
|
||||
<location filename="../options_imp.cpp" line="787"/>
|
||||
<source>Options were saved successfully.</source>
|
||||
<translation>选项保存成功.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1052"/>
|
||||
<location filename="../options_imp.cpp" line="1075"/>
|
||||
<source>Choose scan directory</source>
|
||||
<translation>选择监视目录</translation>
|
||||
</message>
|
||||
|
@ -4366,7 +4376,7 @@ However, those plugins were disabled.</source>
|
|||
<translation type="obsolete">选择ipfilter.dat文件</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1067"/>
|
||||
<location filename="../options_imp.cpp" line="1090"/>
|
||||
<source>Choose a save directory</source>
|
||||
<translation>保存到</translation>
|
||||
</message>
|
||||
|
@ -4382,12 +4392,12 @@ However, those plugins were disabled.</source>
|
|||
<translation type="obsolete">无法在读状态下打开%1.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1059"/>
|
||||
<location filename="../options_imp.cpp" line="1082"/>
|
||||
<source>Choose an ip filter file</source>
|
||||
<translation>选择ip过滤文件</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../options_imp.cpp" line="1059"/>
|
||||
<location filename="../options_imp.cpp" line="1082"/>
|
||||
<source>Filters</source>
|
||||
<translation>过滤器</translation>
|
||||
</message>
|
||||
|
|
|
@ -1562,7 +1562,7 @@
|
|||
<iconset resource="icons.qrc" >
|
||||
<normaloff>:/Icons/configure.png</normaloff>:/Icons/configure.png</iconset>
|
||||
</attribute>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_7" >
|
||||
<layout class="QVBoxLayout" name="verticalLayout_8" >
|
||||
<item>
|
||||
<widget class="QGroupBox" name="filterBox" >
|
||||
<property name="enabled" >
|
||||
|
@ -1756,6 +1756,65 @@
|
|||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QGroupBox" name="groupQueueing" >
|
||||
<property name="title" >
|
||||
<string>Download queueing</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_7" >
|
||||
<item>
|
||||
<widget class="QCheckBox" name="checkEnableQueueing" >
|
||||
<property name="text" >
|
||||
<string>Enable queueing system</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_4" >
|
||||
<item>
|
||||
<widget class="QLabel" name="label_max_active" >
|
||||
<property name="enabled" >
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="text" >
|
||||
<string>Maximum active downloads:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QSpinBox" name="spinMaxActiveDownloads" >
|
||||
<property name="enabled" >
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="minimum" >
|
||||
<number>1</number>
|
||||
</property>
|
||||
<property name="maximum" >
|
||||
<number>999</number>
|
||||
</property>
|
||||
<property name="value" >
|
||||
<number>3</number>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<spacer name="horizontalSpacer_2" >
|
||||
<property name="orientation" >
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0" >
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<spacer name="verticalSpacer" >
|
||||
<property name="orientation" >
|
||||
|
|
|
@ -143,6 +143,7 @@ options_imp::options_imp(QWidget *parent):QDialog(parent){
|
|||
// Misc tab
|
||||
connect(checkIPFilter, SIGNAL(stateChanged(int)), this, SLOT(enableFilter(int)));
|
||||
connect(checkEnableRSS, SIGNAL(stateChanged(int)), this, SLOT(enableRSS(int)));
|
||||
connect(checkEnableQueueing, SIGNAL(stateChanged(int)), this, SLOT(enableQueueingSystem(int)));
|
||||
// Web UI tab
|
||||
connect(checkWebUi, SIGNAL(toggled(bool)), this, SLOT(enableWebUi(bool)));
|
||||
|
||||
|
@ -207,6 +208,8 @@ options_imp::options_imp(QWidget *parent):QDialog(parent){
|
|||
connect(spinRSSRefresh, SIGNAL(valueChanged(QString)), this, SLOT(enableApplyButton()));
|
||||
connect(spinRSSMaxArticlesPerFeed, SIGNAL(valueChanged(QString)), this, SLOT(enableApplyButton()));
|
||||
connect(checkEnableRSS, SIGNAL(stateChanged(int)), this, SLOT(enableApplyButton()));
|
||||
connect(checkEnableQueueing, SIGNAL(stateChanged(int)), this, SLOT(enableApplyButton()));
|
||||
connect(spinMaxActiveDownloads, SIGNAL(valueChanged(QString)), this, SLOT(enableApplyButton()));
|
||||
// Web UI tab
|
||||
connect(checkWebUi, SIGNAL(toggled(bool)), this, SLOT(enableApplyButton()));
|
||||
connect(spinWebUiPort, SIGNAL(valueChanged(int)), this, SLOT(enableApplyButton()));
|
||||
|
@ -347,6 +350,12 @@ void options_imp::saveOptions(){
|
|||
settings.setValue(QString::fromUtf8("RSSMaxArticlesPerFeed"), spinRSSMaxArticlesPerFeed->value());
|
||||
// End RSS preferences
|
||||
settings.endGroup();
|
||||
// Queueing system
|
||||
settings.beginGroup("Queueing");
|
||||
settings.setValue(QString::fromUtf8("QueueingEnabled"), isQueueingSystemEnabled());
|
||||
settings.setValue(QString::fromUtf8("MaxActiveDownloads"), spinMaxActiveDownloads->value());
|
||||
// End Queueing system preferences
|
||||
settings.endGroup();
|
||||
// Web UI
|
||||
settings.beginGroup("WebUI");
|
||||
settings.setValue("Enabled", isWebUiEnabled());
|
||||
|
@ -620,6 +629,17 @@ void options_imp::loadOptions(){
|
|||
spinRSSMaxArticlesPerFeed->setValue(settings.value(QString::fromUtf8("RSSMaxArticlesPerFeed"), 50).toInt());
|
||||
// End RSS preferences
|
||||
settings.endGroup();
|
||||
// Queueing system preferences
|
||||
settings.beginGroup("Queueing");
|
||||
checkEnableQueueing->setChecked(settings.value("QueueingEnabled", false).toBool());
|
||||
if(isQueueingSystemEnabled()) {
|
||||
enableQueueingSystem(2); // Enable
|
||||
spinMaxActiveDownloads->setValue(settings.value(QString::fromUtf8("MaxActiveDownloads"), 3).toInt());
|
||||
} else {
|
||||
enableQueueingSystem(0); // Disable
|
||||
}
|
||||
// End Queueing system preferences
|
||||
settings.endGroup();
|
||||
// Web UI
|
||||
settings.beginGroup("WebUI");
|
||||
checkWebUi->setChecked(settings.value("Enabled", false).toBool());
|
||||
|
@ -641,6 +661,10 @@ int options_imp::getEncryptionSetting() const{
|
|||
return comboEncryption->currentIndex();
|
||||
}
|
||||
|
||||
int options_imp::getMaxActiveDownloads() const {
|
||||
return spinMaxActiveDownloads->value();
|
||||
}
|
||||
|
||||
bool options_imp::minimizeToTray() const{
|
||||
if(checkNoSystray->isChecked()) return false;
|
||||
return checkMinimizeToSysTray->isChecked();
|
||||
|
@ -663,6 +687,10 @@ bool options_imp::isDirScanEnabled() const {
|
|||
return checkScanDir->isChecked();
|
||||
}
|
||||
|
||||
bool options_imp::isQueueingSystemEnabled() const {
|
||||
return checkEnableQueueing->isChecked();
|
||||
}
|
||||
|
||||
bool options_imp::isDHTEnabled() const{
|
||||
return checkDHT->isChecked();
|
||||
}
|
||||
|
@ -822,6 +850,18 @@ void options_imp::enableMaxConnecsLimit(int checkBoxValue){
|
|||
}
|
||||
}
|
||||
|
||||
void options_imp::enableQueueingSystem(int checkBoxValue) {
|
||||
if(checkBoxValue != 2) {
|
||||
//Disable
|
||||
spinMaxActiveDownloads->setEnabled(false);
|
||||
label_max_active->setEnabled(false);
|
||||
}else{
|
||||
//enable
|
||||
spinMaxActiveDownloads->setEnabled(true);
|
||||
label_max_active->setEnabled(true);
|
||||
}
|
||||
}
|
||||
|
||||
void options_imp::enableMaxConnecsLimitPerTorrent(int checkBoxValue){
|
||||
if(checkBoxValue != 2){
|
||||
//Disable
|
||||
|
|
|
@ -107,6 +107,9 @@ class options_imp : public QDialog, private Ui::Dialog {
|
|||
// IP Filter
|
||||
bool isFilteringEnabled() const;
|
||||
QString getFilter() const;
|
||||
// Queueing system
|
||||
bool isQueueingSystemEnabled() const;
|
||||
int getMaxActiveDownloads() const;
|
||||
bool isWebUiEnabled() const;
|
||||
quint16 webUiPort() const;
|
||||
QString webUiUsername() const;
|
||||
|
@ -125,6 +128,7 @@ class options_imp : public QDialog, private Ui::Dialog {
|
|||
void enableDeleteRatio(int checkBoxValue);
|
||||
void enableFilter(int checkBoxValue);
|
||||
void enableRSS(int checkBoxValue);
|
||||
void enableQueueingSystem(int checkBoxValue);
|
||||
void setStyle(int style);
|
||||
void on_buttonBox_accepted();
|
||||
void closeEvent(QCloseEvent *e);
|
||||
|
|
Loading…
Reference in a new issue