mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-23 13:04:23 +00:00
- Program preferences are now editable from Web UI :)
This commit is contained in:
parent
b6dc5f9675
commit
3e56cf96a3
@ -340,17 +340,17 @@ void HttpConnection::respondCommand(QString command)
|
||||
BTSession->enableDHT(dht_state == 1);
|
||||
Preferences::setDHTEnabled(dht_state == 1);
|
||||
}
|
||||
int mac_connec = parser.post("mac_connec").toInt(&ok);
|
||||
int max_connec = parser.post("max_connec").toInt(&ok);
|
||||
if(ok) {
|
||||
BTSession->setMaxConnections(mac_connec);
|
||||
Preferences::setMaxConnecs(mac_connec);
|
||||
BTSession->setMaxConnections(max_connec);
|
||||
Preferences::setMaxConnecs(max_connec);
|
||||
}
|
||||
int max_connec_per_torrent = parser.post("mac_connec_per_torrent").toInt(&ok);
|
||||
int max_connec_per_torrent = parser.post("max_connec_per_torrent").toInt(&ok);
|
||||
if(ok) {
|
||||
BTSession->setMaxConnectionsPerTorrent(max_connec_per_torrent);
|
||||
Preferences::setMaxConnecsPerTorrent(max_connec_per_torrent);
|
||||
}
|
||||
int max_uploads_per_torrent = parser.post("mac_uploads_per_torrent").toInt(&ok);
|
||||
int max_uploads_per_torrent = parser.post("max_uploads_per_torrent").toInt(&ok);
|
||||
if(ok) {
|
||||
BTSession->setMaxUploadsPerTorrent(max_uploads_per_torrent);
|
||||
Preferences::setMaxUploadsPerTorrent(max_uploads_per_torrent);
|
||||
|
@ -68,6 +68,12 @@ HttpServer::HttpServer(Bittorrent *_BTSession, int msec, QObject* parent) : QTcp
|
||||
a = tr("Point to torrent file");
|
||||
a = tr("Download");
|
||||
a = tr("Are you sure you want to delete the selected torrents from the transfer list and hard disk?");
|
||||
a = tr("Download rate limit must be greater than 0 or disabled.");
|
||||
a = tr("Upload rate limit must be greater than 0 or disabled.");
|
||||
a = tr("Maximum number of connections limit must be greater than 0 or disabled.");
|
||||
a = tr("Maximum number of connections per torrent limit must be greater than 0 or disabled.");
|
||||
a = tr("Maximum number of upload slots per torrent limit must be greater than 0 or disabled.");
|
||||
a = tr("Unable to save program preferences, qBittorrent is probably unreachable.");
|
||||
}
|
||||
|
||||
HttpServer::~HttpServer()
|
||||
|
@ -1521,25 +1521,25 @@ Copyright © 2006 от Christophe Dumez<br>
|
||||
<context>
|
||||
<name>EventManager</name>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="63"/>
|
||||
<location filename="../eventmanager.cpp" line="77"/>
|
||||
<location filename="../eventmanager.cpp" line="64"/>
|
||||
<location filename="../eventmanager.cpp" line="78"/>
|
||||
<source>Working</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="66"/>
|
||||
<location filename="../eventmanager.cpp" line="67"/>
|
||||
<source>Updating...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="69"/>
|
||||
<location filename="../eventmanager.cpp" line="80"/>
|
||||
<location filename="../eventmanager.cpp" line="70"/>
|
||||
<location filename="../eventmanager.cpp" line="81"/>
|
||||
<source>Not working</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="71"/>
|
||||
<location filename="../eventmanager.cpp" line="82"/>
|
||||
<location filename="../eventmanager.cpp" line="72"/>
|
||||
<location filename="../eventmanager.cpp" line="83"/>
|
||||
<source>Not contacted yet</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -1563,33 +1563,33 @@ Copyright © 2006 от Christophe Dumez<br>
|
||||
<translation type="obsolete">Максимален</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="132"/>
|
||||
<location filename="../eventmanager.cpp" line="133"/>
|
||||
<location filename="../eventmanager.cpp" line="144"/>
|
||||
<location filename="../eventmanager.cpp" line="145"/>
|
||||
<source>this session</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="137"/>
|
||||
<location filename="../eventmanager.cpp" line="141"/>
|
||||
<location filename="../eventmanager.cpp" line="149"/>
|
||||
<location filename="../eventmanager.cpp" line="153"/>
|
||||
<source>/s</source>
|
||||
<comment>/second (i.e. per second)</comment>
|
||||
<translation type="unfinished">/с</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="144"/>
|
||||
<location filename="../eventmanager.cpp" line="156"/>
|
||||
<source>Seeded for %1</source>
|
||||
<comment>e.g. Seeded for 3m10s</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="147"/>
|
||||
<location filename="../eventmanager.cpp" line="159"/>
|
||||
<source>%1 max</source>
|
||||
<comment>e.g. 10 max</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="230"/>
|
||||
<location filename="../eventmanager.cpp" line="239"/>
|
||||
<location filename="../eventmanager.cpp" line="242"/>
|
||||
<location filename="../eventmanager.cpp" line="251"/>
|
||||
<source>%1/s</source>
|
||||
<comment>e.g. 120 KiB/s</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
@ -2911,6 +2911,36 @@ Are you sure you want to quit qBittorrent?</source>
|
||||
<source>Are you sure you want to delete the selected torrents from the transfer list and hard disk?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="71"/>
|
||||
<source>Download rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="72"/>
|
||||
<source>Upload rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="73"/>
|
||||
<source>Maximum number of connections limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="74"/>
|
||||
<source>Maximum number of connections per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="75"/>
|
||||
<source>Maximum number of upload slots per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="76"/>
|
||||
<source>Unable to save program preferences, qBittorrent is probably unreachable.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
|
@ -1273,56 +1273,56 @@ p, li { white-space: pre-wrap; }
|
||||
<context>
|
||||
<name>EventManager</name>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="63"/>
|
||||
<location filename="../eventmanager.cpp" line="77"/>
|
||||
<location filename="../eventmanager.cpp" line="64"/>
|
||||
<location filename="../eventmanager.cpp" line="78"/>
|
||||
<source>Working</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="66"/>
|
||||
<location filename="../eventmanager.cpp" line="67"/>
|
||||
<source>Updating...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="69"/>
|
||||
<location filename="../eventmanager.cpp" line="80"/>
|
||||
<location filename="../eventmanager.cpp" line="70"/>
|
||||
<location filename="../eventmanager.cpp" line="81"/>
|
||||
<source>Not working</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="71"/>
|
||||
<location filename="../eventmanager.cpp" line="82"/>
|
||||
<location filename="../eventmanager.cpp" line="72"/>
|
||||
<location filename="../eventmanager.cpp" line="83"/>
|
||||
<source>Not contacted yet</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="132"/>
|
||||
<location filename="../eventmanager.cpp" line="133"/>
|
||||
<location filename="../eventmanager.cpp" line="144"/>
|
||||
<location filename="../eventmanager.cpp" line="145"/>
|
||||
<source>this session</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="137"/>
|
||||
<location filename="../eventmanager.cpp" line="141"/>
|
||||
<location filename="../eventmanager.cpp" line="149"/>
|
||||
<location filename="../eventmanager.cpp" line="153"/>
|
||||
<source>/s</source>
|
||||
<comment>/second (i.e. per second)</comment>
|
||||
<translation type="unfinished">/s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="144"/>
|
||||
<location filename="../eventmanager.cpp" line="156"/>
|
||||
<source>Seeded for %1</source>
|
||||
<comment>e.g. Seeded for 3m10s</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="147"/>
|
||||
<location filename="../eventmanager.cpp" line="159"/>
|
||||
<source>%1 max</source>
|
||||
<comment>e.g. 10 max</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="230"/>
|
||||
<location filename="../eventmanager.cpp" line="239"/>
|
||||
<location filename="../eventmanager.cpp" line="242"/>
|
||||
<location filename="../eventmanager.cpp" line="251"/>
|
||||
<source>%1/s</source>
|
||||
<comment>e.g. 120 KiB/s</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
@ -2368,6 +2368,36 @@ Are you sure you want to quit qBittorrent?</source>
|
||||
<source>Are you sure you want to delete the selected torrents from the transfer list and hard disk?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="71"/>
|
||||
<source>Download rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="72"/>
|
||||
<source>Upload rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="73"/>
|
||||
<source>Maximum number of connections limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="74"/>
|
||||
<source>Maximum number of connections per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="75"/>
|
||||
<source>Maximum number of upload slots per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="76"/>
|
||||
<source>Unable to save program preferences, qBittorrent is probably unreachable.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
|
@ -1128,25 +1128,25 @@ Copyright © 2006 by Christophe Dumez<br>
|
||||
<context>
|
||||
<name>EventManager</name>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="63"/>
|
||||
<location filename="../eventmanager.cpp" line="77"/>
|
||||
<location filename="../eventmanager.cpp" line="64"/>
|
||||
<location filename="../eventmanager.cpp" line="78"/>
|
||||
<source>Working</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="66"/>
|
||||
<location filename="../eventmanager.cpp" line="67"/>
|
||||
<source>Updating...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="69"/>
|
||||
<location filename="../eventmanager.cpp" line="80"/>
|
||||
<location filename="../eventmanager.cpp" line="70"/>
|
||||
<location filename="../eventmanager.cpp" line="81"/>
|
||||
<source>Not working</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="71"/>
|
||||
<location filename="../eventmanager.cpp" line="82"/>
|
||||
<location filename="../eventmanager.cpp" line="72"/>
|
||||
<location filename="../eventmanager.cpp" line="83"/>
|
||||
<source>Not contacted yet</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -1170,33 +1170,33 @@ Copyright © 2006 by Christophe Dumez<br>
|
||||
<translation type="obsolete">Maximální</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="132"/>
|
||||
<location filename="../eventmanager.cpp" line="133"/>
|
||||
<location filename="../eventmanager.cpp" line="144"/>
|
||||
<location filename="../eventmanager.cpp" line="145"/>
|
||||
<source>this session</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="137"/>
|
||||
<location filename="../eventmanager.cpp" line="141"/>
|
||||
<location filename="../eventmanager.cpp" line="149"/>
|
||||
<location filename="../eventmanager.cpp" line="153"/>
|
||||
<source>/s</source>
|
||||
<comment>/second (i.e. per second)</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="144"/>
|
||||
<location filename="../eventmanager.cpp" line="156"/>
|
||||
<source>Seeded for %1</source>
|
||||
<comment>e.g. Seeded for 3m10s</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="147"/>
|
||||
<location filename="../eventmanager.cpp" line="159"/>
|
||||
<source>%1 max</source>
|
||||
<comment>e.g. 10 max</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="230"/>
|
||||
<location filename="../eventmanager.cpp" line="239"/>
|
||||
<location filename="../eventmanager.cpp" line="242"/>
|
||||
<location filename="../eventmanager.cpp" line="251"/>
|
||||
<source>%1/s</source>
|
||||
<comment>e.g. 120 KiB/s</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
@ -1976,6 +1976,36 @@ Are you sure you want to quit qBittorrent?</source>
|
||||
<source>Are you sure you want to delete the selected torrents from the transfer list and hard disk?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="71"/>
|
||||
<source>Download rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="72"/>
|
||||
<source>Upload rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="73"/>
|
||||
<source>Maximum number of connections limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="74"/>
|
||||
<source>Maximum number of connections per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="75"/>
|
||||
<source>Maximum number of upload slots per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="76"/>
|
||||
<source>Unable to save program preferences, qBittorrent is probably unreachable.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
|
@ -1178,56 +1178,56 @@ Copyright © 2006 by Christophe Dumez<br>
|
||||
<context>
|
||||
<name>EventManager</name>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="63"/>
|
||||
<location filename="../eventmanager.cpp" line="77"/>
|
||||
<location filename="../eventmanager.cpp" line="64"/>
|
||||
<location filename="../eventmanager.cpp" line="78"/>
|
||||
<source>Working</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="66"/>
|
||||
<location filename="../eventmanager.cpp" line="67"/>
|
||||
<source>Updating...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="69"/>
|
||||
<location filename="../eventmanager.cpp" line="80"/>
|
||||
<location filename="../eventmanager.cpp" line="70"/>
|
||||
<location filename="../eventmanager.cpp" line="81"/>
|
||||
<source>Not working</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="71"/>
|
||||
<location filename="../eventmanager.cpp" line="82"/>
|
||||
<location filename="../eventmanager.cpp" line="72"/>
|
||||
<location filename="../eventmanager.cpp" line="83"/>
|
||||
<source>Not contacted yet</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="132"/>
|
||||
<location filename="../eventmanager.cpp" line="133"/>
|
||||
<location filename="../eventmanager.cpp" line="144"/>
|
||||
<location filename="../eventmanager.cpp" line="145"/>
|
||||
<source>this session</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="137"/>
|
||||
<location filename="../eventmanager.cpp" line="141"/>
|
||||
<location filename="../eventmanager.cpp" line="149"/>
|
||||
<location filename="../eventmanager.cpp" line="153"/>
|
||||
<source>/s</source>
|
||||
<comment>/second (i.e. per second)</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="144"/>
|
||||
<location filename="../eventmanager.cpp" line="156"/>
|
||||
<source>Seeded for %1</source>
|
||||
<comment>e.g. Seeded for 3m10s</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="147"/>
|
||||
<location filename="../eventmanager.cpp" line="159"/>
|
||||
<source>%1 max</source>
|
||||
<comment>e.g. 10 max</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="230"/>
|
||||
<location filename="../eventmanager.cpp" line="239"/>
|
||||
<location filename="../eventmanager.cpp" line="242"/>
|
||||
<location filename="../eventmanager.cpp" line="251"/>
|
||||
<source>%1/s</source>
|
||||
<comment>e.g. 120 KiB/s</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
@ -2095,6 +2095,36 @@ Are you sure you want to quit qBittorrent?</source>
|
||||
<source>Are you sure you want to delete the selected torrents from the transfer list and hard disk?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="71"/>
|
||||
<source>Download rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="72"/>
|
||||
<source>Upload rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="73"/>
|
||||
<source>Maximum number of connections limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="74"/>
|
||||
<source>Maximum number of connections per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="75"/>
|
||||
<source>Maximum number of upload slots per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="76"/>
|
||||
<source>Unable to save program preferences, qBittorrent is probably unreachable.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
|
@ -1451,25 +1451,25 @@ qBittorrent beobachtet das Verzeichniss und starten den Download von vorhandenen
|
||||
<context>
|
||||
<name>EventManager</name>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="63"/>
|
||||
<location filename="../eventmanager.cpp" line="77"/>
|
||||
<location filename="../eventmanager.cpp" line="64"/>
|
||||
<location filename="../eventmanager.cpp" line="78"/>
|
||||
<source>Working</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="66"/>
|
||||
<location filename="../eventmanager.cpp" line="67"/>
|
||||
<source>Updating...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="69"/>
|
||||
<location filename="../eventmanager.cpp" line="80"/>
|
||||
<location filename="../eventmanager.cpp" line="70"/>
|
||||
<location filename="../eventmanager.cpp" line="81"/>
|
||||
<source>Not working</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="71"/>
|
||||
<location filename="../eventmanager.cpp" line="82"/>
|
||||
<location filename="../eventmanager.cpp" line="72"/>
|
||||
<location filename="../eventmanager.cpp" line="83"/>
|
||||
<source>Not contacted yet</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -1493,33 +1493,33 @@ qBittorrent beobachtet das Verzeichniss und starten den Download von vorhandenen
|
||||
<translation type="obsolete">Maximum</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="132"/>
|
||||
<location filename="../eventmanager.cpp" line="133"/>
|
||||
<location filename="../eventmanager.cpp" line="144"/>
|
||||
<location filename="../eventmanager.cpp" line="145"/>
|
||||
<source>this session</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="137"/>
|
||||
<location filename="../eventmanager.cpp" line="141"/>
|
||||
<location filename="../eventmanager.cpp" line="149"/>
|
||||
<location filename="../eventmanager.cpp" line="153"/>
|
||||
<source>/s</source>
|
||||
<comment>/second (i.e. per second)</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="144"/>
|
||||
<location filename="../eventmanager.cpp" line="156"/>
|
||||
<source>Seeded for %1</source>
|
||||
<comment>e.g. Seeded for 3m10s</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="147"/>
|
||||
<location filename="../eventmanager.cpp" line="159"/>
|
||||
<source>%1 max</source>
|
||||
<comment>e.g. 10 max</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="230"/>
|
||||
<location filename="../eventmanager.cpp" line="239"/>
|
||||
<location filename="../eventmanager.cpp" line="242"/>
|
||||
<location filename="../eventmanager.cpp" line="251"/>
|
||||
<source>%1/s</source>
|
||||
<comment>e.g. 120 KiB/s</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
@ -2878,6 +2878,36 @@ Are you sure you want to quit qBittorrent?</source>
|
||||
<source>Are you sure you want to delete the selected torrents from the transfer list and hard disk?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="71"/>
|
||||
<source>Download rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="72"/>
|
||||
<source>Upload rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="73"/>
|
||||
<source>Maximum number of connections limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="74"/>
|
||||
<source>Maximum number of connections per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="75"/>
|
||||
<source>Maximum number of upload slots per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="76"/>
|
||||
<source>Unable to save program preferences, qBittorrent is probably unreachable.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
|
@ -1544,56 +1544,56 @@ Copyright © 2006 από τον Christophe Dumez<br>
|
||||
<context>
|
||||
<name>EventManager</name>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="63"/>
|
||||
<location filename="../eventmanager.cpp" line="77"/>
|
||||
<location filename="../eventmanager.cpp" line="64"/>
|
||||
<location filename="../eventmanager.cpp" line="78"/>
|
||||
<source>Working</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="66"/>
|
||||
<location filename="../eventmanager.cpp" line="67"/>
|
||||
<source>Updating...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="69"/>
|
||||
<location filename="../eventmanager.cpp" line="80"/>
|
||||
<location filename="../eventmanager.cpp" line="70"/>
|
||||
<location filename="../eventmanager.cpp" line="81"/>
|
||||
<source>Not working</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="71"/>
|
||||
<location filename="../eventmanager.cpp" line="82"/>
|
||||
<location filename="../eventmanager.cpp" line="72"/>
|
||||
<location filename="../eventmanager.cpp" line="83"/>
|
||||
<source>Not contacted yet</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="132"/>
|
||||
<location filename="../eventmanager.cpp" line="133"/>
|
||||
<location filename="../eventmanager.cpp" line="144"/>
|
||||
<location filename="../eventmanager.cpp" line="145"/>
|
||||
<source>this session</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="137"/>
|
||||
<location filename="../eventmanager.cpp" line="141"/>
|
||||
<location filename="../eventmanager.cpp" line="149"/>
|
||||
<location filename="../eventmanager.cpp" line="153"/>
|
||||
<source>/s</source>
|
||||
<comment>/second (i.e. per second)</comment>
|
||||
<translation type="unfinished">/s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="144"/>
|
||||
<location filename="../eventmanager.cpp" line="156"/>
|
||||
<source>Seeded for %1</source>
|
||||
<comment>e.g. Seeded for 3m10s</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="147"/>
|
||||
<location filename="../eventmanager.cpp" line="159"/>
|
||||
<source>%1 max</source>
|
||||
<comment>e.g. 10 max</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="230"/>
|
||||
<location filename="../eventmanager.cpp" line="239"/>
|
||||
<location filename="../eventmanager.cpp" line="242"/>
|
||||
<location filename="../eventmanager.cpp" line="251"/>
|
||||
<source>%1/s</source>
|
||||
<comment>e.g. 120 KiB/s</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
@ -2961,6 +2961,36 @@ Are you sure you want to quit qBittorrent?</source>
|
||||
<source>Are you sure you want to delete the selected torrents from the transfer list and hard disk?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="71"/>
|
||||
<source>Download rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="72"/>
|
||||
<source>Upload rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="73"/>
|
||||
<source>Maximum number of connections limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="74"/>
|
||||
<source>Maximum number of connections per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="75"/>
|
||||
<source>Maximum number of upload slots per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="76"/>
|
||||
<source>Unable to save program preferences, qBittorrent is probably unreachable.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
|
@ -860,56 +860,56 @@ p, li { white-space: pre-wrap; }
|
||||
<context>
|
||||
<name>EventManager</name>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="63"/>
|
||||
<location filename="../eventmanager.cpp" line="77"/>
|
||||
<location filename="../eventmanager.cpp" line="64"/>
|
||||
<location filename="../eventmanager.cpp" line="78"/>
|
||||
<source>Working</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="66"/>
|
||||
<location filename="../eventmanager.cpp" line="67"/>
|
||||
<source>Updating...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="69"/>
|
||||
<location filename="../eventmanager.cpp" line="80"/>
|
||||
<location filename="../eventmanager.cpp" line="70"/>
|
||||
<location filename="../eventmanager.cpp" line="81"/>
|
||||
<source>Not working</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="71"/>
|
||||
<location filename="../eventmanager.cpp" line="82"/>
|
||||
<location filename="../eventmanager.cpp" line="72"/>
|
||||
<location filename="../eventmanager.cpp" line="83"/>
|
||||
<source>Not contacted yet</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="132"/>
|
||||
<location filename="../eventmanager.cpp" line="133"/>
|
||||
<location filename="../eventmanager.cpp" line="144"/>
|
||||
<location filename="../eventmanager.cpp" line="145"/>
|
||||
<source>this session</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="137"/>
|
||||
<location filename="../eventmanager.cpp" line="141"/>
|
||||
<location filename="../eventmanager.cpp" line="149"/>
|
||||
<location filename="../eventmanager.cpp" line="153"/>
|
||||
<source>/s</source>
|
||||
<comment>/second (i.e. per second)</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="144"/>
|
||||
<location filename="../eventmanager.cpp" line="156"/>
|
||||
<source>Seeded for %1</source>
|
||||
<comment>e.g. Seeded for 3m10s</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="147"/>
|
||||
<location filename="../eventmanager.cpp" line="159"/>
|
||||
<source>%1 max</source>
|
||||
<comment>e.g. 10 max</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="230"/>
|
||||
<location filename="../eventmanager.cpp" line="239"/>
|
||||
<location filename="../eventmanager.cpp" line="242"/>
|
||||
<location filename="../eventmanager.cpp" line="251"/>
|
||||
<source>%1/s</source>
|
||||
<comment>e.g. 120 KiB/s</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
@ -1410,6 +1410,36 @@ Are you sure you want to quit qBittorrent?</source>
|
||||
<source>Are you sure you want to delete the selected torrents from the transfer list and hard disk?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="71"/>
|
||||
<source>Download rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="72"/>
|
||||
<source>Upload rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="73"/>
|
||||
<source>Maximum number of connections limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="74"/>
|
||||
<source>Maximum number of connections per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="75"/>
|
||||
<source>Maximum number of upload slots per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="76"/>
|
||||
<source>Unable to save program preferences, qBittorrent is probably unreachable.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
|
@ -1440,25 +1440,25 @@ p, li { white-space: pre-wrap; }
|
||||
<context>
|
||||
<name>EventManager</name>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="63"/>
|
||||
<location filename="../eventmanager.cpp" line="77"/>
|
||||
<location filename="../eventmanager.cpp" line="64"/>
|
||||
<location filename="../eventmanager.cpp" line="78"/>
|
||||
<source>Working</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="66"/>
|
||||
<location filename="../eventmanager.cpp" line="67"/>
|
||||
<source>Updating...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="69"/>
|
||||
<location filename="../eventmanager.cpp" line="80"/>
|
||||
<location filename="../eventmanager.cpp" line="70"/>
|
||||
<location filename="../eventmanager.cpp" line="81"/>
|
||||
<source>Not working</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="71"/>
|
||||
<location filename="../eventmanager.cpp" line="82"/>
|
||||
<location filename="../eventmanager.cpp" line="72"/>
|
||||
<location filename="../eventmanager.cpp" line="83"/>
|
||||
<source>Not contacted yet</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -1482,33 +1482,33 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="obsolete">Máxima</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="132"/>
|
||||
<location filename="../eventmanager.cpp" line="133"/>
|
||||
<location filename="../eventmanager.cpp" line="144"/>
|
||||
<location filename="../eventmanager.cpp" line="145"/>
|
||||
<source>this session</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="137"/>
|
||||
<location filename="../eventmanager.cpp" line="141"/>
|
||||
<location filename="../eventmanager.cpp" line="149"/>
|
||||
<location filename="../eventmanager.cpp" line="153"/>
|
||||
<source>/s</source>
|
||||
<comment>/second (i.e. per second)</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="144"/>
|
||||
<location filename="../eventmanager.cpp" line="156"/>
|
||||
<source>Seeded for %1</source>
|
||||
<comment>e.g. Seeded for 3m10s</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="147"/>
|
||||
<location filename="../eventmanager.cpp" line="159"/>
|
||||
<source>%1 max</source>
|
||||
<comment>e.g. 10 max</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="230"/>
|
||||
<location filename="../eventmanager.cpp" line="239"/>
|
||||
<location filename="../eventmanager.cpp" line="242"/>
|
||||
<location filename="../eventmanager.cpp" line="251"/>
|
||||
<source>%1/s</source>
|
||||
<comment>e.g. 120 KiB/s</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
@ -2821,6 +2821,36 @@ Are you sure you want to quit qBittorrent?</source>
|
||||
<source>Are you sure you want to delete the selected torrents from the transfer list and hard disk?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="71"/>
|
||||
<source>Download rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="72"/>
|
||||
<source>Upload rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="73"/>
|
||||
<source>Maximum number of connections limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="74"/>
|
||||
<source>Maximum number of connections per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="75"/>
|
||||
<source>Maximum number of upload slots per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="76"/>
|
||||
<source>Unable to save program preferences, qBittorrent is probably unreachable.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
|
@ -1325,25 +1325,25 @@ p, li { white-space: pre-wrap; }
|
||||
<context>
|
||||
<name>EventManager</name>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="63"/>
|
||||
<location filename="../eventmanager.cpp" line="77"/>
|
||||
<location filename="../eventmanager.cpp" line="64"/>
|
||||
<location filename="../eventmanager.cpp" line="78"/>
|
||||
<source>Working</source>
|
||||
<translation>Työstetään</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="66"/>
|
||||
<location filename="../eventmanager.cpp" line="67"/>
|
||||
<source>Updating...</source>
|
||||
<translation>Päivitetään...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="69"/>
|
||||
<location filename="../eventmanager.cpp" line="80"/>
|
||||
<location filename="../eventmanager.cpp" line="70"/>
|
||||
<location filename="../eventmanager.cpp" line="81"/>
|
||||
<source>Not working</source>
|
||||
<translation>Ei toimi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="71"/>
|
||||
<location filename="../eventmanager.cpp" line="82"/>
|
||||
<location filename="../eventmanager.cpp" line="72"/>
|
||||
<location filename="../eventmanager.cpp" line="83"/>
|
||||
<source>Not contacted yet</source>
|
||||
<translation>Ei ole vielä yheyttä</translation>
|
||||
</message>
|
||||
@ -1367,33 +1367,33 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="obsolete">Korkein</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="132"/>
|
||||
<location filename="../eventmanager.cpp" line="133"/>
|
||||
<location filename="../eventmanager.cpp" line="144"/>
|
||||
<location filename="../eventmanager.cpp" line="145"/>
|
||||
<source>this session</source>
|
||||
<translation>tämä istunto</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="137"/>
|
||||
<location filename="../eventmanager.cpp" line="141"/>
|
||||
<location filename="../eventmanager.cpp" line="149"/>
|
||||
<location filename="../eventmanager.cpp" line="153"/>
|
||||
<source>/s</source>
|
||||
<comment>/second (i.e. per second)</comment>
|
||||
<translation>/s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="144"/>
|
||||
<location filename="../eventmanager.cpp" line="156"/>
|
||||
<source>Seeded for %1</source>
|
||||
<comment>e.g. Seeded for 3m10s</comment>
|
||||
<translation>jaettu %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="147"/>
|
||||
<location filename="../eventmanager.cpp" line="159"/>
|
||||
<source>%1 max</source>
|
||||
<comment>e.g. 10 max</comment>
|
||||
<translation>korkeintaan %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="230"/>
|
||||
<location filename="../eventmanager.cpp" line="239"/>
|
||||
<location filename="../eventmanager.cpp" line="242"/>
|
||||
<location filename="../eventmanager.cpp" line="251"/>
|
||||
<source>%1/s</source>
|
||||
<comment>e.g. 120 KiB/s</comment>
|
||||
<translation>%1/s</translation>
|
||||
@ -2562,6 +2562,36 @@ Haluatko varmasti lopettaa qBittorrentin?</translation>
|
||||
<source>Are you sure you want to delete the selected torrents from the transfer list and hard disk?</source>
|
||||
<translation>Haluatko poistaa valitut torrentit siirtolistalta ja kovalevyltä?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="71"/>
|
||||
<source>Download rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="72"/>
|
||||
<source>Upload rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="73"/>
|
||||
<source>Maximum number of connections limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="74"/>
|
||||
<source>Maximum number of connections per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="75"/>
|
||||
<source>Maximum number of upload slots per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="76"/>
|
||||
<source>Unable to save program preferences, qBittorrent is probably unreachable.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
|
@ -1564,25 +1564,25 @@ Copyright © 2006 par Christophe DUMEZ<br>
|
||||
<context>
|
||||
<name>EventManager</name>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="63"/>
|
||||
<location filename="../eventmanager.cpp" line="77"/>
|
||||
<location filename="../eventmanager.cpp" line="64"/>
|
||||
<location filename="../eventmanager.cpp" line="78"/>
|
||||
<source>Working</source>
|
||||
<translation>Fonctionne</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="66"/>
|
||||
<location filename="../eventmanager.cpp" line="67"/>
|
||||
<source>Updating...</source>
|
||||
<translation>Mise à jour...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="69"/>
|
||||
<location filename="../eventmanager.cpp" line="80"/>
|
||||
<location filename="../eventmanager.cpp" line="70"/>
|
||||
<location filename="../eventmanager.cpp" line="81"/>
|
||||
<source>Not working</source>
|
||||
<translation>Indisponible</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="71"/>
|
||||
<location filename="../eventmanager.cpp" line="82"/>
|
||||
<location filename="../eventmanager.cpp" line="72"/>
|
||||
<location filename="../eventmanager.cpp" line="83"/>
|
||||
<source>Not contacted yet</source>
|
||||
<translation>Pas encore contacté</translation>
|
||||
</message>
|
||||
@ -1606,33 +1606,33 @@ Copyright © 2006 par Christophe DUMEZ<br>
|
||||
<translation type="obsolete">Maximale</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="132"/>
|
||||
<location filename="../eventmanager.cpp" line="133"/>
|
||||
<location filename="../eventmanager.cpp" line="144"/>
|
||||
<location filename="../eventmanager.cpp" line="145"/>
|
||||
<source>this session</source>
|
||||
<translation>cette session</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="137"/>
|
||||
<location filename="../eventmanager.cpp" line="141"/>
|
||||
<location filename="../eventmanager.cpp" line="149"/>
|
||||
<location filename="../eventmanager.cpp" line="153"/>
|
||||
<source>/s</source>
|
||||
<comment>/second (i.e. per second)</comment>
|
||||
<translation>/s</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="144"/>
|
||||
<location filename="../eventmanager.cpp" line="156"/>
|
||||
<source>Seeded for %1</source>
|
||||
<comment>e.g. Seeded for 3m10s</comment>
|
||||
<translation>Complet depuis %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="147"/>
|
||||
<location filename="../eventmanager.cpp" line="159"/>
|
||||
<source>%1 max</source>
|
||||
<comment>e.g. 10 max</comment>
|
||||
<translation>%1 max</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="230"/>
|
||||
<location filename="../eventmanager.cpp" line="239"/>
|
||||
<location filename="../eventmanager.cpp" line="242"/>
|
||||
<location filename="../eventmanager.cpp" line="251"/>
|
||||
<source>%1/s</source>
|
||||
<comment>e.g. 120 KiB/s</comment>
|
||||
<translation>%1/s</translation>
|
||||
@ -3056,6 +3056,36 @@ Etes-vous certain de vouloir quitter qBittorrent ?</translation>
|
||||
<source>Are you sure you want to delete the selected torrents from the transfer list and hard disk?</source>
|
||||
<translation>Etes-vous certain de vouloir supprimer les torrents sélectionnés de la liste et du disque dur ?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="71"/>
|
||||
<source>Download rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="72"/>
|
||||
<source>Upload rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="73"/>
|
||||
<source>Maximum number of connections limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="74"/>
|
||||
<source>Maximum number of connections per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="75"/>
|
||||
<source>Maximum number of upload slots per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="76"/>
|
||||
<source>Unable to save program preferences, qBittorrent is probably unreachable.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
|
@ -1368,25 +1368,25 @@ Copyright © 2006 by Christophe Dumez<br>
|
||||
<context>
|
||||
<name>EventManager</name>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="63"/>
|
||||
<location filename="../eventmanager.cpp" line="77"/>
|
||||
<location filename="../eventmanager.cpp" line="64"/>
|
||||
<location filename="../eventmanager.cpp" line="78"/>
|
||||
<source>Working</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="66"/>
|
||||
<location filename="../eventmanager.cpp" line="67"/>
|
||||
<source>Updating...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="69"/>
|
||||
<location filename="../eventmanager.cpp" line="80"/>
|
||||
<location filename="../eventmanager.cpp" line="70"/>
|
||||
<location filename="../eventmanager.cpp" line="81"/>
|
||||
<source>Not working</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="71"/>
|
||||
<location filename="../eventmanager.cpp" line="82"/>
|
||||
<location filename="../eventmanager.cpp" line="72"/>
|
||||
<location filename="../eventmanager.cpp" line="83"/>
|
||||
<source>Not contacted yet</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -1410,33 +1410,33 @@ Copyright © 2006 by Christophe Dumez<br>
|
||||
<translation type="obsolete">Maximális</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="132"/>
|
||||
<location filename="../eventmanager.cpp" line="133"/>
|
||||
<location filename="../eventmanager.cpp" line="144"/>
|
||||
<location filename="../eventmanager.cpp" line="145"/>
|
||||
<source>this session</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="137"/>
|
||||
<location filename="../eventmanager.cpp" line="141"/>
|
||||
<location filename="../eventmanager.cpp" line="149"/>
|
||||
<location filename="../eventmanager.cpp" line="153"/>
|
||||
<source>/s</source>
|
||||
<comment>/second (i.e. per second)</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="144"/>
|
||||
<location filename="../eventmanager.cpp" line="156"/>
|
||||
<source>Seeded for %1</source>
|
||||
<comment>e.g. Seeded for 3m10s</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="147"/>
|
||||
<location filename="../eventmanager.cpp" line="159"/>
|
||||
<source>%1 max</source>
|
||||
<comment>e.g. 10 max</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="230"/>
|
||||
<location filename="../eventmanager.cpp" line="239"/>
|
||||
<location filename="../eventmanager.cpp" line="242"/>
|
||||
<location filename="../eventmanager.cpp" line="251"/>
|
||||
<source>%1/s</source>
|
||||
<comment>e.g. 120 KiB/s</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
@ -2406,6 +2406,36 @@ Are you sure you want to quit qBittorrent?</source>
|
||||
<source>Are you sure you want to delete the selected torrents from the transfer list and hard disk?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="71"/>
|
||||
<source>Download rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="72"/>
|
||||
<source>Upload rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="73"/>
|
||||
<source>Maximum number of connections limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="74"/>
|
||||
<source>Maximum number of connections per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="75"/>
|
||||
<source>Maximum number of upload slots per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="76"/>
|
||||
<source>Unable to save program preferences, qBittorrent is probably unreachable.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
|
@ -1424,25 +1424,25 @@ Copyright © 2006 by Christophe Dumez<br>
|
||||
<context>
|
||||
<name>EventManager</name>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="63"/>
|
||||
<location filename="../eventmanager.cpp" line="77"/>
|
||||
<location filename="../eventmanager.cpp" line="64"/>
|
||||
<location filename="../eventmanager.cpp" line="78"/>
|
||||
<source>Working</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="66"/>
|
||||
<location filename="../eventmanager.cpp" line="67"/>
|
||||
<source>Updating...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="69"/>
|
||||
<location filename="../eventmanager.cpp" line="80"/>
|
||||
<location filename="../eventmanager.cpp" line="70"/>
|
||||
<location filename="../eventmanager.cpp" line="81"/>
|
||||
<source>Not working</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="71"/>
|
||||
<location filename="../eventmanager.cpp" line="82"/>
|
||||
<location filename="../eventmanager.cpp" line="72"/>
|
||||
<location filename="../eventmanager.cpp" line="83"/>
|
||||
<source>Not contacted yet</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -1466,33 +1466,33 @@ Copyright © 2006 by Christophe Dumez<br>
|
||||
<translation type="obsolete">Massima</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="132"/>
|
||||
<location filename="../eventmanager.cpp" line="133"/>
|
||||
<location filename="../eventmanager.cpp" line="144"/>
|
||||
<location filename="../eventmanager.cpp" line="145"/>
|
||||
<source>this session</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="137"/>
|
||||
<location filename="../eventmanager.cpp" line="141"/>
|
||||
<location filename="../eventmanager.cpp" line="149"/>
|
||||
<location filename="../eventmanager.cpp" line="153"/>
|
||||
<source>/s</source>
|
||||
<comment>/second (i.e. per second)</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="144"/>
|
||||
<location filename="../eventmanager.cpp" line="156"/>
|
||||
<source>Seeded for %1</source>
|
||||
<comment>e.g. Seeded for 3m10s</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="147"/>
|
||||
<location filename="../eventmanager.cpp" line="159"/>
|
||||
<source>%1 max</source>
|
||||
<comment>e.g. 10 max</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="230"/>
|
||||
<location filename="../eventmanager.cpp" line="239"/>
|
||||
<location filename="../eventmanager.cpp" line="242"/>
|
||||
<location filename="../eventmanager.cpp" line="251"/>
|
||||
<source>%1/s</source>
|
||||
<comment>e.g. 120 KiB/s</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
@ -2733,6 +2733,36 @@ Are you sure you want to quit qBittorrent?</source>
|
||||
<source>Are you sure you want to delete the selected torrents from the transfer list and hard disk?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="71"/>
|
||||
<source>Download rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="72"/>
|
||||
<source>Upload rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="73"/>
|
||||
<source>Maximum number of connections limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="74"/>
|
||||
<source>Maximum number of connections per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="75"/>
|
||||
<source>Maximum number of upload slots per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="76"/>
|
||||
<source>Unable to save program preferences, qBittorrent is probably unreachable.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
|
@ -1340,25 +1340,25 @@ Copyright © 2006 by Christophe Dumez<br>
|
||||
<context>
|
||||
<name>EventManager</name>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="63"/>
|
||||
<location filename="../eventmanager.cpp" line="77"/>
|
||||
<location filename="../eventmanager.cpp" line="64"/>
|
||||
<location filename="../eventmanager.cpp" line="78"/>
|
||||
<source>Working</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="66"/>
|
||||
<location filename="../eventmanager.cpp" line="67"/>
|
||||
<source>Updating...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="69"/>
|
||||
<location filename="../eventmanager.cpp" line="80"/>
|
||||
<location filename="../eventmanager.cpp" line="70"/>
|
||||
<location filename="../eventmanager.cpp" line="81"/>
|
||||
<source>Not working</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="71"/>
|
||||
<location filename="../eventmanager.cpp" line="82"/>
|
||||
<location filename="../eventmanager.cpp" line="72"/>
|
||||
<location filename="../eventmanager.cpp" line="83"/>
|
||||
<source>Not contacted yet</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -1382,33 +1382,33 @@ Copyright © 2006 by Christophe Dumez<br>
|
||||
<translation type="obsolete">最大</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="132"/>
|
||||
<location filename="../eventmanager.cpp" line="133"/>
|
||||
<location filename="../eventmanager.cpp" line="144"/>
|
||||
<location filename="../eventmanager.cpp" line="145"/>
|
||||
<source>this session</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="137"/>
|
||||
<location filename="../eventmanager.cpp" line="141"/>
|
||||
<location filename="../eventmanager.cpp" line="149"/>
|
||||
<location filename="../eventmanager.cpp" line="153"/>
|
||||
<source>/s</source>
|
||||
<comment>/second (i.e. per second)</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="144"/>
|
||||
<location filename="../eventmanager.cpp" line="156"/>
|
||||
<source>Seeded for %1</source>
|
||||
<comment>e.g. Seeded for 3m10s</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="147"/>
|
||||
<location filename="../eventmanager.cpp" line="159"/>
|
||||
<source>%1 max</source>
|
||||
<comment>e.g. 10 max</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="230"/>
|
||||
<location filename="../eventmanager.cpp" line="239"/>
|
||||
<location filename="../eventmanager.cpp" line="242"/>
|
||||
<location filename="../eventmanager.cpp" line="251"/>
|
||||
<source>%1/s</source>
|
||||
<comment>e.g. 120 KiB/s</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
@ -2336,6 +2336,36 @@ qBittorrent を終了してもよろしいですか?</translation>
|
||||
<source>Are you sure you want to delete the selected torrents from the transfer list and hard disk?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="71"/>
|
||||
<source>Download rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="72"/>
|
||||
<source>Upload rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="73"/>
|
||||
<source>Maximum number of connections limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="74"/>
|
||||
<source>Maximum number of connections per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="75"/>
|
||||
<source>Maximum number of upload slots per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="76"/>
|
||||
<source>Unable to save program preferences, qBittorrent is probably unreachable.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
|
@ -1479,25 +1479,25 @@ list:</source>
|
||||
<context>
|
||||
<name>EventManager</name>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="63"/>
|
||||
<location filename="../eventmanager.cpp" line="77"/>
|
||||
<location filename="../eventmanager.cpp" line="64"/>
|
||||
<location filename="../eventmanager.cpp" line="78"/>
|
||||
<source>Working</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="66"/>
|
||||
<location filename="../eventmanager.cpp" line="67"/>
|
||||
<source>Updating...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="69"/>
|
||||
<location filename="../eventmanager.cpp" line="80"/>
|
||||
<location filename="../eventmanager.cpp" line="70"/>
|
||||
<location filename="../eventmanager.cpp" line="81"/>
|
||||
<source>Not working</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="71"/>
|
||||
<location filename="../eventmanager.cpp" line="82"/>
|
||||
<location filename="../eventmanager.cpp" line="72"/>
|
||||
<location filename="../eventmanager.cpp" line="83"/>
|
||||
<source>Not contacted yet</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -1521,33 +1521,33 @@ list:</source>
|
||||
<translation type="obsolete">최고</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="132"/>
|
||||
<location filename="../eventmanager.cpp" line="133"/>
|
||||
<location filename="../eventmanager.cpp" line="144"/>
|
||||
<location filename="../eventmanager.cpp" line="145"/>
|
||||
<source>this session</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="137"/>
|
||||
<location filename="../eventmanager.cpp" line="141"/>
|
||||
<location filename="../eventmanager.cpp" line="149"/>
|
||||
<location filename="../eventmanager.cpp" line="153"/>
|
||||
<source>/s</source>
|
||||
<comment>/second (i.e. per second)</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="144"/>
|
||||
<location filename="../eventmanager.cpp" line="156"/>
|
||||
<source>Seeded for %1</source>
|
||||
<comment>e.g. Seeded for 3m10s</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="147"/>
|
||||
<location filename="../eventmanager.cpp" line="159"/>
|
||||
<source>%1 max</source>
|
||||
<comment>e.g. 10 max</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="230"/>
|
||||
<location filename="../eventmanager.cpp" line="239"/>
|
||||
<location filename="../eventmanager.cpp" line="242"/>
|
||||
<location filename="../eventmanager.cpp" line="251"/>
|
||||
<source>%1/s</source>
|
||||
<comment>e.g. 120 KiB/s</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
@ -2903,6 +2903,36 @@ Are you sure you want to quit qBittorrent?</source>
|
||||
<source>Are you sure you want to delete the selected torrents from the transfer list and hard disk?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="71"/>
|
||||
<source>Download rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="72"/>
|
||||
<source>Upload rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="73"/>
|
||||
<source>Maximum number of connections limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="74"/>
|
||||
<source>Maximum number of connections per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="75"/>
|
||||
<source>Maximum number of upload slots per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="76"/>
|
||||
<source>Unable to save program preferences, qBittorrent is probably unreachable.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
|
@ -1200,56 +1200,56 @@ Copyright © 2006 av Christophe Dumez<br>
|
||||
<context>
|
||||
<name>EventManager</name>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="63"/>
|
||||
<location filename="../eventmanager.cpp" line="77"/>
|
||||
<location filename="../eventmanager.cpp" line="64"/>
|
||||
<location filename="../eventmanager.cpp" line="78"/>
|
||||
<source>Working</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="66"/>
|
||||
<location filename="../eventmanager.cpp" line="67"/>
|
||||
<source>Updating...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="69"/>
|
||||
<location filename="../eventmanager.cpp" line="80"/>
|
||||
<location filename="../eventmanager.cpp" line="70"/>
|
||||
<location filename="../eventmanager.cpp" line="81"/>
|
||||
<source>Not working</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="71"/>
|
||||
<location filename="../eventmanager.cpp" line="82"/>
|
||||
<location filename="../eventmanager.cpp" line="72"/>
|
||||
<location filename="../eventmanager.cpp" line="83"/>
|
||||
<source>Not contacted yet</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="132"/>
|
||||
<location filename="../eventmanager.cpp" line="133"/>
|
||||
<location filename="../eventmanager.cpp" line="144"/>
|
||||
<location filename="../eventmanager.cpp" line="145"/>
|
||||
<source>this session</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="137"/>
|
||||
<location filename="../eventmanager.cpp" line="141"/>
|
||||
<location filename="../eventmanager.cpp" line="149"/>
|
||||
<location filename="../eventmanager.cpp" line="153"/>
|
||||
<source>/s</source>
|
||||
<comment>/second (i.e. per second)</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="144"/>
|
||||
<location filename="../eventmanager.cpp" line="156"/>
|
||||
<source>Seeded for %1</source>
|
||||
<comment>e.g. Seeded for 3m10s</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="147"/>
|
||||
<location filename="../eventmanager.cpp" line="159"/>
|
||||
<source>%1 max</source>
|
||||
<comment>e.g. 10 max</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../eventmanager.cpp" line="230"/>
|
||||
<location filename="../eventmanager.cpp" line="239"/>
|
||||
<location filename="../eventmanager.cpp" line="242"/>
|
||||
<location filename="../eventmanager.cpp" line="251"/>
|
||||
<source>%1/s</source>
|
||||
<comment>e.g. 120 KiB/s</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
@ -2297,6 +2297,36 @@ Are you sure you want to quit qBittorrent?</source>
|
||||
<source>Are you sure you want to delete the selected torrents from the transfer list and hard disk?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="71"/>
|
||||
<source>Download rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="72"/>
|
||||
<source>Upload rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="73"/>
|
||||
<source>Maximum number of connections limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="74"/>
|
||||
<source>Maximum number of connections per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="75"/>
|
||||
<source>Maximum number of upload slots per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../httpserver.cpp" line="76"/>
|
||||
<source>Unable to save program preferences, qBittorrent is probably unreachable.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
|
@ -2562,6 +2562,30 @@ Are you sure you want to quit qBittorrent?</source>
|
||||
<source>Are you sure you want to delete the selected torrents from the transfer list and hard disk?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Download rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Upload rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Maximum number of connections limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Maximum number of connections per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Maximum number of upload slots per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Unable to save program preferences, qBittorrent is probably unreachable.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
|
@ -2584,6 +2584,30 @@ Are you sure you want to quit qBittorrent?</source>
|
||||
<source>Are you sure you want to delete the selected torrents from the transfer list and hard disk?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Download rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Upload rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Maximum number of connections limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Maximum number of connections per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Maximum number of upload slots per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Unable to save program preferences, qBittorrent is probably unreachable.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
|
@ -2481,6 +2481,30 @@ Are you sure you want to quit qBittorrent?</source>
|
||||
<source>Are you sure you want to delete the selected torrents from the transfer list and hard disk?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Download rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Upload rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Maximum number of connections limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Maximum number of connections per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Maximum number of upload slots per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Unable to save program preferences, qBittorrent is probably unreachable.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
|
@ -2481,6 +2481,30 @@ Are you sure you want to quit qBittorrent?</source>
|
||||
<source>Are you sure you want to delete the selected torrents from the transfer list and hard disk?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Download rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Upload rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Maximum number of connections limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Maximum number of connections per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Maximum number of upload slots per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Unable to save program preferences, qBittorrent is probably unreachable.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
|
@ -2408,6 +2408,30 @@ Are you sure you want to quit qBittorrent?</source>
|
||||
<source>Are you sure you want to delete the selected torrents from the transfer list and hard disk?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Download rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Upload rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Maximum number of connections limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Maximum number of connections per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Maximum number of upload slots per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Unable to save program preferences, qBittorrent is probably unreachable.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
|
@ -2570,6 +2570,30 @@ Are you sure you want to quit qBittorrent?</source>
|
||||
<source>Are you sure you want to delete the selected torrents from the transfer list and hard disk?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Download rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Upload rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Maximum number of connections limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Maximum number of connections per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Maximum number of upload slots per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Unable to save program preferences, qBittorrent is probably unreachable.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
|
@ -2500,6 +2500,30 @@ Are you sure you want to quit qBittorrent?</source>
|
||||
<source>Are you sure you want to delete the selected torrents from the transfer list and hard disk?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Download rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Upload rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Maximum number of connections limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Maximum number of connections per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Maximum number of upload slots per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Unable to save program preferences, qBittorrent is probably unreachable.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
|
@ -1554,6 +1554,30 @@ Are you sure you want to quit qBittorrent?</source>
|
||||
<source>Are you sure you want to delete the selected torrents from the transfer list and hard disk?</source>
|
||||
<translation>Är du säker på att du vill ta bort de markerade torrent-filerna från överföringslistan och hårddisken?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Download rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Upload rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Maximum number of connections limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Maximum number of connections per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Maximum number of upload slots per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Unable to save program preferences, qBittorrent is probably unreachable.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
|
@ -2555,6 +2555,30 @@ Are you sure you want to quit qBittorrent?</source>
|
||||
<source>Are you sure you want to delete the selected torrents from the transfer list and hard disk?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Download rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Upload rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Maximum number of connections limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Maximum number of connections per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Maximum number of upload slots per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Unable to save program preferences, qBittorrent is probably unreachable.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
|
@ -2429,6 +2429,30 @@ Are you sure you want to quit qBittorrent?</source>
|
||||
<source>Are you sure you want to delete the selected torrents from the transfer list and hard disk?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Download rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Upload rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Maximum number of connections limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Maximum number of connections per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Maximum number of upload slots per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Unable to save program preferences, qBittorrent is probably unreachable.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
|
@ -2699,6 +2699,30 @@ Are you sure you want to quit qBittorrent?</source>
|
||||
<source>Are you sure you want to delete the selected torrents from the transfer list and hard disk?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Download rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Upload rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Maximum number of connections limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Maximum number of connections per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Maximum number of upload slots per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Unable to save program preferences, qBittorrent is probably unreachable.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
|
@ -1648,6 +1648,30 @@ Are you sure you want to quit qBittorrent?</source>
|
||||
<source>Are you sure you want to delete the selected torrents from the transfer list and hard disk?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Download rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Upload rate limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Maximum number of connections limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Maximum number of connections per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Maximum number of upload slots per torrent limit must be greater than 0 or disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Unable to save program preferences, qBittorrent is probably unreachable.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
|
@ -2304,8 +2304,8 @@
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>620</width>
|
||||
<height>488</height>
|
||||
<width>226</width>
|
||||
<height>123</height>
|
||||
</rect>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_21">
|
||||
@ -2401,8 +2401,8 @@
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>620</width>
|
||||
<height>488</height>
|
||||
<width>218</width>
|
||||
<height>220</height>
|
||||
</rect>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_23">
|
||||
@ -2565,8 +2565,8 @@
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>620</width>
|
||||
<height>488</height>
|
||||
<width>451</width>
|
||||
<height>195</height>
|
||||
</rect>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_24">
|
||||
|
@ -55,9 +55,68 @@
|
||||
<script type="text/javascript">
|
||||
applyPreferences = function() {
|
||||
// Validate form data
|
||||
var dl_limit = -1;
|
||||
if($defined($('dl_limit_checkbox').get('checked')) && $('dl_limit_checkbox').get('checked')) {
|
||||
dl_limit = $('dl_limit_value').get('value');
|
||||
if(dl_limit <= 0) {
|
||||
alert("_(Download rate limit must be greater than 0 or disabled.)");
|
||||
return;
|
||||
}
|
||||
}
|
||||
var up_limit = -1;
|
||||
if($defined($('up_limit_checkbox').get('checked')) && $('up_limit_checkbox').get('checked')) {
|
||||
up_limit = $('up_limit_value').get('value');
|
||||
if(up_limit <= 0) {
|
||||
alert("_(Upload rate limit must be greater than 0 or disabled.)");
|
||||
return;
|
||||
}
|
||||
}
|
||||
var max_connec = -1;
|
||||
if($defined($('max_connec_checkbox').get('checked')) && $('max_connec_checkbox').get('checked')) {
|
||||
max_connec = $('max_connec_value').get('value');
|
||||
if(max_connec <= 0) {
|
||||
alert("_(Maximum number of connections limit must be greater than 0 or disabled.)");
|
||||
return;
|
||||
}
|
||||
}
|
||||
var max_connec_per_torrent = -1;
|
||||
if($defined($('max_connec_per_torrent_checkbox').get('checked')) && $('max_connec_per_torrent_checkbox').get('checked')) {
|
||||
max_connec_per_torrent = $('max_connec_per_torrent_value').get('value');
|
||||
if(max_connec_per_torrent <= 0) {
|
||||
alert("_(Maximum number of connections per torrent limit must be greater than 0 or disabled.)");
|
||||
return;
|
||||
}
|
||||
}
|
||||
var max_uploads_per_torrent = -1;
|
||||
if($defined($('max_uploads_per_torrent_checkbox').get('checked')) && $('max_uploads_per_torrent_checkbox').get('checked')) {
|
||||
max_uploads_per_torrent = $('max_uploads_per_torrent_value').get('value');
|
||||
if(max_uploads_per_torrent <= 0) {
|
||||
alert("_(Maximum number of upload slots per torrent limit must be greater than 0 or disabled.)");
|
||||
return;
|
||||
}
|
||||
}
|
||||
// Send it to qBT
|
||||
// Close window
|
||||
window.parent.closeWindows();
|
||||
var dht = 0;
|
||||
if($defined($('dht_checkbox').get('checked')) && $('dht_checkbox').get('checked'))
|
||||
dht = 1;
|
||||
new Request({url: '/command/setPreferences',
|
||||
method: 'post',
|
||||
data: {'up_limit': up_limit,
|
||||
'dl_limit': dl_limit,
|
||||
'dht': dht,
|
||||
'max_connec': max_connec,
|
||||
'max_connec_per_torrent': max_connec_per_torrent,
|
||||
'max_uploads_per_torrent': max_uploads_per_torrent
|
||||
},
|
||||
onFailure: function() {
|
||||
alert("_(Unable to save program preferences, qBittorrent is probably unreachable.)");
|
||||
window.parent.closeWindows();
|
||||
},
|
||||
onSuccess: function() {
|
||||
// Close window
|
||||
window.parent.closeWindows();
|
||||
}
|
||||
}).send();
|
||||
};
|
||||
|
||||
updateDlLimitEnabled = function() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user