diff --git a/Changelog b/Changelog
index 91e7ebe1c..bebf11258 100644
--- a/Changelog
+++ b/Changelog
@@ -3,6 +3,7 @@
- FEATURE: The number of DHT nodes is displayed
- FEATURE: RSS can now be disabled from program preferences
- FEATURE: Added collapse/expand all buttons in addition dialog
+ - FEATURE: Can have different proxies for Bittorrent and search engine
- BUGFIX: Disable ETA calculation when ETA column is hidden
- BUGFIX: Removed "disconnected" connection state, detection was far from perfect
- COSMETIC: Transfer speed, ratio, connection status and DHT nodes are displayed in status bar
diff --git a/src/GUI.cpp b/src/GUI.cpp
index 794f8fc8e..05d9b823d 100644
--- a/src/GUI.cpp
+++ b/src/GUI.cpp
@@ -974,15 +974,12 @@ void GUI::configureSession(bool deleteOptions) {
proxySettings.username = options->getProxyUsername().toStdString();
proxySettings.password = options->getProxyPassword().toStdString();
}
- QString proxy_str;
switch(options->getProxyType()) {
case HTTP:
proxySettings.type = proxy_settings::http;
- proxy_str = misc::toQString("http://")+options->getProxyIp()+":"+misc::toQString(proxySettings.port);
break;
case HTTP_PW:
proxySettings.type = proxy_settings::http_pw;
- proxy_str = misc::toQString("http://")+options->getProxyUsername()+":"+options->getProxyPassword()+"@"+options->getProxyIp()+":"+misc::toQString(proxySettings.port);
break;
case SOCKS5:
proxySettings.type = proxy_settings::socks5;
@@ -991,6 +988,14 @@ void GUI::configureSession(bool deleteOptions) {
proxySettings.type = proxy_settings::socks5_pw;
break;
}
+ QString proxy_str;
+ switch(options->getHTTPProxyType()) {
+ case HTTP_PW:
+ proxy_str = misc::toQString("http://")+options->getProxyUsername()+":"+options->getProxyPassword()+"@"+options->getProxyIp()+":"+misc::toQString(proxySettings.port);
+ break;
+ default:
+ proxy_str = misc::toQString("http://")+options->getProxyIp()+":"+misc::toQString(proxySettings.port);
+ }
if(!proxy_str.isEmpty()) {
// We need this for urllib in search engine plugins
#ifdef Q_WS_WIN
diff --git a/src/downloadThread.cpp b/src/downloadThread.cpp
index 089bd4b64..6407cbb7f 100644
--- a/src/downloadThread.cpp
+++ b/src/downloadThread.cpp
@@ -91,11 +91,11 @@ void subDownloadThread::run(){
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0);
// PROXY SUPPORT
QSettings settings("qBittorrent", "qBittorrent");
- int intValue = settings.value(QString::fromUtf8("Preferences/Connection/ProxyType"), 0).toInt();
+ int intValue = settings.value(QString::fromUtf8("Preferences/Connection/HTTPProxyType"), 0).toInt();
if(intValue > 0) {
// Proxy enabled
- QString IP = settings.value(QString::fromUtf8("Preferences/Connection/Proxy/IP"), "0.0.0.0").toString();
- QString port = settings.value(QString::fromUtf8("Preferences/Connection/Proxy/Port"), 8080).toString();
+ QString IP = settings.value(QString::fromUtf8("Preferences/Connection/HTTPProxy/IP"), "0.0.0.0").toString();
+ QString port = settings.value(QString::fromUtf8("Preferences/Connection/HTTPProxy/Port"), 8080).toString();
qDebug("Using proxy: %s", (IP+QString(":")+port).toUtf8().data());
curl_easy_setopt(curl, CURLOPT_PROXYPORT, (IP+QString(":")+port).toUtf8().data());
// Default proxy type is HTTP, we must change if it is SOCKS5
@@ -106,8 +106,8 @@ void subDownloadThread::run(){
// Authentication?
if(intValue > 2) {
qDebug("Proxy requires authentication, authenticating");
- QString username = settings.value(QString::fromUtf8("Preferences/Connection/Proxy/Username"), QString()).toString();
- QString password = settings.value(QString::fromUtf8("Preferences/Connection/Proxy/Password"), QString()).toString();
+ QString username = settings.value(QString::fromUtf8("Preferences/Connection/HTTPProxy/Username"), QString()).toString();
+ QString password = settings.value(QString::fromUtf8("Preferences/Connection/HTTPProxy/Password"), QString()).toString();
curl_easy_setopt(curl, CURLOPT_PROXYUSERPWD, (username+QString(":")+password).toUtf8().data());
}
}
diff --git a/src/lang/qbittorrent_bg.qm b/src/lang/qbittorrent_bg.qm
index 02b91c16f..4ddc83e74 100644
Binary files a/src/lang/qbittorrent_bg.qm and b/src/lang/qbittorrent_bg.qm differ
diff --git a/src/lang/qbittorrent_bg.ts b/src/lang/qbittorrent_bg.ts
index d6eac29b0..f20007d45 100644
--- a/src/lang/qbittorrent_bg.ts
+++ b/src/lang/qbittorrent_bg.ts
@@ -257,7 +257,7 @@ Copyright © 2006 на Christophe Dumez<br>
Порт Обхват:
-
+
...
...
@@ -282,14 +282,14 @@ Copyright © 2006 на Christophe Dumez<br>
към
-
+
Proxy
- Прокси
+ Прокси
Proxy Settings
- Прокси Настройки
+ Прокси Настройки
@@ -302,7 +302,7 @@ Copyright © 2006 на Christophe Dumez<br>
0.0.0.0
-
+
Port:
Порт:
@@ -312,7 +312,7 @@ Copyright © 2006 на Christophe Dumez<br>
Прокси сървъра иска удостоверяване
-
+
Authentication
Удостоверяване
@@ -322,7 +322,7 @@ Copyright © 2006 на Christophe Dumez<br>
Име на Потребител:
-
+
Password:
Парола:
@@ -417,12 +417,12 @@ Copyright © 2006 на Christophe Dumez<br>
KB UP max.
-
+
Activate IP Filtering
Активирай IP Филтриране
-
+
Filter Settings
Настройки на Филтъра
@@ -482,7 +482,7 @@ Copyright © 2006 на Christophe Dumez<br>
ipfilter.dat Път:
-
+
Misc
Допълнения
@@ -537,7 +537,7 @@ Copyright © 2006 на Christophe Dumez<br>
Не показвай OSD
-
+
KiB/s
KB/с
@@ -732,37 +732,37 @@ Copyright © 2006 на Christophe Dumez<br>
Тип Прокси:
-
+
HTTP
HTTP
-
+
SOCKS5
SOCKS5
-
+
Affected connections
Засегнати връзки
-
+
Use proxy for connections to trackers
Използвай прокси за връзка към тракерите
-
+
Use proxy for connections to regular peers
Ползвай прокси за свързване към стандартните връзки
-
+
Use proxy for connections to web seeds
Използвай прокси за връзки към web донори
-
+
Use proxy for DHT messages
Използвай прокси за DHT съобщенията
@@ -777,17 +777,17 @@ Copyright © 2006 на Christophe Dumez<br>
Състояние на кодиране:
-
+
Enabled
Включено
-
+
Forced
Форсирано
-
+
Disabled
Изключено
@@ -926,102 +926,102 @@ Copyright © 2006 на Christophe Dumez<br>
Включено NAT-PMP порт следене
-
+
Global bandwidth limiting
Общ лимит сваляне
-
+
Upload:
Качване:
-
+
Download:
Сваляне:
-
+
Type:
Вид:
-
+
(None)
(без)
-
+
Proxy:
Прокси:
-
+
Username:
Име на потребителя:
-
+
Bittorrent
Bittorrent
-
+
Connections limit
Ограничение на връзката
-
+
Global maximum number of connections:
Общ максимален брой на връзки:
-
+
Maximum number of connections per torrent:
Максимален брой връзки на торент:
-
+
Maximum number of upload slots per torrent:
Максимален брой слотове за качване на торент:
-
+
Additional Bittorrent features
Допълнителни възможности на Bittorrent
-
+
Enable DHT network (decentralized)
Включена мрежа DHT (децентрализирана)
-
+
Enable Peer eXchange (PeX)
Включен Peer eXchange (PeX)
-
+
Enable Local Peer Discovery
Включено Откриване на локална връзка
-
+
Encryption:
Криптиране:
-
+
Share ratio settings
Настройки на процента на споделяне
-
+
Desired ratio:
Предпочитано отношение:
-
+
Filter file path:
Филтър за пътя на файла :
@@ -1036,22 +1036,22 @@ Copyright © 2006 на Christophe Dumez<br>
ms
-
+
RSS
RSS
-
+
RSS feeds refresh interval:
Интервал на обновяване на RSS feeds:
-
+
minutes
минути
-
+
Maximum number of articles per feed:
Максимум статии на feed:
@@ -1061,7 +1061,7 @@ Copyright © 2006 на Christophe Dumez<br>
Файлова система
-
+
Remove finished torrents when their ratio reaches:
Премахни завършени торенти когато тяхното отношение се разширява:
@@ -1117,52 +1117,52 @@ Copyright © 2006 на Christophe Dumez<br>
секунди
-
+
Spoof Azureus to avoid ban (requires restart)
Направи се на Azureus за да избегнеш изхвърляне (изисква рестарт)
-
+
Web UI
Web UI
-
+
Enable Web User Interface
Включи Интерфейс на Web Потребител
-
+
HTTP Server
Сървър HTTP
-
+
Enable RSS support
-
+
RSS settings
-
+
Torrent queueing
-
+
Enable queueing system
-
+
Maximum active downloads:
-
+
Maximum active torrents:
@@ -1171,6 +1171,16 @@ Copyright © 2006 на Christophe Dumez<br>
Display top toolbar
+
+
+ Search engine proxy settings
+
+
+
+
+ Bittorrent proxy settings
+
+
DownloadingTorrents
@@ -1492,7 +1502,7 @@ Copyright © 2006 на Christophe Dumez<br>
kb/с
-
+
Finished
Завършен
@@ -1619,7 +1629,7 @@ Copyright © 2006 на Christophe Dumez<br>
qBittorrent
-
+
qBittorrent
qBittorrent
@@ -1959,7 +1969,7 @@ Please close the other one first.
qBittorrent %1
-
+
Connection status:
Състояние на връзката:
@@ -2034,13 +2044,13 @@ Please close the other one first.
qBittorrent %1 стартиран.
-
+
DL speed: %1 KiB/s
e.g: Download speed: 10 KiB/s
DL Скорост %1 KB/с
-
+
UP speed: %1 KiB/s
e.g: Upload speed: 10 KiB/s
UL Скорост %1 KB/с
@@ -2163,12 +2173,12 @@ Please close the other one first.
Намерена грешка (пълен диск?), '%1' е в пауза.
-
+
Connection Status:
Състояние на връзката:
-
+
Online
Свързан
@@ -2233,22 +2243,22 @@ Please close the other one first.
qBittorrent е свързан с порт: %1
-
+
DHT support [ON], port: %1
DHT поддръжка [ВКЛ], порт: %1
-
+
DHT support [OFF]
DHT поддръжка [ИЗКЛ]
-
+
PeX support [ON]
PeX поддръжка [ВКЛ]
-
+
PeX support [OFF]
PeX поддръжка [ИЗКЛ]
@@ -2260,7 +2270,7 @@ Are you sure you want to quit qBittorrent?
Сигурни ли сте че искате да напуснете qBittorrent?
-
+
Downloads
Сваляне
@@ -2275,17 +2285,17 @@ Are you sure you want to quit qBittorrent?
UPnP поддръжка [ВКЛ]
-
+
Encryption support [ON]
Поддръжка кодиране [ВКЛ]
-
+
Encryption support [FORCED]
Поддръжка кодиране [ФОРСИРАНА]
-
+
Encryption support [OFF]
Поддръжка кодиране [ИЗКЛ]
@@ -2361,12 +2371,12 @@ Are you sure you want to quit qBittorrent?
NAT-PMP поддръжка [ИЗКЛ]
-
+
Local Peer Discovery [ON]
Търсене на локални връзки [ВКЛ]
-
+
Local Peer Discovery support [OFF]
Търсене на локални връзки [ИЗКЛ]
@@ -2377,18 +2387,18 @@ Are you sure you want to quit qBittorrent?
'%1' бе премахнат защото съотношението му надвишава определеното.
-
+
qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)
%1 is qBittorrent version
qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)
-
+
DL: %1 KiB/s
-
+
UP: %1 KiB/s
@@ -2403,7 +2413,7 @@ Are you sure you want to quit qBittorrent?
-
+
No direct connections. This may indicate network configuration problems.
@@ -2413,7 +2423,7 @@ Are you sure you want to quit qBittorrent?
-
+
Options were saved successfully.
Опциите бяха съхранени успешно.
@@ -2942,13 +2952,13 @@ Are you sure you want to quit qBittorrent?
RssStream
-
+
%1 ago
10min ago
преди %1
-
+
Never
Никога
@@ -4410,7 +4420,7 @@ However, those plugins were disabled.
Опциите бяха съхранени успешно.
-
+
Choose scan directory
Изберете директория за сканиране
@@ -4420,7 +4430,7 @@ However, those plugins were disabled.
Изберете ipfilter.dat файл
-
+
Choose a save directory
Изберете директория за съхранение
@@ -4436,12 +4446,12 @@ However, those plugins were disabled.
Не мога да отворя %1 в режим четене.
-
+
Choose an ip filter file
Избери файл за ip филтър
-
+
Filters
Филтри
diff --git a/src/lang/qbittorrent_ca.qm b/src/lang/qbittorrent_ca.qm
index 804ac15ce..8024876ce 100644
Binary files a/src/lang/qbittorrent_ca.qm and b/src/lang/qbittorrent_ca.qm differ
diff --git a/src/lang/qbittorrent_ca.ts b/src/lang/qbittorrent_ca.ts
index 1c5fbfd83..7f152f71f 100644
--- a/src/lang/qbittorrent_ca.ts
+++ b/src/lang/qbittorrent_ca.ts
@@ -255,7 +255,7 @@ Copyright © 2006 by Christophe Dumez<br>
Directori escanejat:
-
+
...
...
@@ -335,12 +335,12 @@ Copyright © 2006 by Christophe Dumez<br>
Filtre IP
-
+
Activate IP Filtering
Activa Filtre IP
-
+
Filter Settings
Configurar Filtre
@@ -380,9 +380,9 @@ Copyright © 2006 by Christophe Dumez<br>
Comentari
-
+
Proxy
- Proxy
+ Proxy
@@ -392,7 +392,7 @@ Copyright © 2006 by Christophe Dumez<br>
Proxy Settings
- Configurar Proxy
+ Configurar Proxy
@@ -405,12 +405,12 @@ Copyright © 2006 by Christophe Dumez<br>
0.0.0.0
-
+
Port:
Port:
-
+
Authentication
Autentificació
@@ -420,7 +420,7 @@ Copyright © 2006 by Christophe Dumez<br>
Nom usuari:
-
+
Password:
Contrasenya:
@@ -525,7 +525,7 @@ Copyright © 2006 by Christophe Dumez<br>
Habilita la icona de la barra al minimitzar
-
+
Misc
Misc
@@ -565,7 +565,7 @@ Copyright © 2006 by Christophe Dumez<br>
No mostrar OSD mai
-
+
KiB/s
KiB/s
@@ -670,52 +670,52 @@ Copyright © 2006 by Christophe Dumez<br>
-
+
HTTP
-
+
SOCKS5
-
+
Affected connections
-
+
Use proxy for connections to trackers
-
+
Use proxy for connections to regular peers
-
+
Use proxy for connections to web seeds
-
+
Use proxy for DHT messages
-
+
Enabled
-
+
Forced
-
+
Disabled
@@ -849,102 +849,102 @@ Copyright © 2006 by Christophe Dumez<br>
-
+
Global bandwidth limiting
-
+
Upload:
-
+
Download:
-
+
Type:
-
+
(None)
-
+
Proxy:
-
+
Username:
Usuari:
-
+
Bittorrent
-
+
Connections limit
-
+
Global maximum number of connections:
-
+
Maximum number of connections per torrent:
-
+
Maximum number of upload slots per torrent:
-
+
Additional Bittorrent features
-
+
Enable DHT network (decentralized)
-
+
Enable Peer eXchange (PeX)
-
+
Enable Local Peer Discovery
-
+
Encryption:
-
+
Share ratio settings
-
+
Desired ratio:
-
+
Filter file path:
@@ -959,22 +959,22 @@ Copyright © 2006 by Christophe Dumez<br>
-
+
RSS
-
+
RSS feeds refresh interval:
-
+
minutes
-
+
Maximum number of articles per feed:
@@ -984,7 +984,7 @@ Copyright © 2006 by Christophe Dumez<br>
-
+
Remove finished torrents when their ratio reaches:
@@ -1040,52 +1040,52 @@ Copyright © 2006 by Christophe Dumez<br>
-
+
Spoof Azureus to avoid ban (requires restart)
-
+
Web UI
-
+
Enable Web User Interface
-
+
HTTP Server
-
+
Enable RSS support
-
+
RSS settings
-
+
Enable queueing system
-
+
Maximum active downloads:
-
+
Torrent queueing
-
+
Maximum active torrents:
@@ -1094,6 +1094,16 @@ Copyright © 2006 by Christophe Dumez<br>
Display top toolbar
+
+
+ Search engine proxy settings
+
+
+
+
+ Bittorrent proxy settings
+
+
DownloadingTorrents
@@ -1308,7 +1318,7 @@ Copyright © 2006 by Christophe Dumez<br>
iniciat.
-
+
qBittorrent
qBittorrent
@@ -1488,7 +1498,7 @@ Copyright © 2006 by Christophe Dumez<br>
/s
-
+
Finished
Finalitzat
@@ -1845,7 +1855,7 @@ Si et plau tanca l'altre primer.
-
+
Connection status:
@@ -1898,13 +1908,13 @@ Si et plau tanca l'altre primer.
Leechers
-
+
DL speed: %1 KiB/s
e.g: Download speed: 10 KiB/s
-
+
UP speed: %1 KiB/s
e.g: Upload speed: 10 KiB/s
@@ -1957,12 +1967,12 @@ Si et plau tanca l'altre primer.
-
+
Connection Status:
-
+
Online
@@ -1995,22 +2005,22 @@ Si et plau tanca l'altre primer.
-
+
DHT support [ON], port: %1
-
+
DHT support [OFF]
-
+
PeX support [ON]
-
+
PeX support [OFF]
@@ -2021,7 +2031,7 @@ Are you sure you want to quit qBittorrent?
-
+
Downloads
Descarregues
@@ -2036,17 +2046,17 @@ Are you sure you want to quit qBittorrent?
-
+
Encryption support [ON]
-
+
Encryption support [FORCED]
-
+
Encryption support [OFF]
@@ -2116,28 +2126,28 @@ Are you sure you want to quit qBittorrent?
-
+
Local Peer Discovery [ON]
-
+
Local Peer Discovery support [OFF]
-
+
qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)
%1 is qBittorrent version
-
+
DL: %1 KiB/s
-
+
UP: %1 KiB/s
@@ -2152,7 +2162,7 @@ Are you sure you want to quit qBittorrent?
-
+
No direct connections. This may indicate network configuration problems.
@@ -2162,7 +2172,7 @@ Are you sure you want to quit qBittorrent?
-
+
Options were saved successfully.
@@ -2691,13 +2701,13 @@ Are you sure you want to quit qBittorrent?
RssStream
-
+
%1 ago
10min ago
-
+
Never
@@ -4062,12 +4072,12 @@ However, those plugins were disabled.
Aquesta IP es invalida.
-
+
Choose scan directory
-
+
Choose a save directory
@@ -4078,12 +4088,12 @@ However, those plugins were disabled.
I/O Error
-
+
Choose an ip filter file
-
+
Filters
diff --git a/src/lang/qbittorrent_cs.qm b/src/lang/qbittorrent_cs.qm
index 829f7f19c..c2774394b 100644
Binary files a/src/lang/qbittorrent_cs.qm and b/src/lang/qbittorrent_cs.qm differ
diff --git a/src/lang/qbittorrent_cs.ts b/src/lang/qbittorrent_cs.ts
index daa2437fc..d07c349b5 100644
--- a/src/lang/qbittorrent_cs.ts
+++ b/src/lang/qbittorrent_cs.ts
@@ -169,37 +169,37 @@ Copyright © 2006 by Christophe Dumez<br>
Rozsah portů:
-
+
...
...
Proxy Settings
- Nastavení proxy
+ Nastavení proxy
-
+
Port:
Port:
-
+
Authentication
Ověření
-
+
Password:
Heslo:
-
+
Activate IP Filtering
Aktivovat filtrování IP
-
+
Filter Settings
Nastavení filtru
@@ -209,7 +209,7 @@ Copyright © 2006 by Christophe Dumez<br>
Jazyk:
-
+
KiB/s
KiB/s
@@ -234,52 +234,52 @@ Copyright © 2006 by Christophe Dumez<br>
Styl CDE (jako Common Desktop Environment)
-
+
HTTP
HTTP
-
+
SOCKS5
SOCKS5
-
+
Affected connections
Ovlivněná připojení
-
+
Use proxy for connections to trackers
Použít proxy pro připojení k trackeru
-
+
Use proxy for connections to regular peers
Použít proxy pro připojení k peerům
-
+
Use proxy for connections to web seeds
Použít proxy pro připojení k seedům
-
+
Use proxy for DHT messages
Použít proxy pro DHT zprávy
-
+
Enabled
Zapnuto
-
+
Forced
Vynuceno
-
+
Disabled
Vypnuto
@@ -413,102 +413,102 @@ Copyright © 2006 by Christophe Dumez<br>
Zapnout mapování portů NAT-PMP
-
+
Global bandwidth limiting
Celkový limit pásma
-
+
Upload:
Vysílání:
-
+
Download:
Stahování:
-
+
Type:
Typ:
-
+
(None)
(Žádný)
-
+
Proxy:
Proxy:
-
+
Username:
Uživatelské jméno:
-
+
Bittorrent
Bittorrent
-
+
Connections limit
Limit spojení
-
+
Global maximum number of connections:
Celkový maximální počet spojení:
-
+
Maximum number of connections per torrent:
Maximální počet spojení na torrent:
-
+
Maximum number of upload slots per torrent:
Maximální počet slotů pro nahrávání na torrent:
-
+
Additional Bittorrent features
Další vlastnosti Bittorrentu
-
+
Enable DHT network (decentralized)
Zapnout DHT síť (decentralizovaná)
-
+
Enable Peer eXchange (PeX)
Zapnout Peer eXchange (PeX)
-
+
Enable Local Peer Discovery
Zapnout Local Peer Discovery
-
+
Encryption:
Šifrování:
-
+
Share ratio settings
Nastavení poměru sdílení
-
+
Desired ratio:
Požadovaný poměr:
-
+
Filter file path:
Cesta k souboru filtrů:
@@ -523,27 +523,27 @@ Copyright © 2006 by Christophe Dumez<br>
ms
-
+
Misc
Různé
-
+
RSS
RSS
-
+
RSS feeds refresh interval:
Interval obnovování RSS kanálů:
-
+
minutes
minut
-
+
Maximum number of articles per feed:
Maximální počet článků na kanál:
@@ -553,7 +553,7 @@ Copyright © 2006 by Christophe Dumez<br>
Souborový systém
-
+
Remove finished torrents when their ratio reaches:
Odstranit dokončené torrenty, když jejich poměr dosáhne:
@@ -609,52 +609,52 @@ Copyright © 2006 by Christophe Dumez<br>
sekund
-
+
Spoof Azureus to avoid ban (requires restart)
Klamat Azureus abychom se vyhnuli blokování (vyžaduje restart)
-
+
Web UI
Webové rozhraní
-
+
Enable Web User Interface
Zapnout webové rozhraní
-
+
HTTP Server
HTTP Server
-
+
Enable RSS support
Zapnout podporu RSS
-
+
RSS settings
Nastavení RSS
-
+
Enable queueing system
Zapnout systém zařazování do fronty
-
+
Maximum active downloads:
Maximální počet současně stahovaných torrentů:
-
+
Torrent queueing
Řazení torrentů do fronty
-
+
Maximum active torrents:
Maximální počet aktivních torrentů:
@@ -663,6 +663,21 @@ Copyright © 2006 by Christophe Dumez<br>
Display top toolbar
Zobrazit horní panel nástrojů
+
+
+ Proxy
+
+
+
+
+ Search engine proxy settings
+
+
+
+
+ Bittorrent proxy settings
+
+
DownloadingTorrents
@@ -919,7 +934,7 @@ Copyright © 2006 by Christophe Dumez<br>
qBittorrent %1
-
+
Connection status:
Stav připojení:
@@ -934,18 +949,18 @@ Copyright © 2006 by Christophe Dumez<br>
Nebyly nalezeny žádné peery...
-
+
qBittorrent
qBittorrent
-
+
DL speed: %1 KiB/s
e.g: Download speed: 10 KiB/s
Rychlost stahování: %1 KiB/s
-
+
UP speed: %1 KiB/s
e.g: Upload speed: 10 KiB/s
Rychlost nahrávání: %1 KiB/s
@@ -1002,12 +1017,12 @@ Copyright © 2006 by Christophe Dumez<br>
Nastala chyba při pokusu o čtení či zápis %1. Disk je provděpodobně plný, stahování bylo pozastaveno
-
+
Connection Status:
Stav připojení:
-
+
Online
Online
@@ -1045,22 +1060,22 @@ Copyright © 2006 by Christophe Dumez<br>
qBittorrent se váže na port: %1
-
+
DHT support [ON], port: %1
Podpora DHT [ZAP], port: %1
-
+
DHT support [OFF]
Podpora DHT [VYP]
-
+
PeX support [ON]
Podpora PeX [ZAP]
-
+
PeX support [OFF]
Podpora PeX [VYP]
@@ -1072,12 +1087,12 @@ Are you sure you want to quit qBittorrent?
Opravdu chcete ukončit qBittorrent?
-
+
Downloads
Stahování
-
+
Finished
Dokončeno
@@ -1092,17 +1107,17 @@ Opravdu chcete ukončit qBittorrent?
Podpora UPnP [ZAP]
-
+
Encryption support [ON]
Podpora šifrování [ZAP]
-
+
Encryption support [FORCED]
Podpora šifrování [VYNUCENO]
-
+
Encryption support [OFF]
Podpora šifrování [VYP]
@@ -1178,12 +1193,12 @@ Opravdu chcete ukončit qBittorrent?
Podpora NAT-PMP [VYP]
-
+
Local Peer Discovery [ON]
Local Peer Discovery [ZAP]
-
+
Local Peer Discovery support [OFF]
Podpora Local Peer Discovery [VYP]
@@ -1194,18 +1209,18 @@ Opravdu chcete ukončit qBittorrent?
'%1' byl odstraněn protože jeho poměr dosáhl nastaveného maxima.
-
+
qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)
%1 is qBittorrent version
qBittorrent %1 (Stahování: %2KiB/s, Nahrávání: %3KiB/s)
-
+
DL: %1 KiB/s
Stahování: %1 KiB/s
-
+
UP: %1 KiB/s
Nahrávání: %1 KiB/s
@@ -1220,7 +1235,7 @@ Opravdu chcete ukončit qBittorrent?
DHT: %1 uzlů
-
+
No direct connections. This may indicate network configuration problems.
Žádná přímá spojení. To může značit problémy s nastavením sítě.
@@ -1230,7 +1245,7 @@ Opravdu chcete ukončit qBittorrent?
-
+
Options were saved successfully.
Nastavení bylo úspěšně uloženo.
@@ -1566,13 +1581,13 @@ Opravdu chcete ukončit qBittorrent?
RssStream
-
+
%1 ago
10min ago
Před %1
-
+
Never
Nikdy
@@ -2542,22 +2557,22 @@ Nicméně, tyto moduly byly vypnuty.
Nastavení bylo úspěšně uloženo.
-
+
Choose scan directory
Vyberte adresář ke sledování
-
+
Choose a save directory
Vyberte adresář pro ukládání
-
+
Choose an ip filter file
Vyberte soubor IP filtrů
-
+
Filters
Filtry
diff --git a/src/lang/qbittorrent_da.qm b/src/lang/qbittorrent_da.qm
index 2d710f522..2cec06997 100644
Binary files a/src/lang/qbittorrent_da.qm and b/src/lang/qbittorrent_da.qm differ
diff --git a/src/lang/qbittorrent_da.ts b/src/lang/qbittorrent_da.ts
index 95be879eb..fbf22f635 100644
--- a/src/lang/qbittorrent_da.ts
+++ b/src/lang/qbittorrent_da.ts
@@ -204,7 +204,7 @@ Copyright © 2006 by Christophe Dumez<br>
Porte:
-
+
...
...
@@ -219,14 +219,14 @@ Copyright © 2006 by Christophe Dumez<br>
forbindelser
-
+
Proxy
- Proxy
+ Proxy
Proxy Settings
- Proxy indstillinger
+ Proxy indstillinger
@@ -239,7 +239,7 @@ Copyright © 2006 by Christophe Dumez<br>
0.0.0.0
-
+
Port:
Port:
@@ -249,7 +249,7 @@ Copyright © 2006 by Christophe Dumez<br>
Proxy serveren kræver godkendelse
-
+
Authentication
Godkendelse
@@ -259,7 +259,7 @@ Copyright © 2006 by Christophe Dumez<br>
Brugernavn:
-
+
Password:
Kodeord:
@@ -299,12 +299,12 @@ Copyright © 2006 by Christophe Dumez<br>
Delingsforhold:
-
+
Activate IP Filtering
Aktiver IP Filtrering
-
+
Filter Settings
Filter Indstillinger
@@ -364,7 +364,7 @@ Copyright © 2006 by Christophe Dumez<br>
Minimer til systray
-
+
Misc
Diverse
@@ -384,7 +384,7 @@ Copyright © 2006 by Christophe Dumez<br>
Opførsel
-
+
KiB/s
KB/s
@@ -499,52 +499,52 @@ Copyright © 2006 by Christophe Dumez<br>
-
+
HTTP
-
+
SOCKS5
-
+
Affected connections
-
+
Use proxy for connections to trackers
-
+
Use proxy for connections to regular peers
-
+
Use proxy for connections to web seeds
-
+
Use proxy for DHT messages
-
+
Enabled
-
+
Forced
-
+
Disabled
@@ -678,102 +678,102 @@ Copyright © 2006 by Christophe Dumez<br>
-
+
Global bandwidth limiting
-
+
Upload:
-
+
Download:
-
+
Type:
-
+
(None)
-
+
Proxy:
-
+
Username:
Brugernavn:
-
+
Bittorrent
-
+
Connections limit
-
+
Global maximum number of connections:
-
+
Maximum number of connections per torrent:
-
+
Maximum number of upload slots per torrent:
-
+
Additional Bittorrent features
-
+
Enable DHT network (decentralized)
-
+
Enable Peer eXchange (PeX)
-
+
Enable Local Peer Discovery
-
+
Encryption:
-
+
Share ratio settings
-
+
Desired ratio:
-
+
Filter file path:
@@ -788,22 +788,22 @@ Copyright © 2006 by Christophe Dumez<br>
-
+
RSS
-
+
RSS feeds refresh interval:
-
+
minutes
-
+
Maximum number of articles per feed:
@@ -813,7 +813,7 @@ Copyright © 2006 by Christophe Dumez<br>
-
+
Remove finished torrents when their ratio reaches:
@@ -869,52 +869,52 @@ Copyright © 2006 by Christophe Dumez<br>
-
+
Spoof Azureus to avoid ban (requires restart)
-
+
Web UI
-
+
Enable Web User Interface
-
+
HTTP Server
-
+
Enable RSS support
-
+
RSS settings
-
+
Enable queueing system
-
+
Maximum active downloads:
-
+
Torrent queueing
-
+
Maximum active torrents:
@@ -923,6 +923,16 @@ Copyright © 2006 by Christophe Dumez<br>
Display top toolbar
+
+
+ Search engine proxy settings
+
+
+
+
+ Bittorrent proxy settings
+
+
DownloadingTorrents
@@ -1332,7 +1342,7 @@ Luk venglist denne først.
qBittorrent %1
-
+
Connection status:
Forbindelses status:
@@ -1407,18 +1417,18 @@ Luk venglist denne først.
qBittorrent %1 startet.
-
+
qBittorrent
qBittorrent
-
+
DL speed: %1 KiB/s
e.g: Download speed: 10 KiB/s
DL hastighed: %1 KB/s
-
+
UP speed: %1 KiB/s
e.g: Upload speed: 10 KiB/s
UP hastighed: %1 KB/s
@@ -1535,12 +1545,12 @@ Luk venglist denne først.
Der opstod en fejl under forsøget på at skrive %1. Disken er måske fuld, downloaden er sat på pause
-
+
Connection Status:
Forbindelses Status:
-
+
Online
Online
@@ -1605,22 +1615,22 @@ Luk venglist denne først.
-
+
DHT support [ON], port: %1
-
+
DHT support [OFF]
-
+
PeX support [ON]
-
+
PeX support [OFF]
@@ -1631,12 +1641,12 @@ Are you sure you want to quit qBittorrent?
-
+
Downloads
-
+
Finished
Færdig
@@ -1651,17 +1661,17 @@ Are you sure you want to quit qBittorrent?
-
+
Encryption support [ON]
-
+
Encryption support [FORCED]
-
+
Encryption support [OFF]
@@ -1731,28 +1741,28 @@ Are you sure you want to quit qBittorrent?
-
+
Local Peer Discovery [ON]
-
+
Local Peer Discovery support [OFF]
-
+
qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)
%1 is qBittorrent version
-
+
DL: %1 KiB/s
-
+
UP: %1 KiB/s
@@ -1767,7 +1777,7 @@ Are you sure you want to quit qBittorrent?
-
+
No direct connections. This may indicate network configuration problems.
@@ -1777,7 +1787,7 @@ Are you sure you want to quit qBittorrent?
-
+
Options were saved successfully.
Indstillingerne blev gemt.
@@ -2213,13 +2223,13 @@ Are you sure you want to quit qBittorrent?
RssStream
-
+
%1 ago
10min ago
-
+
Never
@@ -3481,7 +3491,7 @@ However, those plugins were disabled.
Indstillingerne blev gemt.
-
+
Choose scan directory
Vælg mappe til scan
@@ -3491,7 +3501,7 @@ However, those plugins were disabled.
Vælg en ipfilter.dat fil
-
+
Choose a save directory
Vælg en standart mappe
@@ -3507,12 +3517,12 @@ However, those plugins were disabled.
Kunne ikke åbne %1 til læsning.
-
+
Choose an ip filter file
-
+
Filters
diff --git a/src/lang/qbittorrent_de.qm b/src/lang/qbittorrent_de.qm
index e076b96e7..5a8dbac8d 100644
Binary files a/src/lang/qbittorrent_de.qm and b/src/lang/qbittorrent_de.qm differ
diff --git a/src/lang/qbittorrent_de.ts b/src/lang/qbittorrent_de.ts
index 9bc55f6d7..199c250d4 100644
--- a/src/lang/qbittorrent_de.ts
+++ b/src/lang/qbittorrent_de.ts
@@ -218,7 +218,7 @@ Copyright (c) 2006 Christophe Dumez<br>
Dursuchtes Verzeichnis:
-
+
...
...
@@ -273,9 +273,9 @@ Copyright (c) 2006 Christophe Dumez<br>
Aktiviere Verzeichnis Abfrage (fügt gefundene torrent Dateien automatisch hinzu)
-
+
Proxy
- Proxy
+ Proxy
@@ -285,7 +285,7 @@ Copyright (c) 2006 Christophe Dumez<br>
Proxy Settings
- Proxy Einstellungen
+ Proxy Einstellungen
@@ -298,7 +298,7 @@ Copyright (c) 2006 Christophe Dumez<br>
0.0.0.0
-
+
Port:
Port:
@@ -308,7 +308,7 @@ Copyright (c) 2006 Christophe Dumez<br>
Proxy Server benötigt Authentifizierung
-
+
Authentication
Authentifizierung
@@ -318,7 +318,7 @@ Copyright (c) 2006 Christophe Dumez<br>
Benutzer:
-
+
Password:
Kennwort:
@@ -363,12 +363,12 @@ Copyright (c) 2006 Christophe Dumez<br>
KB UP max.
-
+
Activate IP Filtering
Aktiviere IP Filter
-
+
Filter Settings
Filter Einstellungen
@@ -423,7 +423,7 @@ Copyright (c) 2006 Christophe Dumez<br>
In den SysTray minimieren
-
+
Misc
Sonstige
@@ -488,7 +488,7 @@ Copyright (c) 2006 Christophe Dumez<br>
Audio/Video Player:
-
+
KiB/s
Kb/s
@@ -668,37 +668,37 @@ Copyright (c) 2006 Christophe Dumez<br>
Proxy Typ:
-
+
HTTP
HTTP
-
+
SOCKS5
SOCKS5
-
+
Affected connections
Betroffene Verbindungen
-
+
Use proxy for connections to trackers
Benutze den Proxy für die Verbindung zu Trackern
-
+
Use proxy for connections to regular peers
Benutze den Proxy für die Verbindung zu den normalen Quellen
-
+
Use proxy for connections to web seeds
Benutze den Proxy für die Verbindung zu Web Seeds
-
+
Use proxy for DHT messages
Benutze den Proxy für DHT Nachrichten
@@ -713,17 +713,17 @@ Copyright (c) 2006 Christophe Dumez<br>
Verschlüsselungsstatus:
-
+
Enabled
Aktiviert
-
+
Forced
Erzwungen
-
+
Disabled
Deaktiviert
@@ -862,102 +862,102 @@ Copyright (c) 2006 Christophe Dumez<br>
Aktiviere NAP-PMP Port Mapping
-
+
Global bandwidth limiting
Globale bandbreiten Limitierung
-
+
Upload:
Upload:
-
+
Download:
Download:
-
+
Type:
Typ:
-
+
(None)
(Keine)
-
+
Proxy:
Proxy:
-
+
Username:
Benutzername:
-
+
Bittorrent
Bittorrent
-
+
Connections limit
Verbindungsbeschränkung
-
+
Global maximum number of connections:
Globale maximale Anzahl der Verbindungen:
-
+
Maximum number of connections per torrent:
Maximale Anzahl der Verbindungen pro Torrent:
-
+
Maximum number of upload slots per torrent:
Maximale Anzahl der Upload-Slots pro Torrent:
-
+
Additional Bittorrent features
Weitere Bittorrent Funktionen
-
+
Enable DHT network (decentralized)
Aktiviere DHT Netzwerk (dezentralisiert)
-
+
Enable Peer eXchange (PeX)
Aktiviere Peer eXchange (PeX)
-
+
Enable Local Peer Discovery
Aktiviere Lokale Peer Auffindung
-
+
Encryption:
Verschlüssellung:
-
+
Share ratio settings
Share Verhältnis Einstellungen
-
+
Desired ratio:
Gewünschtes Verhältnis:
-
+
Filter file path:
Pfad zur Filter-Datei:
@@ -972,22 +972,22 @@ Copyright (c) 2006 Christophe Dumez<br>
ms
-
+
RSS
RSS
-
+
RSS feeds refresh interval:
Aktualisierungsintervall für RSS Feeds:
-
+
minutes
Minuten
-
+
Maximum number of articles per feed:
Maximale Anzahl von Artikeln pro Feed:
@@ -997,7 +997,7 @@ Copyright (c) 2006 Christophe Dumez<br>
Datei System
-
+
Remove finished torrents when their ratio reaches:
Entferne beendete Torrents bei einem Verhältnis von:
@@ -1054,52 +1054,52 @@ qBittorrent beobachtet das Verzeichniss und starten den Download von vorhandenen
Sekunden
-
+
Spoof Azureus to avoid ban (requires restart)
Vortäuschen von Azureus um nicht gebannt zu werden (benötigt Neustart)
-
+
Web UI
Web UI
-
+
Enable Web User Interface
Aktiviere Web User Interface
-
+
HTTP Server
HTTP Server
-
+
Enable RSS support
-
+
RSS settings
-
+
Torrent queueing
-
+
Enable queueing system
-
+
Maximum active downloads:
-
+
Maximum active torrents:
@@ -1108,6 +1108,16 @@ qBittorrent beobachtet das Verzeichniss und starten den Download von vorhandenen
Display top toolbar
+
+
+ Search engine proxy settings
+
+
+
+
+ Bittorrent proxy settings
+
+
DownloadingTorrents
@@ -1384,7 +1394,7 @@ qBittorrent beobachtet das Verzeichniss und starten den Download von vorhandenen
:: By Christophe Dumez :: Copyright (c) 2006
-
+
qBittorrent
qBittorrent
@@ -1563,7 +1573,7 @@ qBittorrent beobachtet das Verzeichniss und starten den Download von vorhandenen
<b>qBittorrent</b><br>DL Geschwindigkeit:
-
+
Finished
Beendet
@@ -1906,7 +1916,7 @@ Bitte schliessen Sie diesen zuerst.
qBittorrent %1
-
+
Connection status:
Verbindungs-Status:
@@ -1981,13 +1991,13 @@ Bitte schliessen Sie diesen zuerst.
qBittorrent %1 gestartet.
-
+
DL speed: %1 KiB/s
e.g: Download speed: 10 KiB/s
DL Geschwindigkeit: %1 KB/s
-
+
UP speed: %1 KiB/s
e.g: Upload speed: 10 KiB/s
UP Geschwindigkeit: %1 KiB/s
@@ -2110,12 +2120,12 @@ Bitte schliessen Sie diesen zuerst.
Ein Fehler ist aufgetreten (Festplatte voll?), '%1' angehalten.
-
+
Connection Status:
Verbindungs-Status:
-
+
Online
Online
@@ -2180,22 +2190,22 @@ Bitte schliessen Sie diesen zuerst.
qBittorrent lauscht auf Port: %1
-
+
DHT support [ON], port: %1
DHT Unterstützung [Aktiviert], port: %1
-
+
DHT support [OFF]
DHT Unterstützung [Deaktiviert]
-
+
PeX support [ON]
PeX Unterstützung [Aktiviert]
-
+
PeX support [OFF]
PeX Unterstützung [Deaktiviert]
@@ -2207,7 +2217,7 @@ Are you sure you want to quit qBittorrent?
Möchten sie qBittorrent wirklich beenden?
-
+
Downloads
Downloads
@@ -2232,17 +2242,17 @@ Möchten sie qBittorrent wirklich beenden?
ACHTUNG! Die Verbreitung von urheberrechlich geschütztem Material ist gegen das Gesetz.
-
+
Encryption support [ON]
Verschlüsselung Unterstützung [Aktiviert]
-
+
Encryption support [FORCED]
Verschlüsselung Unterstützung [Erzwungen]
-
+
Encryption support [OFF]
Verschlüsselungs-Unterstützung [Deaktiviert]
@@ -2345,12 +2355,12 @@ Möchten sie qBittorrent wirklich beenden?
NAT-PMP Unterstützung [AUS]
-
+
Local Peer Discovery [ON]
Lokale Peer Auffindung [AN]
-
+
Local Peer Discovery support [OFF]
Unterstützung für Lokale Peer Auffindung [AUS]
@@ -2361,18 +2371,18 @@ Möchten sie qBittorrent wirklich beenden?
'%1' wurde entfernt, weil das von Ihnen eingestellte maximale Verhältnis erreicht wurde.
-
+
qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)
%1 is qBittorrent version
qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)
-
+
DL: %1 KiB/s
-
+
UP: %1 KiB/s
@@ -2387,7 +2397,7 @@ Möchten sie qBittorrent wirklich beenden?
-
+
No direct connections. This may indicate network configuration problems.
@@ -2397,7 +2407,7 @@ Möchten sie qBittorrent wirklich beenden?
-
+
Options were saved successfully.
Optionen wurden erfolgreich gespeichert.
@@ -2936,13 +2946,13 @@ Möchten sie qBittorrent wirklich beenden?
RssStream
-
+
%1 ago
10min ago
vor %1
-
+
Never
Niemals
@@ -4403,7 +4413,7 @@ Die Plugins wurden jedoch deaktiviert.
Optionen wurden erfolgreich gespeichert.
-
+
Choose scan directory
Verzeichnis zum scannen auswählen
@@ -4413,7 +4423,7 @@ Die Plugins wurden jedoch deaktiviert.
ipfilter.dat Datei auswählen
-
+
Choose a save directory
Verzeichnis zum Speichern auswählen
@@ -4423,12 +4433,12 @@ Die Plugins wurden jedoch deaktiviert.
Kein Lesezugriff auf %1.
-
+
Choose an ip filter file
IP-Filter-Datei wählen
-
+
Filters
Filter
diff --git a/src/lang/qbittorrent_el.qm b/src/lang/qbittorrent_el.qm
index 49428bbea..78a8757b6 100644
Binary files a/src/lang/qbittorrent_el.qm and b/src/lang/qbittorrent_el.qm differ
diff --git a/src/lang/qbittorrent_el.ts b/src/lang/qbittorrent_el.ts
index 2dfd35551..93fb28628 100644
--- a/src/lang/qbittorrent_el.ts
+++ b/src/lang/qbittorrent_el.ts
@@ -275,7 +275,7 @@ Copyright © 2006 από τον Christophe Dumez<br>
Εύρος Θύρας:
-
+
...
...
@@ -300,14 +300,14 @@ Copyright © 2006 από τον Christophe Dumez<br>
προς
-
+
Proxy
- Proxy
+ Proxy
Proxy Settings
- Ρυθμίσεις Proxy
+ Ρυθμίσεις Proxy
@@ -320,7 +320,7 @@ Copyright © 2006 από τον Christophe Dumez<br>
0.0.0.0
-
+
Port:
Θύρα:
@@ -330,7 +330,7 @@ Copyright © 2006 από τον Christophe Dumez<br>
Ο εξυπηρετητής Proxy ζητά πιστοποίηση
-
+
Authentication
Πιστοποίηση
@@ -340,7 +340,7 @@ Copyright © 2006 από τον Christophe Dumez<br>
Όνομα Χρήστη:
-
+
Password:
Κωδικός:
@@ -435,12 +435,12 @@ Copyright © 2006 από τον Christophe Dumez<br>
Μέγ. KB Up.
-
+
Activate IP Filtering
Ενεργοποίηση Φιλτραρίσματος ΙΡ
-
+
Filter Settings
Ρυθμίσεις Φίλτρου
@@ -515,7 +515,7 @@ Copyright © 2006 από τον Christophe Dumez<br>
Εμφάνιση στην μπάρα συστήματος κατά την ελαχιστοποίηση παραθύρου
-
+
Misc
Άλλα
@@ -555,7 +555,7 @@ Copyright © 2006 από τον Christophe Dumez<br>
Απόκρυψη OSD
-
+
KiB/s
KiB/s
@@ -750,37 +750,37 @@ Copyright © 2006 από τον Christophe Dumez<br>
Τύπος Proxy:
-
+
HTTP
HTTP
-
+
SOCKS5
SOCKS5
-
+
Affected connections
Επηρεασμένες συνδέσεις
-
+
Use proxy for connections to trackers
Χρήση proxy για σύνδεση με ιχνηλάτες
-
+
Use proxy for connections to regular peers
Χρήση proxy για σύνδεση με όλους τους χρήστες
-
+
Use proxy for connections to web seeds
Χρήση proxy για σύνδεση με διαμοιραστές διαδικτύου
-
+
Use proxy for DHT messages
Χρήση proxy για μηνύματα DHT
@@ -795,17 +795,17 @@ Copyright © 2006 από τον Christophe Dumez<br>
Κατάσταση κρυπτογράφησης:
-
+
Enabled
Ενεργοποιημένο
-
+
Forced
Αναγκαστικά
-
+
Disabled
Απενεργοποιημένο
@@ -944,102 +944,102 @@ Copyright © 2006 από τον Christophe Dumez<br>
Ενεργοποίηση χαρτογράφησης θυρών NAT-PMP
-
+
Global bandwidth limiting
Συνολικό όριο σύνδεσης
-
+
Upload:
Ανέβασμα:
-
+
Download:
Κατέβασμα:
-
+
Type:
Είδος:
-
+
(None)
(Κανένα)
-
+
Proxy:
Proxy:
-
+
Username:
Όνομα χρήστη:
-
+
Bittorrent
Bittorrent
-
+
Connections limit
Όριο συνδέσεων
-
+
Global maximum number of connections:
Συνολικός αριθμός μεγίστων συνδέσεων:
-
+
Maximum number of connections per torrent:
Μέγιστος αριθμός συνδέσεων ανά τορεντ:
-
+
Maximum number of upload slots per torrent:
Μέγιστες θυρίδες ανεβάσματος ανά τορεντ:
-
+
Additional Bittorrent features
Πρόσθετα χαρακτηριστικά Bittorrent
-
+
Enable DHT network (decentralized)
Ενεργοποίηση δικτύου DHT (αποκεντροποιημένο)
-
+
Enable Peer eXchange (PeX)
Ενεργοποίηση Μοιράσματος Συνδέσεων (PeX)
-
+
Enable Local Peer Discovery
Ενεργοποίηση Ανακάλυψης Νέων Συνδέσεων
-
+
Encryption:
Κρυπτογράφηση:
-
+
Share ratio settings
Ρυθμίσεις ποσοστού μοιράσματος
-
+
Desired ratio:
Επιθυμητή αναλογία:
-
+
Filter file path:
Διαδρομή αρχείου φίλτρου:
@@ -1054,22 +1054,22 @@ Copyright © 2006 από τον Christophe Dumez<br>
ms
-
+
RSS
RSS
-
+
RSS feeds refresh interval:
χρονικό διάστημα ανανέωσης παροχών RSS:
-
+
minutes
λεπτά
-
+
Maximum number of articles per feed:
Μέγιστος αριθμός άρθρων ανά τροφοδοσία:
@@ -1079,7 +1079,7 @@ Copyright © 2006 από τον Christophe Dumez<br>
Σύστημα αρχείων
-
+
Remove finished torrents when their ratio reaches:
Αφαίρεση τελειωμένων τορεντ όταν η αναλογία τους φτάσει στο:
@@ -1135,52 +1135,52 @@ Copyright © 2006 από τον Christophe Dumez<br>
δευτερόλεπτα
-
+
Spoof Azureus to avoid ban (requires restart)
Προσομοίωση σε Azureus για αποφυγή ban (απαιτεί επανεκκίνηση)
-
+
Web UI
Web UI
-
+
Enable Web User Interface
Ενεργοποίηση Interface Δικτυακού Χρήστη
-
+
HTTP Server
Διακομοιστής HTTP
-
+
Enable RSS support
-
+
RSS settings
-
+
Torrent queueing
-
+
Enable queueing system
-
+
Maximum active downloads:
-
+
Maximum active torrents:
@@ -1189,6 +1189,16 @@ Copyright © 2006 από τον Christophe Dumez<br>
Display top toolbar
+
+
+ Search engine proxy settings
+
+
+
+
+ Bittorrent proxy settings
+
+
DownloadingTorrents
@@ -1504,7 +1514,7 @@ Copyright © 2006 από τον Christophe Dumez<br>
kb/s
-
+
Finished
Τελείωσε
@@ -1631,7 +1641,7 @@ Copyright © 2006 από τον Christophe Dumez<br>
qBittorrent
-
+
qBittorrent
qBittorrent
@@ -2001,7 +2011,7 @@ Please close the other one first.
qBittorrent %1
-
+
Connection status:
Κατάσταση Σύνδεσης:
@@ -2076,13 +2086,13 @@ Please close the other one first.
Εκκινήθηκε το qBittorrent %1.
-
+
DL speed: %1 KiB/s
e.g: Download speed: 10 KiB/s
Ταχύτητα Κατεβάσματος: %1 KiB/s
-
+
UP speed: %1 KiB/s
e.g: Upload speed: 10 KiB/s
Ταχύτητα Ανεβάσματος: %1 KiB/s
@@ -2205,12 +2215,12 @@ Please close the other one first.
Ένα σφάλμα προέκυψε (δίσκος πλήρης?), το '%1' είναι σε παύση.
-
+
Connection Status:
Κατάσταση Σύνδεσης:
-
+
Online
Online
@@ -2275,22 +2285,22 @@ Please close the other one first.
Το qBittorrent χρησιμοποιεί τη θύρα: %1
-
+
DHT support [ON], port: %1
Υποστήριξη DHT [ΝΑΙ], θύρα: %1
-
+
DHT support [OFF]
Υποστήριξη DHT [ΟΧΙ]
-
+
PeX support [ON]
Υποστήριξη PeX [ΝΑΙ]
-
+
PeX support [OFF]
Υποστήριξη PeX [ΟΧΙ]
@@ -2302,7 +2312,7 @@ Are you sure you want to quit qBittorrent?
Σίγουρα θέλετε να κλείσετε το qBittorrent?
-
+
Downloads
Κατέβασματα
@@ -2322,17 +2332,17 @@ Are you sure you want to quit qBittorrent?
Προσοχή, η διακίνηση υλικού προστατευόμενου από πνευματικά δικαιώματα χωρίς άδεια είναι παράνομη.
-
+
Encryption support [ON]
Υποστήριξη κρυπτογράφησης [ΝΑΙ]
-
+
Encryption support [FORCED]
Υποστήριξη κρυπτογράφησης [ΑΝΑΓΚΑΣΤΙΚΑ]
-
+
Encryption support [OFF]
Υποστήριξη κρυπτογράφησης [ΟΧΙ]
@@ -2435,12 +2445,12 @@ Are you sure you want to quit qBittorrent?
Υποστήριξη NAT-PMP [OXI]
-
+
Local Peer Discovery [ON]
Ανακάλυψη Τοπικών Συνδέσεων [ΝΑΙ]
-
+
Local Peer Discovery support [OFF]
Ανακάλυψη Τοπικών Συνδέσεων [ΟΧΙ]
@@ -2451,18 +2461,18 @@ Are you sure you want to quit qBittorrent?
Το '%1' αφαιρέθηκε επειδή η αναλογία του έφτασε τη μέγιστη τιμή που θέσατε.
-
+
qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)
%1 is qBittorrent version
qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)
-
+
DL: %1 KiB/s
-
+
UP: %1 KiB/s
@@ -2477,7 +2487,7 @@ Are you sure you want to quit qBittorrent?
-
+
No direct connections. This may indicate network configuration problems.
@@ -2487,7 +2497,7 @@ Are you sure you want to quit qBittorrent?
-
+
Options were saved successfully.
Οι επιλογές αποθηκεύτηκαν επιτυχώς.
@@ -3026,13 +3036,13 @@ Are you sure you want to quit qBittorrent?
RssStream
-
+
%1 ago
10min ago
%1 πριν
-
+
Never
Ποτέ
@@ -4510,7 +4520,7 @@ However, those plugins were disabled.
Οι επιλογές αποθηκεύτηκαν επιτυχώς.
-
+
Choose scan directory
Επιλέξτε φάκελο αναζήτησης
@@ -4520,7 +4530,7 @@ However, those plugins were disabled.
Επιλέξτε ένα αρχείο ipfilter.dat
-
+
Choose a save directory
Επιλέξτε φάκελο αποθήκευσης
@@ -4536,12 +4546,12 @@ However, those plugins were disabled.
Αδύνατο το άνοιγμα του %1 σε λειτουργία ανάγνωσης.
-
+
Choose an ip filter file
Επιλέξτε ένα αρχείο φίλτρου ip
-
+
Filters
Φίλτρα
diff --git a/src/lang/qbittorrent_en.qm b/src/lang/qbittorrent_en.qm
index 54d7e4ab7..ca5a56666 100644
Binary files a/src/lang/qbittorrent_en.qm and b/src/lang/qbittorrent_en.qm differ
diff --git a/src/lang/qbittorrent_en.ts b/src/lang/qbittorrent_en.ts
index 1dce70b0a..c2cf466f5 100644
--- a/src/lang/qbittorrent_en.ts
+++ b/src/lang/qbittorrent_en.ts
@@ -169,37 +169,32 @@ Copyright © 2006 by Christophe Dumez<br>
-
+
...
-
- Proxy Settings
-
-
-
-
+
Port:
-
+
Authentication
-
+
Password:
-
+
Activate IP Filtering
-
+
Filter Settings
@@ -209,7 +204,7 @@ Copyright © 2006 by Christophe Dumez<br>
-
+
KiB/s
@@ -234,52 +229,52 @@ Copyright © 2006 by Christophe Dumez<br>
-
+
HTTP
-
+
SOCKS5
-
+
Affected connections
-
+
Use proxy for connections to trackers
-
+
Use proxy for connections to regular peers
-
+
Use proxy for connections to web seeds
-
+
Use proxy for DHT messages
-
+
Enabled
-
+
Forced
-
+
Disabled
@@ -413,102 +408,102 @@ Copyright © 2006 by Christophe Dumez<br>
-
+
Global bandwidth limiting
-
+
Upload:
-
+
Download:
-
+
Type:
-
+
(None)
-
+
Proxy:
-
+
Username:
-
+
Bittorrent
-
+
Connections limit
-
+
Global maximum number of connections:
-
+
Maximum number of connections per torrent:
-
+
Maximum number of upload slots per torrent:
-
+
Additional Bittorrent features
-
+
Enable DHT network (decentralized)
-
+
Enable Peer eXchange (PeX)
-
+
Enable Local Peer Discovery
-
+
Encryption:
-
+
Share ratio settings
-
+
Desired ratio:
-
+
Filter file path:
@@ -523,27 +518,27 @@ Copyright © 2006 by Christophe Dumez<br>
-
+
Misc
-
+
RSS
-
+
RSS feeds refresh interval:
-
+
minutes
-
+
Maximum number of articles per feed:
@@ -553,7 +548,7 @@ Copyright © 2006 by Christophe Dumez<br>
-
+
Remove finished torrents when their ratio reaches:
@@ -609,52 +604,52 @@ Copyright © 2006 by Christophe Dumez<br>
-
+
Spoof Azureus to avoid ban (requires restart)
-
+
Web UI
-
+
Enable Web User Interface
-
+
HTTP Server
-
+
Enable RSS support
-
+
RSS settings
-
+
Enable queueing system
-
+
Maximum active downloads:
-
+
Torrent queueing
-
+
Maximum active torrents:
@@ -663,6 +658,21 @@ Copyright © 2006 by Christophe Dumez<br>
Display top toolbar
+
+
+ Proxy
+
+
+
+
+ Search engine proxy settings
+
+
+
+
+ Bittorrent proxy settings
+
+
DownloadingTorrents
@@ -853,23 +863,23 @@ Copyright © 2006 by Christophe Dumez<br>
-
+
Connection status:
-
+
qBittorrent
-
+
DL speed: %1 KiB/s
e.g: Download speed: 10 KiB/s
-
+
UP speed: %1 KiB/s
e.g: Upload speed: 10 KiB/s
@@ -898,12 +908,12 @@ Copyright © 2006 by Christophe Dumez<br>
-
+
Connection Status:
-
+
Online
@@ -930,22 +940,22 @@ Copyright © 2006 by Christophe Dumez<br>
-
+
DHT support [ON], port: %1
-
+
DHT support [OFF]
-
+
PeX support [ON]
-
+
PeX support [OFF]
@@ -956,12 +966,12 @@ Are you sure you want to quit qBittorrent?
-
+
Downloads
-
+
Finished
@@ -976,17 +986,17 @@ Are you sure you want to quit qBittorrent?
-
+
Encryption support [ON]
-
+
Encryption support [FORCED]
-
+
Encryption support [OFF]
@@ -1056,28 +1066,28 @@ Are you sure you want to quit qBittorrent?
-
+
Local Peer Discovery [ON]
-
+
Local Peer Discovery support [OFF]
-
+
qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)
%1 is qBittorrent version
-
+
DL: %1 KiB/s
-
+
UP: %1 KiB/s
@@ -1092,7 +1102,7 @@ Are you sure you want to quit qBittorrent?
-
+
No direct connections. This may indicate network configuration problems.
@@ -1102,7 +1112,7 @@ Are you sure you want to quit qBittorrent?
-
+
Options were saved successfully.
@@ -1438,13 +1448,13 @@ Are you sure you want to quit qBittorrent?
RssStream
-
+
%1 ago
10min ago
-
+
Never
@@ -2392,22 +2402,22 @@ However, those plugins were disabled.
options_imp
-
+
Choose scan directory
-
+
Choose a save directory
-
+
Choose an ip filter file
-
+
Filters
diff --git a/src/lang/qbittorrent_es.qm b/src/lang/qbittorrent_es.qm
index 550bca052..43ac150d0 100644
Binary files a/src/lang/qbittorrent_es.qm and b/src/lang/qbittorrent_es.qm differ
diff --git a/src/lang/qbittorrent_es.ts b/src/lang/qbittorrent_es.ts
index b1c8bdc8e..a2b60cfae 100644
--- a/src/lang/qbittorrent_es.ts
+++ b/src/lang/qbittorrent_es.ts
@@ -238,7 +238,7 @@ Copyright © 2006 por Christophe Dumez<br>
Rango de Puertos:
-
+
...
...
@@ -263,14 +263,14 @@ Copyright © 2006 por Christophe Dumez<br>
hasta
-
+
Proxy
- Proxy
+ Proxy
Proxy Settings
- Configuración del Proxy
+ Configuración del Proxy
@@ -283,7 +283,7 @@ Copyright © 2006 por Christophe Dumez<br>
0.0.0.0
-
+
Port:
Puerto:
@@ -293,7 +293,7 @@ Copyright © 2006 por Christophe Dumez<br>
El servidor Proxy requiere autentificarse
-
+
Authentication
Autenticación
@@ -303,7 +303,7 @@ Copyright © 2006 por Christophe Dumez<br>
Nombre de Usuario:
-
+
Password:
Contraseña:
@@ -368,12 +368,12 @@ Copyright © 2006 por Christophe Dumez<br>
KB de subida max.
-
+
Activate IP Filtering
Activar Filtro de IP
-
+
Filter Settings
Preferencias del Filtro
@@ -453,7 +453,7 @@ Copyright © 2006 por Christophe Dumez<br>
Mandar a la barra de tareas al minimizar ventana
-
+
Misc
Misceláneos
@@ -493,7 +493,7 @@ Copyright © 2006 por Christophe Dumez<br>
No mostrar nunca OSD
-
+
KiB/s
KiB/s
@@ -688,37 +688,37 @@ Copyright © 2006 por Christophe Dumez<br>
Tipo de proxy:
-
+
HTTP
HTTP
-
+
SOCKS5
SOCKS5
-
+
Affected connections
Conexiones afectadas
-
+
Use proxy for connections to trackers
Usar proxy para las conexiones a trackers
-
+
Use proxy for connections to regular peers
Usar proxy para las conexiones a peers regulares
-
+
Use proxy for connections to web seeds
Usar proxy para las conexiones a semillas de web
-
+
Use proxy for DHT messages
Usar proxy para mensajes DHT
@@ -733,17 +733,17 @@ Copyright © 2006 por Christophe Dumez<br>
Estado de encriptación:
-
+
Enabled
Habilitado
-
+
Forced
Forzado
-
+
Disabled
Deshabilitado
@@ -882,102 +882,102 @@ Copyright © 2006 por Christophe Dumez<br>
Habilitar mapeo de puertos NAT-PMP
-
+
Global bandwidth limiting
Limite global de ancho de banda
-
+
Upload:
Subida:
-
+
Download:
Descarga:
-
+
Type:
Tipo:
-
+
(None)
(Ninguno)
-
+
Proxy:
Proxy:
-
+
Username:
Nombre de Usuario:
-
+
Bittorrent
Bittorrent
-
+
Connections limit
Límite de conexiones
-
+
Global maximum number of connections:
Número global máximo de conexiones:
-
+
Maximum number of connections per torrent:
Número máximo de conexinoes por torrent:
-
+
Maximum number of upload slots per torrent:
Número máximo de slots de subida por torrent:
-
+
Additional Bittorrent features
Funcionalidades adicionales de bittorrent
-
+
Enable DHT network (decentralized)
Habilitar red DHT (descentralizada)
-
+
Enable Peer eXchange (PeX)
Habilitar Peer eXchange (PeX)
-
+
Enable Local Peer Discovery
Habilitar descubrimiento local de peers
-
+
Encryption:
Encripción:
-
+
Share ratio settings
Preferencias de radio de compartición
-
+
Desired ratio:
Radio deseado:
-
+
Filter file path:
Ruta de archivos de filtro:
@@ -992,22 +992,22 @@ Copyright © 2006 por Christophe Dumez<br>
ms
-
+
RSS
RSS
-
+
RSS feeds refresh interval:
Intervalo de actualización de feeds de RSS:
-
+
minutes
minutos
-
+
Maximum number of articles per feed:
Número máximo de artículos por feed:
@@ -1017,7 +1017,7 @@ Copyright © 2006 por Christophe Dumez<br>
Sistema de archivos
-
+
Remove finished torrents when their ratio reaches:
Eliminar torrents terminados cuando su radio llega a:
@@ -1073,52 +1073,52 @@ Copyright © 2006 por Christophe Dumez<br>
segundos
-
+
Spoof Azureus to avoid ban (requires restart)
Engañar a Azureus para evitar ban (requiere reiniciar)
-
+
Web UI
IU Web
-
+
Enable Web User Interface
Habilitar Interfaz de Usuario Web
-
+
HTTP Server
Servidor HTTP
-
+
Enable RSS support
-
+
RSS settings
-
+
Torrent queueing
-
+
Enable queueing system
-
+
Maximum active downloads:
-
+
Maximum active torrents:
@@ -1127,6 +1127,16 @@ Copyright © 2006 por Christophe Dumez<br>
Display top toolbar
+
+
+ Search engine proxy settings
+
+
+
+
+ Bittorrent proxy settings
+
+
DownloadingTorrents
@@ -1532,7 +1542,7 @@ Copyright © 2006 por Christophe Dumez<br>
continuada.
-
+
Finished
Terminada
@@ -1585,7 +1595,7 @@ Copyright © 2006 por Christophe Dumez<br>
qBittorrent
-
+
qBittorrent
qBittorrent
@@ -1930,7 +1940,7 @@ Por favor cierra el otro antes.
qBittorrent %1
-
+
Connection status:
Estado de la conexión:
@@ -2005,13 +2015,13 @@ Por favor cierra el otro antes.
qBittorrent %1 iniciado.
-
+
DL speed: %1 KiB/s
e.g: Download speed: 10 KiB/s
Velocidad de Descarga: %1 KiB/s
-
+
UP speed: %1 KiB/s
e.g: Upload speed: 10 KiB/s
Velocidad de subida: %1 KiB/s
@@ -2134,12 +2144,12 @@ Por favor cierra el otro antes.
Un error ocurrió (¿disco lleno?), '%1' pausado.
-
+
Connection Status:
Estado de la conexión:
-
+
Online
En línea
@@ -2204,22 +2214,22 @@ Por favor cierra el otro antes.
qBittorrent está asignado al puerto: %1
-
+
DHT support [ON], port: %1
Soporte para DHT [encendido], puerto: %1
-
+
DHT support [OFF]
Soporte para DHT [apagado]
-
+
PeX support [ON]
Soporte para PeX [encendido]
-
+
PeX support [OFF]
Soporte para PeX [apagado]
@@ -2231,7 +2241,7 @@ Are you sure you want to quit qBittorrent?
¿En verdad deseas salir de qBittorrent?
-
+
Downloads
Descargas
@@ -2251,17 +2261,17 @@ Are you sure you want to quit qBittorrent?
Ten cuidado, compartir material protegido sin permiso es ilegal.
-
+
Encryption support [ON]
Soporte para encriptado [encendido]
-
+
Encryption support [FORCED]
Soporte para encriptado [forzado]
-
+
Encryption support [OFF]
Sopote para encriptado [apagado]
@@ -2370,28 +2380,28 @@ Are you sure you want to quit qBittorrent?
Soporte para NAT-PMP[Apagado]
-
+
Local Peer Discovery [ON]
Descubrimiento local de Peers [Encendido]
-
+
Local Peer Discovery support [OFF]
Soporte para descubrimiento local de Peers [Apagado]
-
+
qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)
%1 is qBittorrent version
qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)
-
+
DL: %1 KiB/s
-
+
UP: %1 KiB/s
@@ -2406,7 +2416,7 @@ Are you sure you want to quit qBittorrent?
-
+
No direct connections. This may indicate network configuration problems.
@@ -2416,7 +2426,7 @@ Are you sure you want to quit qBittorrent?
-
+
Options were saved successfully.
Opciones guardadas exitosamente.
@@ -2955,13 +2965,13 @@ Are you sure you want to quit qBittorrent?
RssStream
-
+
%1 ago
10min ago
Hace %1
-
+
Never
Nunca
@@ -4422,7 +4432,7 @@ De cualquier forma, esos plugins fueron deshabilitados.
Opciones guardadas exitosamente.
-
+
Choose scan directory
Selecciona un directorio a inspeccionar
@@ -4432,7 +4442,7 @@ De cualquier forma, esos plugins fueron deshabilitados.
Selecciona un archivo ipfilter.dat
-
+
Choose a save directory
Selecciona un directorio para guardar
@@ -4448,12 +4458,12 @@ De cualquier forma, esos plugins fueron deshabilitados.
No se pudo abrir %1 en modo lectura.
-
+
Choose an ip filter file
Selecciona un archivo de filtro de ip
-
+
Filters
Filtros
diff --git a/src/lang/qbittorrent_fi.qm b/src/lang/qbittorrent_fi.qm
index d425f64db..d3cc7bda5 100644
Binary files a/src/lang/qbittorrent_fi.qm and b/src/lang/qbittorrent_fi.qm differ
diff --git a/src/lang/qbittorrent_fi.ts b/src/lang/qbittorrent_fi.ts
index c8545421c..033523193 100644
--- a/src/lang/qbittorrent_fi.ts
+++ b/src/lang/qbittorrent_fi.ts
@@ -167,12 +167,12 @@ Tekijänoikeus © 2006 Christophe Dumez<br>
Dialog
-
+
...
...
-
+
Activate IP Filtering
Käytä IP-suodatusta
@@ -202,7 +202,7 @@ Tekijänoikeus © 2006 Christophe Dumez<br>
Multimediatoistin:
-
+
Authentication
Sisäänkirjautuminen
@@ -307,7 +307,7 @@ Tekijänoikeus © 2006 Christophe Dumez<br>
Loppu
-
+
Filter Settings
Suotimen asetukset
@@ -327,7 +327,7 @@ Tekijänoikeus © 2006 Christophe Dumez<br>
ipfilter.datin sijainti:
-
+
KiB/s
KiB/s
@@ -362,7 +362,7 @@ Tekijänoikeus © 2006 Christophe Dumez<br>
Yhteyksiä enint:
-
+
Misc
Lisäasetukset
@@ -392,12 +392,12 @@ Tekijänoikeus © 2006 Christophe Dumez<br>
Lähde
-
+
Password:
Salasana:
-
+
Port:
Portti:
@@ -412,9 +412,9 @@ Tekijänoikeus © 2006 Christophe Dumez<br>
Esikatseluohjelma
-
+
Proxy
- Välityspalvelin
+ Välityspalvelin
@@ -424,7 +424,7 @@ Tekijänoikeus © 2006 Christophe Dumez<br>
Proxy Settings
- Välityspalvelinasetukset
+ Välityspalvelinasetukset
@@ -497,52 +497,52 @@ Tekijänoikeus © 2006 Christophe Dumez<br>
CDE-tyyli (Common Dekstop Environment)
-
+
HTTP
HTTP
-
+
SOCKS5
SOCKS5
-
+
Affected connections
Käytä yhteyksille
-
+
Use proxy for connections to trackers
Käytä välityspalvelinta seurantapalvelinyhteyksiin
-
+
Use proxy for connections to regular peers
Käytä välityspalvelinta yhteyksiin muiden käyttäjien kanssa
-
+
Use proxy for connections to web seeds
Käytä välityspalvelinta web-lähettäjiin
-
+
Use proxy for DHT messages
Käytä välityspalvelinta DHT-viesteihin
-
+
Enabled
Käytössä
-
+
Forced
Pakotettu
-
+
Disabled
Ei käytössä
@@ -676,102 +676,102 @@ Tekijänoikeus © 2006 Christophe Dumez<br>
Käytä NAT-PMP -porttivarausta
-
+
Global bandwidth limiting
Kaistankäyttörajoitukset
-
+
Upload:
Lähetys:
-
+
Download:
Lataus:
-
+
Type:
Tyyppi:
-
+
(None)
(ei mikään)
-
+
Proxy:
Välityspalvelin:
-
+
Username:
Tunnus:
-
+
Bittorrent
Bittorrent
-
+
Connections limit
Yhteyksien enimmäismäärä
-
+
Global maximum number of connections:
Kaikkien yhteyksien enimmäismäärä:
-
+
Maximum number of connections per torrent:
Yhteyksien enimmäismäärä latausta kohden:
-
+
Maximum number of upload slots per torrent:
Lähetyspaikkoja torrentia kohden:
-
+
Additional Bittorrent features
Muut Bittorrent-ominaisuudet
-
+
Enable DHT network (decentralized)
Käytä hajautettua DHT-verkkoa
-
+
Enable Peer eXchange (PeX)
Vaihda tietoja muiden käyttäjien kanssa (Peer eXchange)
-
+
Enable Local Peer Discovery
Käytä paikallista käyttäjien löytämistä
-
+
Encryption:
Salaus:
-
+
Share ratio settings
Jakosuhteen asetukset
-
+
Desired ratio:
Tavoiteltu suhde:
-
+
Filter file path:
Suodatustiedoston sijainti:
@@ -786,22 +786,22 @@ Tekijänoikeus © 2006 Christophe Dumez<br>
ms
-
+
RSS
RSS
-
+
RSS feeds refresh interval:
RSS-syötteen päivitystiheys:
-
+
minutes
minuuttia
-
+
Maximum number of articles per feed:
Artikkeleiden enimmäismäärä syötettä kohden:
@@ -811,7 +811,7 @@ Tekijänoikeus © 2006 Christophe Dumez<br>
Tiedostojärjestelmä
-
+
Remove finished torrents when their ratio reaches:
Poista valmistuneet torrentit, kun jakosuhde saa arvon:
@@ -867,52 +867,52 @@ Tekijänoikeus © 2006 Christophe Dumez<br>
sekuntia
-
+
Spoof Azureus to avoid ban (requires restart)
Esitä Azureusta (vaatii uudelleenkäynnistyksen)
-
+
Web UI
Verkkokäyttöliittymä
-
+
Enable Web User Interface
Käytä verkkokäyttöliittymää
-
+
HTTP Server
HTTP-palvelin
-
+
Enable RSS support
-
+
RSS settings
-
+
Enable queueing system
-
+
Maximum active downloads:
-
+
Torrent queueing
-
+
Maximum active torrents:
@@ -921,6 +921,16 @@ Tekijänoikeus © 2006 Christophe Dumez<br>
Display top toolbar
+
+
+ Search engine proxy settings
+
+
+
+
+ Bittorrent proxy settings
+
+
DownloadingTorrents
@@ -1324,7 +1334,7 @@ Tekijänoikeus © 2006 Christophe Dumez<br>
ETA
-
+
Finished
Valmis
@@ -1584,7 +1594,7 @@ Uutta esikatselua ei voi aloittaa.
qBittorrent %1
-
+
Connection status:
Yhteyden tila:
@@ -1647,18 +1657,18 @@ Uutta esikatselua ei voi aloittaa.
Lataajia
-
+
qBittorrent
qBittorrent
-
+
DL speed: %1 KiB/s
e.g: Download speed: 10 KiB/s
Latausnopeus: %1 KiB/s
-
+
UP speed: %1 KiB/s
e.g: Upload speed: 10 KiB/s
Lähetysnopeus: %1 KiB/s
@@ -1745,12 +1755,12 @@ Uutta esikatselua ei voi aloittaa.
Tiedostoon %1 kirjoittaminen tai lukeminen epäonnistui. Levy saattaa olla täynnä. Lataus pysäytettiin.
-
+
Connection Status:
Yhteyden tila:
-
+
Online
Ei verkkoyhteyttä
@@ -1794,22 +1804,22 @@ Uutta esikatselua ei voi aloittaa.
qBittorrent kuuntelee porttia %1
-
+
DHT support [ON], port: %1
DHT-tuki [PÄÄLLÄ] portissa %1
-
+
DHT support [OFF]
DHT-tuki [EI PÄÄLLÄ]
-
+
PeX support [ON]
PeX-tuki [PÄÄLLÄ]
-
+
PeX support [OFF]
PeX-tuki [EI PÄÄLLÄ]
@@ -1821,7 +1831,7 @@ Are you sure you want to quit qBittorrent?
Haluatko varmasti lopettaa?
-
+
Downloads
Lataukset
@@ -1836,17 +1846,17 @@ Haluatko varmasti lopettaa?
UPnP-tuki [PÄÄLLÄ]
-
+
Encryption support [ON]
Salaus [KÄYTÖSSÄ]
-
+
Encryption support [FORCED]
Salaus [PAKOTETTU]
-
+
Encryption support [OFF]
Salaus [EI KÄYTÖSSÄ]
@@ -1922,12 +1932,12 @@ Haluatko varmasti lopettaa?
NAT-PMP-tuki [EI PÄÄLLÄ]
-
+
Local Peer Discovery [ON]
Paikallinen käyttäjien löytäminen [PÄÄLLÄ]
-
+
Local Peer Discovery support [OFF]
Paikallinen käyttäjien löytäminen [EI PÄÄLLÄ]
@@ -1938,18 +1948,18 @@ Haluatko varmasti lopettaa?
”%1% poistettiin, koska sen jakosuhde saavutti asettamasi enimmäisarvon.
-
+
qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)
%1 is qBittorrent version
qBittorrent %1 (← %2 KiB/s | → %3 KiB/s)
-
+
DL: %1 KiB/s
-
+
UP: %1 KiB/s
@@ -1964,7 +1974,7 @@ Haluatko varmasti lopettaa?
-
+
No direct connections. This may indicate network configuration problems.
@@ -1974,7 +1984,7 @@ Haluatko varmasti lopettaa?
-
+
Options were saved successfully.
Asetukset tallennettiin.
@@ -2420,13 +2430,13 @@ Haluatko varmasti lopettaa?
RssStream
-
+
%1 ago
10min ago
%1 sitten
-
+
Never
Ei koskaan
@@ -3759,7 +3769,7 @@ Kyseiset liitänäiset poistettiin kuitenkin käytöstä.
Asetukset tallennettiin.
-
+
Choose scan directory
Valitse hakukansio
@@ -3769,7 +3779,7 @@ Kyseiset liitänäiset poistettiin kuitenkin käytöstä.
Valitse ipfilter.dat-tiedosto
-
+
Choose a save directory
Valitse tallennuskansio
@@ -3785,12 +3795,12 @@ Kyseiset liitänäiset poistettiin kuitenkin käytöstä.
Tiedoston %1 avaaminen lukutilassa epäonnistui.
-
+
Choose an ip filter file
Valitse IP-suodatintiedosto
-
+
Filters
Suotimet
diff --git a/src/lang/qbittorrent_fr.qm b/src/lang/qbittorrent_fr.qm
index abb488c93..0df3d81e8 100644
Binary files a/src/lang/qbittorrent_fr.qm and b/src/lang/qbittorrent_fr.qm differ
diff --git a/src/lang/qbittorrent_fr.ts b/src/lang/qbittorrent_fr.ts
index 5373e8a53..b9d8de7b7 100644
--- a/src/lang/qbittorrent_fr.ts
+++ b/src/lang/qbittorrent_fr.ts
@@ -338,7 +338,7 @@ Copyright © 2006 par Christophe Dumez<br>
Rangée Ports :
-
+
...
...
@@ -365,7 +365,7 @@ Copyright © 2006 par Christophe Dumez<br>
Proxy Settings
- Paramètres Proxy
+ Paramètres Proxy
@@ -373,7 +373,7 @@ Copyright © 2006 par Christophe Dumez<br>
IP du serveur :
-
+
Port:
Port :
@@ -383,7 +383,7 @@ Copyright © 2006 par Christophe Dumez<br>
Le serveur proxy nécessite une authentification
-
+
Authentication
Authentification
@@ -393,7 +393,7 @@ Copyright © 2006 par Christophe Dumez<br>
Nom d'utilisateur :
-
+
Password:
Mot de passe :
@@ -458,12 +458,12 @@ Copyright © 2006 par Christophe Dumez<br>
Filtre IP
-
+
Activate IP Filtering
Activer le filtrage d'IP
-
+
Filter Settings
Paramètres de filtrage
@@ -548,7 +548,7 @@ Copyright © 2006 par Christophe Dumez<br>
Iconifier lors de la réduction de la fenêtre
-
+
Misc
Divers
@@ -583,7 +583,7 @@ Copyright © 2006 par Christophe Dumez<br>
Ne jamais afficher d'OSD
-
+
KiB/s
Ko/s
@@ -778,37 +778,37 @@ Copyright © 2006 par Christophe Dumez<br>
Type du Proxy :
-
+
HTTP
-
+
SOCKS5
-
+
Affected connections
Connexions concernées
-
+
Use proxy for connections to trackers
Utiliser le proxy pour les connexions aux trackers
-
+
Use proxy for connections to regular peers
Utiliser le proxy pour les connexions aux autres clients
-
+
Use proxy for connections to web seeds
Utiliser le proxy pour les connexions aux sources web
-
+
Use proxy for DHT messages
Utiliser le proxy pour les connexions DHT (sans tracker)
@@ -823,17 +823,17 @@ Copyright © 2006 par Christophe Dumez<br>
Etat du cryptage :
-
+
Enabled
Activé
-
+
Forced
Forcé
-
+
Disabled
Désactivé
@@ -972,97 +972,97 @@ Copyright © 2006 par Christophe Dumez<br>
Activer le NAT-PMP
-
+
Global bandwidth limiting
Limitation globale de bande passante
-
+
Upload:
Envoi :
-
+
Download:
Téléchargement :
-
+
Type:
Type :
-
+
(None)
(Aucun)
-
+
Proxy:
Serveur mandataire (proxy) :
-
+
Username:
Nom d'utilisateur :
-
+
Bittorrent
-
+
Connections limit
Limite de connections
-
+
Global maximum number of connections:
Nombre global maximum de connexions :
-
+
Maximum number of connections per torrent:
Nombre maximum de connexions par torrent :
-
+
Maximum number of upload slots per torrent:
Nombre maximum de slots d'envoi par torrent :
-
+
Additional Bittorrent features
Fonctionnalités Bittorrent additionnelles
-
+
Enable DHT network (decentralized)
Activer le réseau DHT (décentralisé)
-
+
Enable Peer eXchange (PeX)
Activer l'échange de sources (PeX)
-
+
Enable Local Peer Discovery
Activer la recherche locale de sources
-
+
Encryption:
Chiffrement :
-
+
Share ratio settings
Paramètres du ratio de partage
-
+
Desired ratio:
Ratio désiré :
@@ -1072,7 +1072,7 @@ Copyright © 2006 par Christophe Dumez<br>
Supprimer les torrent
-
+
Filter file path:
Chemin vers le fichier de filtrage :
@@ -1087,22 +1087,22 @@ Copyright © 2006 par Christophe Dumez<br>
-
+
RSS
-
+
RSS feeds refresh interval:
Intervalle de rafraîchissement des flux RSS :
-
+
minutes
-
+
Maximum number of articles per feed:
Numbre maximum d'articles par flux :
@@ -1112,7 +1112,7 @@ Copyright © 2006 par Christophe Dumez<br>
Système de fichiers
-
+
Remove finished torrents when their ratio reaches:
Supprimer les torrents terminés lorsque leur ratio atteint :
@@ -1168,52 +1168,52 @@ Copyright © 2006 par Christophe Dumez<br>
secondes
-
+
Spoof Azureus to avoid ban (requires restart)
Se faire passer pour Azureus pour éviter le bannissement (redémarrage requis)
-
+
Web UI
Interface Web
-
+
Enable Web User Interface
Activer l'interface Web
-
+
HTTP Server
Serveur HTTP
-
+
Enable RSS support
Activer le module RSS
-
+
RSS settings
Paramètres du RSS
-
+
Enable queueing system
Activer le système de file d'attente
-
+
Maximum active downloads:
Nombre maximum de téléchargements actifs :
-
+
Torrent queueing
Mise en attente de torrents
-
+
Maximum active torrents:
Nombre maximum de torrents actifs :
@@ -1222,6 +1222,21 @@ Copyright © 2006 par Christophe Dumez<br>
Display top toolbar
+
+
+ Proxy
+
+
+
+
+ Search engine proxy settings
+
+
+
+
+ Bittorrent proxy settings
+
+
DownloadingTorrents
@@ -1573,7 +1588,7 @@ Copyright © 2006 par Christophe Dumez<br>
ko/s
-
+
Finished
Terminé
@@ -2079,7 +2094,7 @@ Veuillez d'abord le quitter.
qBittorrent %1
-
+
Connection status:
Statut de la connexion :
@@ -2154,18 +2169,18 @@ Veuillez d'abord le quitter.
qBittorrent %1 démarré.
-
+
qBittorrent
qBittorrent
-
+
DL speed: %1 KiB/s
e.g: Download speed: 10 KiB/s
Vitesse DL : %1 Ko/s
-
+
UP speed: %1 KiB/s
e.g: Upload speed: 10 KiB/s
Vitesse UP : %1 Ko/s
@@ -2288,12 +2303,12 @@ Veuillez d'abord le quitter.
Une erreur s'est produite (disque plein ?), '%1' a été mis en pause.
-
+
Connection Status:
Etat de la connexion :
-
+
Online
Connecté
@@ -2358,22 +2373,22 @@ Veuillez d'abord le quitter.
qBittorrent écoute sur le port : %1
-
+
DHT support [ON], port: %1
Support DHT [ON], port : %1
-
+
DHT support [OFF]
Support DHT [OFF]
-
+
PeX support [ON]
Support PeX [ON]
-
+
PeX support [OFF]
Support PeX [OFF]
@@ -2385,7 +2400,7 @@ Are you sure you want to quit qBittorrent?
Etes-vous certain de vouloir quitter qBittorrent ?
-
+
Downloads
Téléchargements
@@ -2410,17 +2425,17 @@ Etes-vous certain de vouloir quitter qBittorrent ?
Attention, partager des oeuvres sous copyright sans en avoir la permission est illégal.
-
+
Encryption support [ON]
Support cryptage [ON]
-
+
Encryption support [FORCED]
Support cryptage [Forcé]
-
+
Encryption support [OFF]
Support cryptage [OFF]
@@ -2523,12 +2538,12 @@ Etes-vous certain de vouloir quitter qBittorrent ?
Support NAT-PMP [OFF]
-
+
Local Peer Discovery [ON]
Découverte locale de sources [ON]
-
+
Local Peer Discovery support [OFF]
Découverte locale de sources [OFF]
@@ -2539,18 +2554,18 @@ Etes-vous certain de vouloir quitter qBittorrent ?
'%1' a été supprimé car son ratio a atteint la limite que vous avez fixée.
-
+
qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)
%1 is qBittorrent version
qBittorrent %1 (DL: %2Ko/s, UP: %3Ko/s)
-
+
DL: %1 KiB/s
R : %1 Ko/s
-
+
UP: %1 KiB/s
E : %1 Ko/s
@@ -2565,7 +2580,7 @@ Etes-vous certain de vouloir quitter qBittorrent ?
DHT : %1 noeuds
-
+
No direct connections. This may indicate network configuration problems.
@@ -2575,7 +2590,7 @@ Etes-vous certain de vouloir quitter qBittorrent ?
-
+
Options were saved successfully.
Préférences sauvegardées avec succès.
@@ -3134,13 +3149,13 @@ Etes-vous certain de vouloir quitter qBittorrent ?
RssStream
-
+
%1 ago
10min ago
il y a %1
-
+
Never
Jamais
@@ -4639,7 +4654,7 @@ Cependant, les greffons en question ont été désactivés.
Préférences sauvegardées avec succès.
-
+
Choose scan directory
Choisir le dossier à surveiller
@@ -4649,7 +4664,7 @@ Cependant, les greffons en question ont été désactivés.
Choisir un fichier ipfilter.dat
-
+
Choose a save directory
Choisir un répertoire de sauvegarde
@@ -4665,7 +4680,7 @@ Cependant, les greffons en question ont été désactivés.
Impossible d'ouvrir %1 en lecture.
-
+
Choose an ip filter file
Choisir un fichier de filtrage IP
@@ -4675,7 +4690,7 @@ Cependant, les greffons en question ont été désactivés.
Filtres (*.dat *.p2p *.p2b)
-
+
Filters
Filtres
diff --git a/src/lang/qbittorrent_hu.qm b/src/lang/qbittorrent_hu.qm
index 16db6d12b..e87c87b29 100644
Binary files a/src/lang/qbittorrent_hu.qm and b/src/lang/qbittorrent_hu.qm differ
diff --git a/src/lang/qbittorrent_hu.ts b/src/lang/qbittorrent_hu.ts
index f0d2d86e2..395009900 100644
--- a/src/lang/qbittorrent_hu.ts
+++ b/src/lang/qbittorrent_hu.ts
@@ -207,7 +207,7 @@ Copyright © 2006 by Christophe Dumez<br>
Port tartomány:
-
+
...
...
@@ -222,14 +222,14 @@ Copyright © 2006 by Christophe Dumez<br>
kapcsolat
-
+
Proxy
- Proxy
+ Proxy
Proxy Settings
- Proxy beállítások
+ Proxy beállítások
@@ -237,7 +237,7 @@ Copyright © 2006 by Christophe Dumez<br>
0.0.0.0
-
+
Port:
Port:
@@ -247,7 +247,7 @@ Copyright © 2006 by Christophe Dumez<br>
A proxy kiszolgáló megköveteli a hitelesítést
-
+
Authentication
Felhasználó
@@ -257,7 +257,7 @@ Copyright © 2006 by Christophe Dumez<br>
Név:
-
+
Password:
Jelszó:
@@ -282,12 +282,12 @@ Copyright © 2006 by Christophe Dumez<br>
Megosztási arány:
-
+
Activate IP Filtering
IP-szűrő használata
-
+
Filter Settings
Szűrő beállításai
@@ -337,7 +337,7 @@ Copyright © 2006 by Christophe Dumez<br>
Panelre helyezés minimalizáláskor
-
+
Misc
Vegyes
@@ -357,7 +357,7 @@ Copyright © 2006 by Christophe Dumez<br>
Ablakok
-
+
KiB/s
KByte/s
@@ -537,37 +537,37 @@ Copyright © 2006 by Christophe Dumez<br>
Proxy típusa:
-
+
HTTP
HTTP
-
+
SOCKS5
SOCKS5
-
+
Affected connections
Proxy kapcsolatok
-
+
Use proxy for connections to trackers
Csatlakozás a trackerhez proxyn keresztül
-
+
Use proxy for connections to regular peers
Csatlakozás ügyfelekhez proxyn keresztül
-
+
Use proxy for connections to web seeds
Proxy használata web seedhez
-
+
Use proxy for DHT messages
Proxy a DHT üzenetekhez
@@ -582,17 +582,17 @@ Copyright © 2006 by Christophe Dumez<br>
Titkosítás állapota:
-
+
Enabled
Engedélyez
-
+
Forced
Kényszerít
-
+
Disabled
Tilt
@@ -731,102 +731,102 @@ Copyright © 2006 by Christophe Dumez<br>
NAT-PMP port átirányítás engedélyezése
-
+
Global bandwidth limiting
Sávszélesség korlátozása
-
+
Upload:
Feltöltés:
-
+
Download:
Letöltés:
-
+
Type:
Típus:
-
+
(None)
(Nincs)
-
+
Proxy:
Proxy:
-
+
Username:
Felhasználónév:
-
+
Bittorrent
Bittorrent
-
+
Connections limit
Kapcsolatok korlátozása
-
+
Global maximum number of connections:
Kapcsolatok maximális száma:
-
+
Maximum number of connections per torrent:
Kapcsolatok száma torrentenként:
-
+
Maximum number of upload slots per torrent:
Feltöltési szálak száma torrentenként:
-
+
Additional Bittorrent features
További Bittorrent jellemzők
-
+
Enable DHT network (decentralized)
DHT hálózati működés engedélyezése
-
+
Enable Peer eXchange (PeX)
Ügyfél csere engedélyezése (PeX)
-
+
Enable Local Peer Discovery
Enable Local Peer Discovery
-
+
Encryption:
Titkosítás:
-
+
Share ratio settings
Megosztási arány
-
+
Desired ratio:
Megosztási arány:
-
+
Filter file path:
Ip szűrő fájl helye:
@@ -841,22 +841,22 @@ Copyright © 2006 by Christophe Dumez<br>
ms
-
+
RSS
RSS
-
+
RSS feeds refresh interval:
RSS csatornák firssítésének időköze:
-
+
minutes
Perc
-
+
Maximum number of articles per feed:
Hírek maximális száma csatornánként:
@@ -866,7 +866,7 @@ Copyright © 2006 by Christophe Dumez<br>
Fájlrendszer
-
+
Remove finished torrents when their ratio reaches:
Torrent eltávolítása, ha elérte ezt az arányt:
@@ -922,52 +922,52 @@ Copyright © 2006 by Christophe Dumez<br>
másodperc
-
+
Spoof Azureus to avoid ban (requires restart)
Álcázás Azureusnak (újraindítást igényel)
-
+
Web UI
Webes felület
-
+
Enable Web User Interface
Webes felület engedélyezése
-
+
HTTP Server
HTTP Szerver
-
+
Enable RSS support
-
+
RSS settings
-
+
Enable queueing system
-
+
Maximum active downloads:
-
+
Torrent queueing
-
+
Maximum active torrents:
@@ -976,6 +976,16 @@ Copyright © 2006 by Christophe Dumez<br>
Display top toolbar
+
+
+ Search engine proxy settings
+
+
+
+
+ Bittorrent proxy settings
+
+
DownloadingTorrents
@@ -1330,7 +1340,7 @@ Kérlek előbb azt zárd be.
qBittorrent %1
-
+
Connection status:
Kapcsolat állapota:
@@ -1393,18 +1403,18 @@ Kérlek előbb azt zárd be.
qBittorrent %1 elindítva.
-
+
qBittorrent
qBittorrent
-
+
DL speed: %1 KiB/s
e.g: Download speed: 10 KiB/s
Letöltés: %1 KByte/s
-
+
UP speed: %1 KiB/s
e.g: Upload speed: 10 KiB/s
Feltöltés: %1 KByte/s
@@ -1509,12 +1519,12 @@ Kérlek előbb azt zárd be.
Hiba történ a(z) %1 írása/olvasása közben. Valószínűleg tele a lemez, így a letöltés megszakítva
-
+
Connection Status:
A kapcsolat állapota:
-
+
Online
Online
@@ -1558,22 +1568,22 @@ Kérlek előbb azt zárd be.
qBittorrent ezen a porton figyel: %1
-
+
DHT support [ON], port: %1
DHT funkció [ON], port: %1
-
+
DHT support [OFF]
DHT funkció [OFF]
-
+
PeX support [ON]
PeX [ON]
-
+
PeX support [OFF]
PeX [OFF]
@@ -1585,12 +1595,12 @@ Are you sure you want to quit qBittorrent?
Mégis leállítod a qBittorrentet?
-
+
Downloads
Letöltések
-
+
Finished
Feltöltések
@@ -1615,17 +1625,17 @@ Mégis leállítod a qBittorrentet?
Csak óvatosan a megosztással. Nehogy megsértsd a szerzői jogokat!.
-
+
Encryption support [ON]
Titkosítás [ON]
-
+
Encryption support [FORCED]
Titkosítás [KÉNYSZERÍTVE]
-
+
Encryption support [OFF]
Titkosítás [OFF]
@@ -1728,12 +1738,12 @@ Mégis leállítod a qBittorrentet?
NAT-PMP támogatás [OFF]
-
+
Local Peer Discovery [ON]
Local Peer Discovery [ON]
-
+
Local Peer Discovery support [OFF]
Local Peer Discovery támogatás [OFF]
@@ -1744,18 +1754,18 @@ Mégis leállítod a qBittorrentet?
'%1' eltávolítva, mivel elérte a kítűzött megosztási arányt.
-
+
qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)
%1 is qBittorrent version
qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)
-
+
DL: %1 KiB/s
-
+
UP: %1 KiB/s
@@ -1770,7 +1780,7 @@ Mégis leállítod a qBittorrentet?
-
+
No direct connections. This may indicate network configuration problems.
@@ -1780,7 +1790,7 @@ Mégis leállítod a qBittorrentet?
-
+
Options were saved successfully.
Beállítások sikeresen elmentve.
@@ -2176,13 +2186,13 @@ Mégis leállítod a qBittorrentet?
RssStream
-
+
%1 ago
10min ago
%1 előtt
-
+
Never
Soha
@@ -3380,7 +3390,7 @@ Viszont azok a modulok kikapcsolhatóak.
Beállítások sikeresen elmentve.
-
+
Choose scan directory
Megfigyelt könyvtár beállítása
@@ -3390,7 +3400,7 @@ Viszont azok a modulok kikapcsolhatóak.
Ipfilter.dat fájl megnyitása
-
+
Choose a save directory
Letöltési könyvtár megadása
@@ -3406,12 +3416,12 @@ Viszont azok a modulok kikapcsolhatóak.
%1 olvasása sikertelen.
-
+
Choose an ip filter file
Válassz egy ip szűrő fájlt
-
+
Filters
Szűrők
diff --git a/src/lang/qbittorrent_it.qm b/src/lang/qbittorrent_it.qm
index ca8190dc3..2c113f068 100644
Binary files a/src/lang/qbittorrent_it.qm and b/src/lang/qbittorrent_it.qm differ
diff --git a/src/lang/qbittorrent_it.ts b/src/lang/qbittorrent_it.ts
index b77add662..171ebed71 100644
--- a/src/lang/qbittorrent_it.ts
+++ b/src/lang/qbittorrent_it.ts
@@ -218,7 +218,7 @@ Copyright © 2006 by Christophe Dumez<br>
Intervallo porte:
-
+
...
...
@@ -233,14 +233,14 @@ Copyright © 2006 by Christophe Dumez<br>
connessioni
-
+
Proxy
- Proxy
+ Proxy
Proxy Settings
- Impostazioni proxy
+ Impostazioni proxy
@@ -253,7 +253,7 @@ Copyright © 2006 by Christophe Dumez<br>
0.0.0.0
-
+
Port:
Porta:
@@ -263,7 +263,7 @@ Copyright © 2006 by Christophe Dumez<br>
Il server proxy richiede l'autenticazione
-
+
Authentication
Autenticazione
@@ -273,7 +273,7 @@ Copyright © 2006 by Christophe Dumez<br>
Nome utente:
-
+
Password:
Password:
@@ -313,12 +313,12 @@ Copyright © 2006 by Christophe Dumez<br>
Rapporto di condivisione:
-
+
Activate IP Filtering
Attiva Filtraggio IP
-
+
Filter Settings
Impostazioni del filtro
@@ -368,7 +368,7 @@ Copyright © 2006 by Christophe Dumez<br>
Percorso di ipfilter.dat:
-
+
Misc
Varie
@@ -418,7 +418,7 @@ Copyright © 2006 by Christophe Dumez<br>
Non mostrare mai l'OSD
-
+
KiB/s
KiB/s
@@ -618,37 +618,37 @@ Copyright © 2006 by Christophe Dumez<br>
Tipo di proxy:
-
+
HTTP
HTTP
-
+
SOCKS5
SOCKS5
-
+
Affected connections
Connessioni interessate
-
+
Use proxy for connections to trackers
Usa un proxy per le connessioni ai tracker
-
+
Use proxy for connections to regular peers
Usa un proxy per le connessioni ai peer regolari
-
+
Use proxy for connections to web seeds
Usa un proxy per connessioni ai seed web
-
+
Use proxy for DHT messages
Usa un proxy per i messaggi DHT
@@ -663,17 +663,17 @@ Copyright © 2006 by Christophe Dumez<br>
Stato cifratura:
-
+
Enabled
Attivata
-
+
Forced
Forzata
-
+
Disabled
Disattivata
@@ -812,102 +812,102 @@ Copyright © 2006 by Christophe Dumez<br>
Abilita mappatura porte NAT-PMP
-
+
Global bandwidth limiting
Limiti globali di banda
-
+
Upload:
Upload:
-
+
Download:
Download:
-
+
Type:
Tipo:
-
+
(None)
(Nessuno)
-
+
Proxy:
Proxy:
-
+
Username:
Nome utente:
-
+
Bittorrent
Bittorrent
-
+
Connections limit
Limiti alle connessioni
-
+
Global maximum number of connections:
Numero massimo globale di connessioni:
-
+
Maximum number of connections per torrent:
Numero massimo di connessioni per torrent:
-
+
Maximum number of upload slots per torrent:
Numero massimo di slot in upload per torrent:
-
+
Additional Bittorrent features
Funzioni aggiuntive Bittorrent
-
+
Enable DHT network (decentralized)
Abilita rete DHT (decentralizzata)
-
+
Enable Peer eXchange (PeX)
Abilita scambio peer (PeX)
-
+
Enable Local Peer Discovery
Abilita scoperta peer locali
-
+
Encryption:
Cifratura:
-
+
Share ratio settings
Impostazioni rapporto di condivisione
-
+
Desired ratio:
Rapporto desiderato:
-
+
Filter file path:
Percorso file filtro:
@@ -922,22 +922,22 @@ Copyright © 2006 by Christophe Dumez<br>
ms
-
+
RSS
RSS
-
+
RSS feeds refresh interval:
Intervallo aggiornamento feed RSS:
-
+
minutes
minuti
-
+
Maximum number of articles per feed:
Numero massimo di articoli per feed:
@@ -947,7 +947,7 @@ Copyright © 2006 by Christophe Dumez<br>
File system
-
+
Remove finished torrents when their ratio reaches:
Rimuovi i torrent completati quando il rapporto raggiunge:
@@ -1003,52 +1003,52 @@ Copyright © 2006 by Christophe Dumez<br>
secondi
-
+
Spoof Azureus to avoid ban (requires restart)
Spoofing di Azureus per evitare il ban (richiede riavvio)
-
+
Web UI
Interfaccia Web
-
+
Enable Web User Interface
Abilita interfaccia Web
-
+
HTTP Server
Server HTTP
-
+
Enable RSS support
-
+
RSS settings
-
+
Enable queueing system
-
+
Maximum active downloads:
-
+
Torrent queueing
-
+
Maximum active torrents:
@@ -1057,6 +1057,16 @@ Copyright © 2006 by Christophe Dumez<br>
Display top toolbar
+
+
+ Search engine proxy settings
+
+
+
+
+ Bittorrent proxy settings
+
+
DownloadingTorrents
@@ -1335,7 +1345,7 @@ Copyright © 2006 by Christophe Dumez<br>
Sei sicuro di voler cancellare gli elementi selezionati dalla lista dei download?
-
+
Finished
In Upload
@@ -1714,7 +1724,7 @@ Example: Downloading www.example.com/test.torrent
qBittorrent %1
-
+
Connection status:
Stato della connessione:
@@ -1789,18 +1799,18 @@ Example: Downloading www.example.com/test.torrent
qBittorrent %1 avviato.
-
+
qBittorrent
qBittorrent
-
+
DL speed: %1 KiB/s
e.g: Download speed: 10 KiB/s
Velocità DL: %1 KiB/s
-
+
UP speed: %1 KiB/s
e.g: Upload speed: 10 KiB/s
Velocità UP: %1 KiB/s
@@ -1917,12 +1927,12 @@ Example: Downloading www.example.com/test.torrent
Errore di scrittura o di lettura con %1. Probabilmente il disco è pieno, il download è stato fermato
-
+
Connection Status:
Stato della connessione:
-
+
Online
Online
@@ -1987,22 +1997,22 @@ Example: Downloading www.example.com/test.torrent
qBittorrent è in ascolto sulla porta: %1
-
+
DHT support [ON], port: %1
Supporto DHT [ON], porta: %1
-
+
DHT support [OFF]
Supporto DHT [OFF]
-
+
PeX support [ON]
Supporto PeX [ON]
-
+
PeX support [OFF]
Supporto PeX [OFF]
@@ -2014,7 +2024,7 @@ Are you sure you want to quit qBittorrent?
Sei sicuro di voler uscire da qBittorrent?
-
+
Downloads
In Download
@@ -2034,17 +2044,17 @@ Sei sicuro di voler uscire da qBittorrent?
Attenzione, condividere materiale protetto da copyright senza il permesso è illegale.
-
+
Encryption support [ON]
Supporto cifratura [ON]
-
+
Encryption support [FORCED]
Supporto cifratura [FORZATO]
-
+
Encryption support [OFF]
Supporto cifratura [OFF]
@@ -2147,12 +2157,12 @@ Sei sicuro di voler uscire da qBittorrent?
Supporto NAT-PMP [OFF]
-
+
Local Peer Discovery [ON]
Supporto scoperta peer locali [ON]
-
+
Local Peer Discovery support [OFF]
Supporto scoperta peer locali [OFF]
@@ -2163,18 +2173,18 @@ Sei sicuro di voler uscire da qBittorrent?
'%1' è stato rimosso perché il suo rapporto di condivisione ha raggiunto il massimo stabilito.
-
+
qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)
%1 is qBittorrent version
qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)
-
+
DL: %1 KiB/s
-
+
UP: %1 KiB/s
@@ -2189,7 +2199,7 @@ Sei sicuro di voler uscire da qBittorrent?
-
+
No direct connections. This may indicate network configuration problems.
@@ -2199,7 +2209,7 @@ Sei sicuro di voler uscire da qBittorrent?
-
+
Options were saved successfully.
Le opzioni sono state salvate.
@@ -2665,13 +2675,13 @@ Sei sicuro di voler uscire da qBittorrent?
RssStream
-
+
%1 ago
10min ago
%1 fa
-
+
Never
Mai
@@ -4109,7 +4119,7 @@ Comunque, quei plugin sono stati disabilitati.
Le opzioni sono state salvate.
-
+
Choose scan directory
Scegliere una directory
@@ -4119,7 +4129,7 @@ Comunque, quei plugin sono stati disabilitati.
Scegliere un file ipfilter.dat
-
+
Choose a save directory
Scegliere una directory di salvataggio
@@ -4135,12 +4145,12 @@ Comunque, quei plugin sono stati disabilitati.
Impossibile aprire %1 in lettura.
-
+
Choose an ip filter file
Scegliere un file ip filter
-
+
Filters
Filtri
diff --git a/src/lang/qbittorrent_ja.qm b/src/lang/qbittorrent_ja.qm
index d399383a8..fac9541a4 100644
Binary files a/src/lang/qbittorrent_ja.qm and b/src/lang/qbittorrent_ja.qm differ
diff --git a/src/lang/qbittorrent_ja.ts b/src/lang/qbittorrent_ja.ts
index cfed94abc..bf47c10a2 100644
--- a/src/lang/qbittorrent_ja.ts
+++ b/src/lang/qbittorrent_ja.ts
@@ -207,7 +207,7 @@ Copyright © 2006 by Christophe Dumez<br>
ポートの範囲:
-
+
...
...
@@ -222,14 +222,14 @@ Copyright © 2006 by Christophe Dumez<br>
個の接続
-
+
Proxy
- プロキシ
+ プロキシ
Proxy Settings
- プロキシの設定
+ プロキシの設定
@@ -242,7 +242,7 @@ Copyright © 2006 by Christophe Dumez<br>
0.0.0.0
-
+
Port:
ポート:
@@ -252,7 +252,7 @@ Copyright © 2006 by Christophe Dumez<br>
プロキシ サーバーは認証を必要とします
-
+
Authentication
認証
@@ -262,7 +262,7 @@ Copyright © 2006 by Christophe Dumez<br>
ユーザー名:
-
+
Password:
パスワード:
@@ -297,12 +297,12 @@ Copyright © 2006 by Christophe Dumez<br>
共有率:
-
+
Activate IP Filtering
IP フィルタをアクティブにする
-
+
Filter Settings
フィルタの設定
@@ -357,7 +357,7 @@ Copyright © 2006 by Christophe Dumez<br>
ウィンドウの最小化時にシステムトレイへ移動する
-
+
Misc
他
@@ -377,7 +377,7 @@ Copyright © 2006 by Christophe Dumez<br>
動作
-
+
KiB/s
KiB/s
@@ -577,37 +577,37 @@ Copyright © 2006 by Christophe Dumez<br>
プロキシの種類:
-
+
HTTP
HTTP
-
+
SOCKS5
SOCKS5
-
+
Affected connections
影響された接続
-
+
Use proxy for connections to trackers
トラッカへの接続にプロキシを使用する
-
+
Use proxy for connections to regular peers
通常のピアへの接続にプロキシを使用する
-
+
Use proxy for connections to web seeds
Web シードへの接続にプロキシを使用する
-
+
Use proxy for DHT messages
DHT メッセージへの接続にプロキシを使用する
@@ -622,17 +622,17 @@ Copyright © 2006 by Christophe Dumez<br>
暗号化の状況:
-
+
Enabled
有効
-
+
Forced
強制済み
-
+
Disabled
無効
@@ -771,102 +771,102 @@ Copyright © 2006 by Christophe Dumez<br>
NAT-PMP ポート マップを有効にする
-
+
Global bandwidth limiting
グローバル大域幅制限
-
+
Upload:
アップロード:
-
+
Download:
ダウンロード:
-
+
Type:
種類:
-
+
(None)
(なし)
-
+
Proxy:
プロキシ:
-
+
Username:
ユーザー名:
-
+
Bittorrent
Bittorrent
-
+
Connections limit
接続制限
-
+
Global maximum number of connections:
グローバル最大接続数:
-
+
Maximum number of connections per torrent:
Torrent あたりの最大接続数:
-
+
Maximum number of upload slots per torrent:
Torrent あたりの最大アップロード スロット数:
-
+
Additional Bittorrent features
Bittorrent の追加機能
-
+
Enable DHT network (decentralized)
DHT ネットワーク (分散) を有効にする
-
+
Enable Peer eXchange (PeX)
Peer eXchange (PeX) を有効にする
-
+
Enable Local Peer Discovery
ローカル ピア ディスカバリを有効にする
-
+
Encryption:
暗号化:
-
+
Share ratio settings
共有率の設定
-
+
Desired ratio:
希望率:
-
+
Filter file path:
フィルタのファイル パス:
@@ -881,22 +881,22 @@ Copyright © 2006 by Christophe Dumez<br>
ms
-
+
RSS
RSS
-
+
RSS feeds refresh interval:
RSS フィードの更新の間隔:
-
+
minutes
分
-
+
Maximum number of articles per feed:
フィードあたりの最大記事数:
@@ -906,7 +906,7 @@ Copyright © 2006 by Christophe Dumez<br>
ファイル システム
-
+
Remove finished torrents when their ratio reaches:
率の達成時に完了済み torrent を削除する:
@@ -962,52 +962,52 @@ Copyright © 2006 by Christophe Dumez<br>
-
+
Spoof Azureus to avoid ban (requires restart)
-
+
Web UI
-
+
Enable Web User Interface
-
+
HTTP Server
-
+
Enable RSS support
-
+
RSS settings
-
+
Enable queueing system
-
+
Maximum active downloads:
-
+
Torrent queueing
-
+
Maximum active torrents:
@@ -1016,6 +1016,16 @@ Copyright © 2006 by Christophe Dumez<br>
Display top toolbar
+
+
+ Search engine proxy settings
+
+
+
+
+ Bittorrent proxy settings
+
+
DownloadingTorrents
@@ -1360,7 +1370,7 @@ Please close the other one first.
qBittorrent %1
-
+
Connection status:
接続状態:
@@ -1423,18 +1433,18 @@ Please close the other one first.
qBittorrent %1 が開始されました。
-
+
qBittorrent
qBittorrent
-
+
DL speed: %1 KiB/s
e.g: Download speed: 10 KiB/s
DL 速度: %1 KiB/s
-
+
UP speed: %1 KiB/s
e.g: Upload speed: 10 KiB/s
UP 速度: %1 KiB/s
@@ -1539,12 +1549,12 @@ Please close the other one first.
%1 の読み込みまたは書き込みを試行にエラーが発生しました。ディスクはおそらくいっぱいです、ダウンロードは一時停止されました
-
+
Connection Status:
接続状態:
-
+
Online
オンライン
@@ -1598,12 +1608,12 @@ Please close the other one first.
qBittorrent は次のポートに拘束されています: %1
-
+
DHT support [ON], port: %1
DHT サポート [オン]、ポート: %1
-
+
DHT support [OFF]
DHT サポート [オフ]
@@ -1618,12 +1628,12 @@ Please close the other one first.
UPnP サポート [オフ]
-
+
PeX support [ON]
PeX サポート [オン]
-
+
PeX support [OFF]
PeX サポート [オフ]
@@ -1635,12 +1645,12 @@ Are you sure you want to quit qBittorrent?
qBittorrent を終了してもよろしいですか?
-
+
Downloads
ダウンロード
-
+
Finished
完了しました
@@ -1665,17 +1675,17 @@ qBittorrent を終了してもよろしいですか?
ご用心ください、許可なしの著作権のある材料の共有は法律に違反しています。
-
+
Encryption support [ON]
暗号化サポート [オン]
-
+
Encryption support [FORCED]
暗号化サポート [強制済み]
-
+
Encryption support [OFF]
暗号化サポート [オフ]
@@ -1779,28 +1789,28 @@ qBittorrent を終了してもよろしいですか?
NAT-PMP サポート [オフ]
-
+
Local Peer Discovery [ON]
ローカル ピア ディスカバリ [オン]
-
+
Local Peer Discovery support [OFF]
ローカル ピア ディスカバリ [オフ]
-
+
qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)
%1 is qBittorrent version
qBittorrent %1 (DL: %2KiB/s、UP: %3KiB/s)
-
+
DL: %1 KiB/s
-
+
UP: %1 KiB/s
@@ -1815,7 +1825,7 @@ qBittorrent を終了してもよろしいですか?
-
+
No direct connections. This may indicate network configuration problems.
@@ -1825,7 +1835,7 @@ qBittorrent を終了してもよろしいですか?
-
+
Options were saved successfully.
オプションの保存に成功しました。
@@ -2246,13 +2256,13 @@ qBittorrent を終了してもよろしいですか?
RssStream
-
+
%1 ago
10min ago
%1 前
-
+
Never
しない
@@ -3610,7 +3620,7 @@ However, those plugins were disabled.
オプションの保存に成功しました。
-
+
Choose scan directory
スキャンするディレクトリを選択します
@@ -3620,7 +3630,7 @@ However, those plugins were disabled.
ipfilter.dat ファイルを選択します
-
+
Choose a save directory
保存ディレクトリを選択します
@@ -3636,12 +3646,12 @@ However, those plugins were disabled.
読み込みモードで %1 を開くことができませんでした。
-
+
Choose an ip filter file
-
+
Filters
diff --git a/src/lang/qbittorrent_ko.qm b/src/lang/qbittorrent_ko.qm
index 498d5cd85..f222c0394 100644
Binary files a/src/lang/qbittorrent_ko.qm and b/src/lang/qbittorrent_ko.qm differ
diff --git a/src/lang/qbittorrent_ko.ts b/src/lang/qbittorrent_ko.ts
index 6856a73ef..50cf74341 100644
--- a/src/lang/qbittorrent_ko.ts
+++ b/src/lang/qbittorrent_ko.ts
@@ -217,7 +217,7 @@ Copyright © 2006 by Christophe Dumez<br>
스캔된 폴더:
-
+
...
...
@@ -275,9 +275,9 @@ inside)
것입니다.)
-
+
Proxy
- 프록시
+ 프록시
@@ -287,7 +287,7 @@ inside)
Proxy Settings
- 프록시 설정
+ 프록시 설정
@@ -300,7 +300,7 @@ inside)
0.0.0.0
-
+
Port:
포트:
@@ -310,7 +310,7 @@ inside)
프록시 서버를 사용하기 위해서는 인증확인이 필요합니다
-
+
Authentication
인증
@@ -320,7 +320,7 @@ inside)
아이디:
-
+
Password:
비밀번호:
@@ -377,12 +377,12 @@ list:
KB 최고 업로딩 속도.
-
+
Activate IP Filtering
IP 필터링 사용
-
+
Filter Settings
필터 설정
@@ -452,7 +452,7 @@ list:
최소화시 시스템 트레이에 아이콘 표시
-
+
Misc
기타
@@ -527,7 +527,7 @@ list:
음악 및 영상 재생기:
-
+
KiB/s
@@ -687,37 +687,37 @@ list:
프락시 종류 (Proxy type):
-
+
HTTP
-
+
SOCKS5
-
+
Affected connections
관련된 연결
-
+
Use proxy for connections to trackers
트렉커(tracker)에 연결하는데 프락시 사용
-
+
Use proxy for connections to regular peers
일반 사용자(peer)와 연결하는데 프락시 사용
-
+
Use proxy for connections to web seeds
웹 완전체(Web seed)와 연결하는데 프락시 사용
-
+
Use proxy for DHT messages
DHT 메세지에 프락시 사용
@@ -732,17 +732,17 @@ list:
암호화(Encryption) 상태:
-
+
Enabled
사용하기
-
+
Forced
강제
-
+
Disabled
사용하지 않기
@@ -881,102 +881,102 @@ list:
NAT-PMP 포트 맵핑 사용하기
-
+
Global bandwidth limiting
전제 속도 제한하기
-
+
Upload:
업로드:
-
+
Download:
다운로드:
-
+
Type:
종류:
-
+
(None)
(없음)
-
+
Proxy:
프록시:
-
+
Username:
사용자 이름:
-
+
Bittorrent
비트토렌트
-
+
Connections limit
연결 제한
-
+
Global maximum number of connections:
최대 전체 연결수
-
+
Maximum number of connections per torrent:
한 토렌트 파일에 사용할수 있는 최대 연결수:
-
+
Maximum number of upload slots per torrent:
한 토렌트 파일의 업로드에 사용할수 있는 최대 연결수:
-
+
Additional Bittorrent features
부과 비토렌트 사항
-
+
Enable DHT network (decentralized)
DHT 네트웍크 (분화됨, decentralized) 사용하기
-
+
Enable Peer eXchange (PeX)
피어 익스체인지(Pex) 사용하기
-
+
Enable Local Peer Discovery
로컬 네트웍크내 공유자 찾기 (Local Peer Discovery) 사용하기
-
+
Encryption:
암호화(Encryption)
-
+
Share ratio settings
공유 비율(Radio) 설정
-
+
Desired ratio:
원하는 할당비(Ratio):
-
+
Filter file path:
필터 파일 경로:
@@ -991,22 +991,22 @@ list:
ms(milli second)
-
+
RSS
-
+
RSS feeds refresh interval:
RSS 을 새로 고칠 시간 간격:
-
+
minutes
분
-
+
Maximum number of articles per feed:
하나의 소스당 최대 기사수:
@@ -1016,7 +1016,7 @@ list:
파일 시스템
-
+
Remove finished torrents when their ratio reaches:
공유비율(Shared Ratio)에 도달했을때 완료된 파일을 목록에서 지우기:
@@ -1072,52 +1072,52 @@ list:
초
-
+
Spoof Azureus to avoid ban (requires restart)
Ban을 피하기 위해 Arureus처럼 보이게 하기 (Spoof Azureus) (이 설정은 재시작을 필요합니다)
-
+
Web UI
웹 유저 인터페이스
-
+
Enable Web User Interface
웹사용자인터페이스 사용
-
+
HTTP Server
HTTP 서버
-
+
Enable RSS support
-
+
RSS settings
-
+
Enable queueing system
-
+
Maximum active downloads:
-
+
Torrent queueing
-
+
Maximum active torrents:
@@ -1126,6 +1126,16 @@ list:
Display top toolbar
+
+
+ Search engine proxy settings
+
+
+
+
+ Bittorrent proxy settings
+
+
DownloadingTorrents
@@ -1547,7 +1557,7 @@ download list?
다시 시작됨.
-
+
Finished
완료
@@ -1610,7 +1620,7 @@ download list?
개발자: 크리스토프 두메스 :: Copyright (c) 2006
-
+
qBittorrent
큐비토런트
@@ -1955,7 +1965,7 @@ Please close the other one first.
큐비토런트 %1
-
+
Connection status:
연결 상태:
@@ -2030,13 +2040,13 @@ Please close the other one first.
큐비토런트 %1가 시작되었습니다.
-
+
DL speed: %1 KiB/s
e.g: Download speed: 10 KiB/s
다운로딩 속도: %1 KiB/s
-
+
UP speed: %1 KiB/s
e.g: Upload speed: 10 KiB/s
업로딩 속도: %1 KiB/s
@@ -2159,12 +2169,12 @@ Please close the other one first.
오류 발생 (디스크가 꽉찼습니까?), '%1'가 정지 되었습니다.
-
+
Connection Status:
연결 상태:
-
+
Online
온라인
@@ -2229,22 +2239,22 @@ Please close the other one first.
큐비토런트는 다음 포트을 사용하고 있습니다: %1
-
+
DHT support [ON], port: %1
DHT 지원 [사용함], 포트: %1
-
+
DHT support [OFF]
DHT 지원 [사용안함]
-
+
PeX support [ON]
Pes 지원 [사용함]
-
+
PeX support [OFF]
Pes 지원 [사용안함]
@@ -2256,7 +2266,7 @@ Are you sure you want to quit qBittorrent?
큐비토런트를 종료하시겠습니까?
-
+
Downloads
다운로드
@@ -2276,17 +2286,17 @@ Are you sure you want to quit qBittorrent?
허락없이 저작권이 있는 자료를 공유하는 것은 법에 저촉됩니다.
-
+
Encryption support [ON]
암호화(Encryption) 지원 [사용함]
-
+
Encryption support [FORCED]
암호화(Encryption) 지원 [강압적으로 사용]
-
+
Encryption support [OFF]
암호화(Encryption) 지원 [사용안함]
@@ -2383,12 +2393,12 @@ Are you sure you want to quit qBittorrent?
NAT-PMP 지원 [사용안함]
-
+
Local Peer Discovery [ON]
Local Peer Discovery (로컬 네트웍크내 공유자 찾기) [사용함]
-
+
Local Peer Discovery support [OFF]
Local Peer Discovery (로컬 네트웍크내 공유자 찾기) [사용안함]
@@ -2399,18 +2409,18 @@ Are you sure you want to quit qBittorrent?
사용자께거 지정하신 할당율에 도달하였기에 '%1'는(은) 목록에서 삭제되었습니다.
-
+
qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)
%1 is qBittorrent version
큐비토런트 버젼: %1 (DL: %2KiB/s, UP: %3KiB/s)
-
+
DL: %1 KiB/s
-
+
UP: %1 KiB/s
@@ -2425,7 +2435,7 @@ Are you sure you want to quit qBittorrent?
-
+
No direct connections. This may indicate network configuration problems.
@@ -2435,7 +2445,7 @@ Are you sure you want to quit qBittorrent?
-
+
Options were saved successfully.
환경설정이 성공적으로 저장되었습니다.
@@ -2969,13 +2979,13 @@ Are you sure you want to quit qBittorrent?
RssStream
-
+
%1 ago
10min ago
%1분전
-
+
Never
전혀 사용안함
@@ -4432,7 +4442,7 @@ However, those plugins were disabled.
환경설정이 성공적으로 저장되었습니다.
-
+
Choose scan directory
스켄할 곳을 선택해주세요
@@ -4442,7 +4452,7 @@ However, those plugins were disabled.
ipfilter.dat의 경로를 선택해주세요
-
+
Choose a save directory
파일을 저장할 경로를 선택해주세요
@@ -4458,12 +4468,12 @@ However, those plugins were disabled.
%1을 읽기전용 모드로 열수 없습니다.
-
+
Choose an ip filter file
ip filter 파일 선택
-
+
Filters
필터
diff --git a/src/lang/qbittorrent_nb.qm b/src/lang/qbittorrent_nb.qm
index 0af64da74..791ac7f61 100644
Binary files a/src/lang/qbittorrent_nb.qm and b/src/lang/qbittorrent_nb.qm differ
diff --git a/src/lang/qbittorrent_nb.ts b/src/lang/qbittorrent_nb.ts
index edfc8397f..29dc8e63a 100644
--- a/src/lang/qbittorrent_nb.ts
+++ b/src/lang/qbittorrent_nb.ts
@@ -207,7 +207,7 @@ Copyright © 2006 av Christophe Dumez<br>
Port-område:
-
+
...
...
@@ -222,14 +222,14 @@ Copyright © 2006 av Christophe Dumez<br>
tilkoblinger
-
+
Proxy
- Mellomtjener
+ Mellomtjener
Proxy Settings
- Mellomtjener oppsett
+ Mellomtjener oppsett
@@ -242,7 +242,7 @@ Copyright © 2006 av Christophe Dumez<br>
0.0.0.0
-
+
Port:
Port:
@@ -252,7 +252,7 @@ Copyright © 2006 av Christophe Dumez<br>
Mellomtjener krever autentisering
-
+
Authentication
Autentisering
@@ -262,7 +262,7 @@ Copyright © 2006 av Christophe Dumez<br>
Brukernavn:
-
+
Password:
Passord:
@@ -302,12 +302,12 @@ Copyright © 2006 av Christophe Dumez<br>
Delingsforhold:
-
+
Activate IP Filtering
Aktiver IP filtrering
-
+
Filter Settings
Filteroppsett
@@ -367,7 +367,7 @@ Copyright © 2006 av Christophe Dumez<br>
Flytt til systemkurven ved minimering
-
+
Misc
Diverse
@@ -407,7 +407,7 @@ Copyright © 2006 av Christophe Dumez<br>
Vis aldri skjermmeldinger
-
+
KiB/s
KiB/s
@@ -532,52 +532,52 @@ Copyright © 2006 av Christophe Dumez<br>
-
+
HTTP
-
+
SOCKS5
-
+
Affected connections
-
+
Use proxy for connections to trackers
-
+
Use proxy for connections to regular peers
-
+
Use proxy for connections to web seeds
-
+
Use proxy for DHT messages
-
+
Enabled
-
+
Forced
-
+
Disabled
@@ -711,102 +711,102 @@ Copyright © 2006 av Christophe Dumez<br>
-
+
Global bandwidth limiting
-
+
Upload:
-
+
Download:
-
+
Type:
-
+
(None)
-
+
Proxy:
-
+
Username:
Brukernavn:
-
+
Bittorrent
-
+
Connections limit
-
+
Global maximum number of connections:
-
+
Maximum number of connections per torrent:
-
+
Maximum number of upload slots per torrent:
-
+
Additional Bittorrent features
-
+
Enable DHT network (decentralized)
-
+
Enable Peer eXchange (PeX)
-
+
Enable Local Peer Discovery
-
+
Encryption:
-
+
Share ratio settings
-
+
Desired ratio:
-
+
Filter file path:
@@ -821,22 +821,22 @@ Copyright © 2006 av Christophe Dumez<br>
-
+
RSS
-
+
RSS feeds refresh interval:
-
+
minutes
-
+
Maximum number of articles per feed:
@@ -846,7 +846,7 @@ Copyright © 2006 av Christophe Dumez<br>
-
+
Remove finished torrents when their ratio reaches:
@@ -902,52 +902,52 @@ Copyright © 2006 av Christophe Dumez<br>
-
+
Spoof Azureus to avoid ban (requires restart)
-
+
Web UI
-
+
Enable Web User Interface
-
+
HTTP Server
-
+
Enable RSS support
-
+
RSS settings
-
+
Enable queueing system
-
+
Maximum active downloads:
-
+
Torrent queueing
-
+
Maximum active torrents:
@@ -956,6 +956,16 @@ Copyright © 2006 av Christophe Dumez<br>
Display top toolbar
+
+
+ Search engine proxy settings
+
+
+
+
+ Bittorrent proxy settings
+
+
DownloadingTorrents
@@ -1215,7 +1225,7 @@ Copyright © 2006 av Christophe Dumez<br>
Ønsker du å slette valgt(e) element(er) i nedlastingslisten?
-
+
Finished
Ferdig
@@ -1587,7 +1597,7 @@ Vennligst avslutt denne først.
qBittorrent %1
-
+
Connection status:
Tilkoblingsstatus:
@@ -1662,18 +1672,18 @@ Vennligst avslutt denne først.
qBittorrent %1 er startet.
-
+
qBittorrent
qBittorrent
-
+
DL speed: %1 KiB/s
e.g: Download speed: 10 KiB/s
Nedlastingshastighet: %1 KiB/s
-
+
UP speed: %1 KiB/s
e.g: Upload speed: 10 KiB/s
Opplastingshastighet: %1 KiB/s
@@ -1796,12 +1806,12 @@ Vennligst avslutt denne først.
Det har oppstått en feil (full disk?), '%1' er pauset.
-
+
Connection Status:
Tilkoblingsstatus:
-
+
Online
Tilkoblet
@@ -1866,22 +1876,22 @@ Vennligst avslutt denne først.
-
+
DHT support [ON], port: %1
-
+
DHT support [OFF]
-
+
PeX support [ON]
-
+
PeX support [OFF]
@@ -1892,7 +1902,7 @@ Are you sure you want to quit qBittorrent?
-
+
Downloads
@@ -1907,17 +1917,17 @@ Are you sure you want to quit qBittorrent?
-
+
Encryption support [ON]
-
+
Encryption support [FORCED]
-
+
Encryption support [OFF]
@@ -1987,28 +1997,28 @@ Are you sure you want to quit qBittorrent?
-
+
Local Peer Discovery [ON]
-
+
Local Peer Discovery support [OFF]
-
+
qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)
%1 is qBittorrent version
-
+
DL: %1 KiB/s
-
+
UP: %1 KiB/s
@@ -2023,7 +2033,7 @@ Are you sure you want to quit qBittorrent?
-
+
No direct connections. This may indicate network configuration problems.
@@ -2033,7 +2043,7 @@ Are you sure you want to quit qBittorrent?
-
+
Options were saved successfully.
Innstillingene ble lagret.
@@ -2479,13 +2489,13 @@ Are you sure you want to quit qBittorrent?
RssStream
-
+
%1 ago
10min ago
-
+
Never
@@ -3850,7 +3860,7 @@ However, those plugins were disabled.
Innstillingene ble lagret.
-
+
Choose scan directory
Velg mappe for gjennomsøking
@@ -3860,7 +3870,7 @@ However, those plugins were disabled.
Velg en ipfilter.dat fil
-
+
Choose a save directory
Velg mappe for lagring
@@ -3876,12 +3886,12 @@ However, those plugins were disabled.
Klarte ikke å åpne %1 i lesemodus.
-
+
Choose an ip filter file
-
+
Filters
diff --git a/src/lang/qbittorrent_nl.qm b/src/lang/qbittorrent_nl.qm
index 03ce4331a..1edad0fd9 100644
Binary files a/src/lang/qbittorrent_nl.qm and b/src/lang/qbittorrent_nl.qm differ
diff --git a/src/lang/qbittorrent_nl.ts b/src/lang/qbittorrent_nl.ts
index d9c712474..c09347e4f 100644
--- a/src/lang/qbittorrent_nl.ts
+++ b/src/lang/qbittorrent_nl.ts
@@ -266,7 +266,7 @@ Copyright 2006 door Christophe Dumez<br>
Gescande map:
-
+
...
...
@@ -346,12 +346,12 @@ Copyright 2006 door Christophe Dumez<br>
IP Filter
-
+
Activate IP Filtering
IP filteren activeren
-
+
Filter Settings
Filterinstellingen
@@ -391,9 +391,9 @@ Copyright 2006 door Christophe Dumez<br>
Commentaar
-
+
Proxy
- Proxy
+ Proxy
@@ -403,7 +403,7 @@ Copyright 2006 door Christophe Dumez<br>
Proxy Settings
- Proxyinstellingen
+ Proxyinstellingen
@@ -416,12 +416,12 @@ Copyright 2006 door Christophe Dumez<br>
0.0.0.0
-
+
Port:
Poort:
-
+
Authentication
Authenticatie
@@ -431,7 +431,7 @@ Copyright 2006 door Christophe Dumez<br>
Gebruikersnaam:
-
+
Password:
Wachtwoord:
@@ -526,7 +526,7 @@ Copyright 2006 door Christophe Dumez<br>
Ga naar systeemvak bij venster minimaliseren
-
+
Misc
Overig
@@ -566,7 +566,7 @@ Copyright 2006 door Christophe Dumez<br>
OSD nooit weergeven
-
+
KiB/s
KiB/s
@@ -761,37 +761,37 @@ Copyright 2006 door Christophe Dumez<br>
Proxy type:
-
+
HTTP
HTTP
-
+
SOCKS5
SOCKS5
-
+
Affected connections
Beïnvloedde verbindingen
-
+
Use proxy for connections to trackers
Proxy gebruiken voor verbindingen met tracker
-
+
Use proxy for connections to regular peers
Proxy gebruiken voor verbindingen met normale peers
-
+
Use proxy for connections to web seeds
Proxy gebruiken voor verbindingen met web seeds
-
+
Use proxy for DHT messages
Proxy gebruiken voor DHT berichten
@@ -806,17 +806,17 @@ Copyright 2006 door Christophe Dumez<br>
Encryptie:
-
+
Enabled
Ingeschakeld
-
+
Forced
Geforceerd
-
+
Disabled
Uitgeschakeld
@@ -955,102 +955,102 @@ Copyright 2006 door Christophe Dumez<br>
NAT-PMP port mapping inschakelen
-
+
Global bandwidth limiting
Globaal bandbreedtelimiet
-
+
Upload:
Upload:
-
+
Download:
Download:
-
+
Type:
Type:
-
+
(None)
(Geen)
-
+
Proxy:
Proxy:
-
+
Username:
Gebruikersnaam:
-
+
Bittorrent
Bittorrent
-
+
Connections limit
Verbindingslimiet
-
+
Global maximum number of connections:
Globaal verbindingslimiet:
-
+
Maximum number of connections per torrent:
Verbindingslimiet per torrent:
-
+
Maximum number of upload slots per torrent:
Maximum aantal uploads per torrent:
-
+
Additional Bittorrent features
Extra Bittorrent mogelijkheden
-
+
Enable DHT network (decentralized)
DHT (gedecentraliseerd) netwerk inschakelen
-
+
Enable Peer eXchange (PeX)
Peer eXchange (PeX) inschakelen
-
+
Enable Local Peer Discovery
Local Peer Discovery inschakelen
-
+
Encryption:
Encryptie:
-
+
Share ratio settings
Deel ratio instellingen
-
+
Desired ratio:
Gewenste ratio:
-
+
Filter file path:
Filterbestand pad:
@@ -1065,22 +1065,22 @@ Copyright 2006 door Christophe Dumez<br>
ms
-
+
RSS
RSS
-
+
RSS feeds refresh interval:
RSS feeds vernieuwingsinterval:
-
+
minutes
minuten
-
+
Maximum number of articles per feed:
Maximum aantal artikelen per feed:
@@ -1090,7 +1090,7 @@ Copyright 2006 door Christophe Dumez<br>
Bestandssysteem
-
+
Remove finished torrents when their ratio reaches:
Complete torrents verwijderen bij een ratio van:
@@ -1146,52 +1146,52 @@ Copyright 2006 door Christophe Dumez<br>
seconden
-
+
Spoof Azureus to avoid ban (requires restart)
Spoof Azureus om ban te voorkomen (herstart verplicht)
-
+
Web UI
Web UI
-
+
Enable Web User Interface
Web Gebruikers Interface inschakelen
-
+
HTTP Server
HTTP Server
-
+
Enable RSS support
-
+
RSS settings
-
+
Torrent queueing
-
+
Enable queueing system
-
+
Maximum active downloads:
-
+
Maximum active torrents:
@@ -1200,6 +1200,16 @@ Copyright 2006 door Christophe Dumez<br>
Display top toolbar
+
+
+ Search engine proxy settings
+
+
+
+
+ Bittorrent proxy settings
+
+
DownloadingTorrents
@@ -1470,7 +1480,7 @@ Copyright 2006 door Christophe Dumez<br>
gestart.
-
+
qBittorrent
qBittorrent
@@ -1650,7 +1660,7 @@ Copyright 2006 door Christophe Dumez<br>
/s
-
+
Finished
Klaar
@@ -1948,7 +1958,7 @@ Stop het eerste proccess eerst.
qBittorrent %1
-
+
Connection status:
Verbindingsstatus:
@@ -2023,13 +2033,13 @@ Stop het eerste proccess eerst.
qBittorrent %1 gestart.
-
+
DL speed: %1 KiB/s
e.g: Download speed: 10 KiB/s
DL snelheid: %1 KiB/s
-
+
UP speed: %1 KiB/s
e.g: Upload speed: 10 KiB/s
UP snelheid: %1 KiB/s
@@ -2146,12 +2156,12 @@ Stop het eerste proccess eerst.
Een fout is opgetreden tijdens het lezen of schrijven van %1. De schijf is waarschijnlijk vol, de download is gepauzeerd
-
+
Connection Status:
Verbindingsstatus:
-
+
Online
Online
@@ -2216,22 +2226,22 @@ Stop het eerste proccess eerst.
qBittorrent is verbonden aan poort: %1
-
+
DHT support [ON], port: %1
DHT ondersteuning [AAN], poort: %1
-
+
DHT support [OFF]
DHT ondersteuning [UIT]
-
+
PeX support [ON]
PeX ondersteuning [AAN]
-
+
PeX support [OFF]
PeX ondersteuning [UIT]
@@ -2243,7 +2253,7 @@ Are you sure you want to quit qBittorrent?
Weet u zeker dat u qBittorrent wilt afsluiten?
-
+
Downloads
Downloads
@@ -2258,17 +2268,17 @@ Weet u zeker dat u qBittorrent wilt afsluiten?
UPnP ondersteuning [AAN]
-
+
Encryption support [ON]
Encryptie ondersteuning [AAN]
-
+
Encryption support [FORCED]
Encryptie ondersteuning [GEFORCEERD]
-
+
Encryption support [OFF]
Encryptie ondersteuning [UIT]
@@ -2344,12 +2354,12 @@ Weet u zeker dat u qBittorrent wilt afsluiten?
NAT-PMP ondersteuning [UIT]
-
+
Local Peer Discovery [ON]
Local Peer Discovery [AAN]
-
+
Local Peer Discovery support [OFF]
Local Peer Discovery ondersteuning [UIT]
@@ -2360,18 +2370,18 @@ Weet u zeker dat u qBittorrent wilt afsluiten?
'%1' is verwijderd omdat de ratio de maximale ingestelde waarde heeft bereikt.
-
+
qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)
%1 is qBittorrent version
qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)
-
+
DL: %1 KiB/s
-
+
UP: %1 KiB/s
@@ -2386,7 +2396,7 @@ Weet u zeker dat u qBittorrent wilt afsluiten?
-
+
No direct connections. This may indicate network configuration problems.
@@ -2396,7 +2406,7 @@ Weet u zeker dat u qBittorrent wilt afsluiten?
-
+
Options were saved successfully.
Opties zijn succesvol opgeslagen.
@@ -2925,13 +2935,13 @@ Weet u zeker dat u qBittorrent wilt afsluiten?
RssStream
-
+
%1 ago
10min ago
%1 geleden
-
+
Never
Nooit
@@ -4385,7 +4395,7 @@ De plugins zijn uitgeschakeld.
Opties zijn succesvol opgeslagen.
-
+
Choose scan directory
Kies scanmap
@@ -4395,7 +4405,7 @@ De plugins zijn uitgeschakeld.
Kies een ipfilter.dat bestand
-
+
Choose a save directory
Kies een opslagmap
@@ -4411,12 +4421,12 @@ De plugins zijn uitgeschakeld.
Kon %1 niet openen om te lezen.
-
+
Choose an ip filter file
Kies een ip filter bestand
-
+
Filters
Filters
diff --git a/src/lang/qbittorrent_pl.qm b/src/lang/qbittorrent_pl.qm
index 496eaf55d..b39338c32 100644
Binary files a/src/lang/qbittorrent_pl.qm and b/src/lang/qbittorrent_pl.qm differ
diff --git a/src/lang/qbittorrent_pl.ts b/src/lang/qbittorrent_pl.ts
index 52d0ad388..d7f89b375 100644
--- a/src/lang/qbittorrent_pl.ts
+++ b/src/lang/qbittorrent_pl.ts
@@ -274,7 +274,7 @@ Wszystkie prawa zastrzeżone © 2006 Christophe Dumez<br>
Zakres portu:
-
+
...
...
@@ -299,14 +299,14 @@ Wszystkie prawa zastrzeżone © 2006 Christophe Dumez<br>
do
-
+
Proxy
- Proxy
+ Proxy
Proxy Settings
- Ustawienia Proxy
+ Ustawienia Proxy
@@ -319,7 +319,7 @@ Wszystkie prawa zastrzeżone © 2006 Christophe Dumez<br>
0.0.0.0
-
+
Port:
Port:
@@ -329,7 +329,7 @@ Wszystkie prawa zastrzeżone © 2006 Christophe Dumez<br>
Serwer proxy wymaga autentykacji
-
+
Authentication
Autentykacja
@@ -339,7 +339,7 @@ Wszystkie prawa zastrzeżone © 2006 Christophe Dumez<br>
Użytkownik:
-
+
Password:
Hasło:
@@ -434,12 +434,12 @@ Wszystkie prawa zastrzeżone © 2006 Christophe Dumez<br>
KB UP max.
-
+
Activate IP Filtering
Włącz filtrowanie IP
-
+
Filter Settings
Ustawienia filtru
@@ -514,7 +514,7 @@ Wszystkie prawa zastrzeżone © 2006 Christophe Dumez<br>
Minimalizuj okno do tray-a
-
+
Misc
Różne
@@ -554,7 +554,7 @@ Wszystkie prawa zastrzeżone © 2006 Christophe Dumez<br>
Nigdy nie wyświetlaj OSD
-
+
KiB/s
KiB/s
@@ -749,37 +749,37 @@ Wszystkie prawa zastrzeżone © 2006 Christophe Dumez<br>
Typ Proxy:
-
+
HTTP
HTTP
-
+
SOCKS5
SOCKS5
-
+
Affected connections
Wymuszone połączenia
-
+
Use proxy for connections to trackers
Użyj proxy do połączenia z trackerami
-
+
Use proxy for connections to regular peers
Użyj proxy do połączenia z peerami
-
+
Use proxy for connections to web seeds
Użyj proxy do połączenia z seedami web
-
+
Use proxy for DHT messages
Użyj proxy do wiadomości DHT
@@ -794,17 +794,17 @@ Wszystkie prawa zastrzeżone © 2006 Christophe Dumez<br>
Stan szyfrowania:
-
+
Enabled
Włączone
-
+
Forced
Wymuszone
-
+
Disabled
Wyłączone
@@ -943,102 +943,102 @@ Wszystkie prawa zastrzeżone © 2006 Christophe Dumez<br>
Włącz mapowanie portu NAT-PMP
-
+
Global bandwidth limiting
Globalne ograniczenie przepustowości łącza
-
+
Upload:
Wysyłanie:
-
+
Download:
Pobieranie:
-
+
Type:
Typ:
-
+
(None)
(Nic)
-
+
Proxy:
Proxy:
-
+
Username:
Nazwa użytkownika:
-
+
Bittorrent
Bittorrent
-
+
Connections limit
Limit połączeń
-
+
Global maximum number of connections:
Maksymalna ilość połączeń:
-
+
Maximum number of connections per torrent:
Maksymalna ilość połączeń na torrent:
-
+
Maximum number of upload slots per torrent:
Maksymalna ilość slotów wysyłania na torrent:
-
+
Additional Bittorrent features
Dodatkowe cechy Bittorrenta
-
+
Enable DHT network (decentralized)
Włącz sieć DHT (rozproszona)
-
+
Enable Peer eXchange (PeX)
Włącz Peer eXchange (PeX)
-
+
Enable Local Peer Discovery
Włącz Local Peer Discovery
-
+
Encryption:
Szyfrowanie:
-
+
Share ratio settings
Ustawienia wskaźnika Share ratio
-
+
Desired ratio:
Pożądane ratio:
-
+
Filter file path:
Filtr ścieżki pliku:
@@ -1053,22 +1053,22 @@ Wszystkie prawa zastrzeżone © 2006 Christophe Dumez<br>
ms
-
+
RSS
RSS
-
+
RSS feeds refresh interval:
Okres odświeżania nagłówków RSS:
-
+
minutes
minut
-
+
Maximum number of articles per feed:
Maksymalna ilość wiadomości w nagłówku:
@@ -1078,7 +1078,7 @@ Wszystkie prawa zastrzeżone © 2006 Christophe Dumez<br>
System pliku
-
+
Remove finished torrents when their ratio reaches:
Usuń zakończone torrenty gdy ratio osiągnie:
@@ -1134,52 +1134,52 @@ Wszystkie prawa zastrzeżone © 2006 Christophe Dumez<br>
sekund
-
+
Spoof Azureus to avoid ban (requires restart)
Podrabianie Azureusa pozwala ominąć blokadę (wymagany restart)
-
+
Web UI
Web UI
-
+
Enable Web User Interface
Włącz interfejs Web
-
+
HTTP Server
Serwer HTTP
-
+
Enable RSS support
Włącz obsługę RSS
-
+
RSS settings
Ustawienia RSS
-
+
Enable queueing system
Włącz kolejkowanie
-
+
Maximum active downloads:
Maksymalna ilość aktywnych pobierań:
-
+
Torrent queueing
Kolejkowanie torrentów
-
+
Maximum active torrents:
Maksymalna ilość aktywnych torrentów:
@@ -1188,6 +1188,16 @@ Wszystkie prawa zastrzeżone © 2006 Christophe Dumez<br>
Display top toolbar
Pokaż górny pasek narzędzi
+
+
+ Search engine proxy settings
+
+
+
+
+ Bittorrent proxy settings
+
+
DownloadingTorrents
@@ -1593,7 +1603,7 @@ Wszystkie prawa zastrzeżone © 2006 Christophe Dumez<br>
wznowiony.
-
+
Finished
Ukończone
@@ -1636,7 +1646,7 @@ Wszystkie prawa zastrzeżone © 2006 Christophe Dumez<br>
qBittorrent
-
+
qBittorrent
qBittorrent
@@ -1988,7 +1998,7 @@ Zamknij najpierw okno podglądu.
qBittorent %1
-
+
Connection status:
Status połączenia:
@@ -2063,13 +2073,13 @@ Zamknij najpierw okno podglądu.
qBittorrent %1 uruchomiony.
-
+
DL speed: %1 KiB/s
e.g: Download speed: 10 KiB/s
Prędkość DL: %1 KiB/s
-
+
UP speed: %1 KiB/s
e.g: Upload speed: 10 KiB/s
Prędkość UP: %1 KiB/
@@ -2192,12 +2202,12 @@ Zamknij najpierw okno podglądu.
Wystąpił błąd (brak miejsca?), '%1' wstrzymany.
-
+
Connection Status:
Status połączenia:
-
+
Online
Połączony
@@ -2262,22 +2272,22 @@ Zamknij najpierw okno podglądu.
qBittorrent jest podłączony do portu: %1
-
+
DHT support [ON], port: %1
Wsparcie DHT [WŁ], port: %1
-
+
DHT support [OFF]
Wsparcie DHT [WYŁ]
-
+
PeX support [ON]
Wsparcie PeX [WŁ]
-
+
PeX support [OFF]
Wsparcie pEx [WYŁ]
@@ -2289,7 +2299,7 @@ Are you sure you want to quit qBittorrent?
Czy napewno zamknąć qBittorrent?
-
+
Downloads
Pobieranie
@@ -2314,17 +2324,17 @@ Czy napewno zamknąć qBittorrent?
Bądź ostrożny, wymiana plików chronionych prawami autorskimi jest niezgodna z prawem.
-
+
Encryption support [ON]
Wsparcie szyfrowania [WŁ]
-
+
Encryption support [FORCED]
Wsparcie szyfrowania [WYMUSZONE]
-
+
Encryption support [OFF]
Wsparcie szyfrowania [WYŁ]
@@ -2427,12 +2437,12 @@ Czy napewno zamknąć qBittorrent?
Obsługa NAT-PMP [WYŁ]
-
+
Local Peer Discovery [ON]
Local Peer Discovery [WŁ]
-
+
Local Peer Discovery support [OFF]
Obsługa Local Peer Discovery [WYŁ]
@@ -2443,18 +2453,18 @@ Czy napewno zamknąć qBittorrent?
'%1' został usunięty ponieważ ratio osiągnęło ustawioną wartość.
-
+
qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)
%1 is qBittorrent version
qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)
-
+
DL: %1 KiB/s
DL: %1 KiB/s
-
+
UP: %1 KiB/s
UP: %1 KiB/s
@@ -2469,7 +2479,7 @@ Czy napewno zamknąć qBittorrent?
DHT: %1 węzły
-
+
No direct connections. This may indicate network configuration problems.
Brak bezposrednich połączeń. Może to oznaczać problem z konfiguracją sieci.
@@ -2479,7 +2489,7 @@ Czy napewno zamknąć qBittorrent?
Wysyłane
-
+
Options were saved successfully.
Ustawienia zapisane.
@@ -3033,13 +3043,13 @@ Czy napewno zamknąć qBittorrent?
RssStream
-
+
%1 ago
10min ago
%1 temu
-
+
Never
Nigdy
@@ -4518,7 +4528,7 @@ Jednak tamte wtyczki były wyłączone.
Ustawienia zapisane.
-
+
Choose scan directory
Wybierz katalog przeszukiwania
@@ -4528,7 +4538,7 @@ Jednak tamte wtyczki były wyłączone.
Wybierz plik ipfilter.dat
-
+
Choose a save directory
Wybierz katalog docelowy
@@ -4544,7 +4554,7 @@ Jednak tamte wtyczki były wyłączone.
Nie można otworzyć %1 w trybie odczytu.
-
+
Choose an ip filter file
Wybierz plik ip filter
@@ -4554,7 +4564,7 @@ Jednak tamte wtyczki były wyłączone.
Filtry (*.dat *.p2p *.p2b)
-
+
Filters
Filtry
diff --git a/src/lang/qbittorrent_pt.qm b/src/lang/qbittorrent_pt.qm
index 2a491804f..06460e046 100644
Binary files a/src/lang/qbittorrent_pt.qm and b/src/lang/qbittorrent_pt.qm differ
diff --git a/src/lang/qbittorrent_pt.ts b/src/lang/qbittorrent_pt.ts
index f05fb5a88..dad9416d5 100644
--- a/src/lang/qbittorrent_pt.ts
+++ b/src/lang/qbittorrent_pt.ts
@@ -207,7 +207,7 @@ Copyright ©2007 por Christophe Dumez<br>
Range da porta:
-
+
...
...
@@ -227,14 +227,14 @@ Copyright ©2007 por Christophe Dumez<br>
conexões
-
+
Proxy
- Proxy
+ Proxy
Proxy Settings
- Configurações de Proxy
+ Configurações de Proxy
@@ -247,7 +247,7 @@ Copyright ©2007 por Christophe Dumez<br>
0.0.0.0
-
+
Port:
Porta:
@@ -257,7 +257,7 @@ Copyright ©2007 por Christophe Dumez<br>
Servidor proxy requer autenticação
-
+
Authentication
Autenticação
@@ -267,7 +267,7 @@ Copyright ©2007 por Christophe Dumez<br>
Usuário:
-
+
Password:
Senha:
@@ -317,12 +317,12 @@ Copyright ©2007 por Christophe Dumez<br>
KB UP máx.
-
+
Activate IP Filtering
Ativar filtragem de IP
-
+
Filter Settings
Configurações do Filtro
@@ -387,7 +387,7 @@ Copyright ©2007 por Christophe Dumez<br>
Ir para systray quando minimizado
-
+
Misc
Miscelânea
@@ -427,7 +427,7 @@ Copyright ©2007 por Christophe Dumez<br>
Nunca mostrar OSD
-
+
KiB/s
KiB/s
@@ -617,37 +617,37 @@ Copyright ©2007 por Christophe Dumez<br>
Tipo de Proxy:
-
+
HTTP
HTTP
-
+
SOCKS5
SOCKS5
-
+
Affected connections
Conexões afetadas
-
+
Use proxy for connections to trackers
Usar proxy para conexões em trackers
-
+
Use proxy for connections to regular peers
Usar proxy para conexões em pares regulares
-
+
Use proxy for connections to web seeds
Usar proxy para conexões em pares da web
-
+
Use proxy for DHT messages
Usar proxy para mensagens DHT
@@ -662,17 +662,17 @@ Copyright ©2007 por Christophe Dumez<br>
Estado da encriptação:
-
+
Enabled
Habilitado
-
+
Forced
Forçado
-
+
Disabled
Desabilitado
@@ -811,102 +811,102 @@ Copyright ©2007 por Christophe Dumez<br>
Habilitar mapeamento de porta NAT-PMP
-
+
Global bandwidth limiting
Limite global de banda
-
+
Upload:
Upload:
-
+
Download:
Download:
-
+
Type:
Tipo:
-
+
(None)
(Nenhum)
-
+
Proxy:
Proxy:
-
+
Username:
Usuário:
-
+
Bittorrent
Bittorrent
-
+
Connections limit
Limites de conexão
-
+
Global maximum number of connections:
Número máximo global de conexões:
-
+
Maximum number of connections per torrent:
Número máximo global de conexões por torrent:
-
+
Maximum number of upload slots per torrent:
Número máximo de slots de upload por torrent:
-
+
Additional Bittorrent features
Características Bittorrent adicionais
-
+
Enable DHT network (decentralized)
Habilitar DHT (decentralizado)
-
+
Enable Peer eXchange (PeX)
Habilitar Peer eXchange (PeX)
-
+
Enable Local Peer Discovery
Habilitar Peer Discovery Local
-
+
Encryption:
Encriptação:
-
+
Share ratio settings
Configurações de taxa de compartilhamento
-
+
Desired ratio:
Taxa designada:
-
+
Filter file path:
Caminho do arquivo do filtro:
@@ -921,22 +921,22 @@ Copyright ©2007 por Christophe Dumez<br>
ms
-
+
RSS
RSS
-
+
RSS feeds refresh interval:
Intervalo de atualização dos RSS feeds:
-
+
minutes
minutos
-
+
Maximum number of articles per feed:
Número máximo de artigos por feed:
@@ -946,7 +946,7 @@ Copyright ©2007 por Christophe Dumez<br>
Sistema de arquivo
-
+
Remove finished torrents when their ratio reaches:
Remover torrents finalizados quando sua taxa atingir:
@@ -1002,52 +1002,52 @@ Copyright ©2007 por Christophe Dumez<br>
segundos
-
+
Spoof Azureus to avoid ban (requires restart)
Parar Azureus para evitar ser banido
-
+
Web UI
Caminho web
-
+
Enable Web User Interface
Habilitar interface de usuário web
-
+
HTTP Server
Servidor web
-
+
Enable RSS support
-
+
RSS settings
-
+
Enable queueing system
-
+
Maximum active downloads:
-
+
Torrent queueing
-
+
Maximum active torrents:
@@ -1056,6 +1056,16 @@ Copyright ©2007 por Christophe Dumez<br>
Display top toolbar
+
+
+ Search engine proxy settings
+
+
+
+
+ Bittorrent proxy settings
+
+
DownloadingTorrents
@@ -1367,7 +1377,7 @@ Copyright ©2007 por Christophe Dumez<br>
iniciado
-
+
Finished
Concluído
@@ -1476,7 +1486,7 @@ Copyright ©2007 por Christophe Dumez<br>
qBittorrent
-
+
qBittorrent
qBittorrent
@@ -1772,7 +1782,7 @@ Por favor feche o outro primeiro.
qBittorrent %1
-
+
Connection status:
Estado da conexão:
@@ -1847,13 +1857,13 @@ Por favor feche o outro primeiro.
qBittorrent %1 iniciado.
-
+
DL speed: %1 KiB/s
e.g: Download speed: 10 KiB/s
Velocidade de download: %1 KiB/s
-
+
UP speed: %1 KiB/s
e.g: Upload speed: 10 KiB/s
Velocidade de Upload: %1 KiB/s
@@ -1976,12 +1986,12 @@ Por favor feche o outro primeiro.
Ocorreu um erro (disco cheio?), '%1' pausado.
-
+
Connection Status:
Estado da conexão:
-
+
Online
Online
@@ -2046,22 +2056,22 @@ Por favor feche o outro primeiro.
qBittorrent escuta a porta: %1
-
+
DHT support [ON], port: %1
Suporte DHT [Ligado], porta: %1
-
+
DHT support [OFF]
Suporte DHT [Desligado]
-
+
PeX support [ON]
Suporte PeX [Ligado]
-
+
PeX support [OFF]
Suporte PeX [Desligado]
@@ -2073,7 +2083,7 @@ Are you sure you want to quit qBittorrent?
Deseja mesmo sair do qBittorrent?
-
+
Downloads
Downloads
@@ -2093,17 +2103,17 @@ Deseja mesmo sair do qBittorrent?
Esteja ciente, compartilhar material protejido sem permissão é contra a lei.
-
+
Encryption support [ON]
Suporte a encriptação [Ligado]
-
+
Encryption support [FORCED]
Suporte a encriptação [FORÇADO]
-
+
Encryption support [OFF]
Suporte a encriptação [Desligado]
@@ -2206,12 +2216,12 @@ Deseja mesmo sair do qBittorrent?
Suporte NAT-PMP [desligado]
-
+
Local Peer Discovery [ON]
Peer discovery [ligado]
-
+
Local Peer Discovery support [OFF]
Peer discovery [desligado]
@@ -2222,18 +2232,18 @@ Deseja mesmo sair do qBittorrent?
'%1' foi removido sua taxa atingiu o valor máximo que você configurou.
-
+
qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)
%1 is qBittorrent version
qBittorrent %1 (Down: %2Kb/s, Up: %3kb/s)
-
+
DL: %1 KiB/s
-
+
UP: %1 KiB/s
@@ -2248,7 +2258,7 @@ Deseja mesmo sair do qBittorrent?
-
+
No direct connections. This may indicate network configuration problems.
@@ -2258,7 +2268,7 @@ Deseja mesmo sair do qBittorrent?
-
+
Options were saved successfully.
Opções salvas com sucesso.
@@ -2787,13 +2797,13 @@ Deseja mesmo sair do qBittorrent?
RssStream
-
+
%1 ago
10min ago
%1 atrás
-
+
Never
Nunca
@@ -4329,7 +4339,7 @@ Portanto os plugins foram desabilitados.
Opções salvas com sucesso.
-
+
Choose scan directory
Selecione diretório para varredura
@@ -4339,7 +4349,7 @@ Portanto os plugins foram desabilitados.
Selecione um arquivo ipfilter.dat
-
+
Choose a save directory
Selecione um diretório de salvamento
@@ -4355,12 +4365,12 @@ Portanto os plugins foram desabilitados.
Não posso abrir %1 no modo de leitura.
-
+
Choose an ip filter file
Escolha um arquivo de filtro de ip
-
+
Filters
Filtros
diff --git a/src/lang/qbittorrent_pt_BR.qm b/src/lang/qbittorrent_pt_BR.qm
index 2a491804f..06460e046 100644
Binary files a/src/lang/qbittorrent_pt_BR.qm and b/src/lang/qbittorrent_pt_BR.qm differ
diff --git a/src/lang/qbittorrent_pt_BR.ts b/src/lang/qbittorrent_pt_BR.ts
index f05fb5a88..dad9416d5 100644
--- a/src/lang/qbittorrent_pt_BR.ts
+++ b/src/lang/qbittorrent_pt_BR.ts
@@ -207,7 +207,7 @@ Copyright ©2007 por Christophe Dumez<br>
Range da porta:
-
+
...
...
@@ -227,14 +227,14 @@ Copyright ©2007 por Christophe Dumez<br>
conexões
-
+
Proxy
- Proxy
+ Proxy
Proxy Settings
- Configurações de Proxy
+ Configurações de Proxy
@@ -247,7 +247,7 @@ Copyright ©2007 por Christophe Dumez<br>
0.0.0.0
-
+
Port:
Porta:
@@ -257,7 +257,7 @@ Copyright ©2007 por Christophe Dumez<br>
Servidor proxy requer autenticação
-
+
Authentication
Autenticação
@@ -267,7 +267,7 @@ Copyright ©2007 por Christophe Dumez<br>
Usuário:
-
+
Password:
Senha:
@@ -317,12 +317,12 @@ Copyright ©2007 por Christophe Dumez<br>
KB UP máx.
-
+
Activate IP Filtering
Ativar filtragem de IP
-
+
Filter Settings
Configurações do Filtro
@@ -387,7 +387,7 @@ Copyright ©2007 por Christophe Dumez<br>
Ir para systray quando minimizado
-
+
Misc
Miscelânea
@@ -427,7 +427,7 @@ Copyright ©2007 por Christophe Dumez<br>
Nunca mostrar OSD
-
+
KiB/s
KiB/s
@@ -617,37 +617,37 @@ Copyright ©2007 por Christophe Dumez<br>
Tipo de Proxy:
-
+
HTTP
HTTP
-
+
SOCKS5
SOCKS5
-
+
Affected connections
Conexões afetadas
-
+
Use proxy for connections to trackers
Usar proxy para conexões em trackers
-
+
Use proxy for connections to regular peers
Usar proxy para conexões em pares regulares
-
+
Use proxy for connections to web seeds
Usar proxy para conexões em pares da web
-
+
Use proxy for DHT messages
Usar proxy para mensagens DHT
@@ -662,17 +662,17 @@ Copyright ©2007 por Christophe Dumez<br>
Estado da encriptação:
-
+
Enabled
Habilitado
-
+
Forced
Forçado
-
+
Disabled
Desabilitado
@@ -811,102 +811,102 @@ Copyright ©2007 por Christophe Dumez<br>
Habilitar mapeamento de porta NAT-PMP
-
+
Global bandwidth limiting
Limite global de banda
-
+
Upload:
Upload:
-
+
Download:
Download:
-
+
Type:
Tipo:
-
+
(None)
(Nenhum)
-
+
Proxy:
Proxy:
-
+
Username:
Usuário:
-
+
Bittorrent
Bittorrent
-
+
Connections limit
Limites de conexão
-
+
Global maximum number of connections:
Número máximo global de conexões:
-
+
Maximum number of connections per torrent:
Número máximo global de conexões por torrent:
-
+
Maximum number of upload slots per torrent:
Número máximo de slots de upload por torrent:
-
+
Additional Bittorrent features
Características Bittorrent adicionais
-
+
Enable DHT network (decentralized)
Habilitar DHT (decentralizado)
-
+
Enable Peer eXchange (PeX)
Habilitar Peer eXchange (PeX)
-
+
Enable Local Peer Discovery
Habilitar Peer Discovery Local
-
+
Encryption:
Encriptação:
-
+
Share ratio settings
Configurações de taxa de compartilhamento
-
+
Desired ratio:
Taxa designada:
-
+
Filter file path:
Caminho do arquivo do filtro:
@@ -921,22 +921,22 @@ Copyright ©2007 por Christophe Dumez<br>
ms
-
+
RSS
RSS
-
+
RSS feeds refresh interval:
Intervalo de atualização dos RSS feeds:
-
+
minutes
minutos
-
+
Maximum number of articles per feed:
Número máximo de artigos por feed:
@@ -946,7 +946,7 @@ Copyright ©2007 por Christophe Dumez<br>
Sistema de arquivo
-
+
Remove finished torrents when their ratio reaches:
Remover torrents finalizados quando sua taxa atingir:
@@ -1002,52 +1002,52 @@ Copyright ©2007 por Christophe Dumez<br>
segundos
-
+
Spoof Azureus to avoid ban (requires restart)
Parar Azureus para evitar ser banido
-
+
Web UI
Caminho web
-
+
Enable Web User Interface
Habilitar interface de usuário web
-
+
HTTP Server
Servidor web
-
+
Enable RSS support
-
+
RSS settings
-
+
Enable queueing system
-
+
Maximum active downloads:
-
+
Torrent queueing
-
+
Maximum active torrents:
@@ -1056,6 +1056,16 @@ Copyright ©2007 por Christophe Dumez<br>
Display top toolbar
+
+
+ Search engine proxy settings
+
+
+
+
+ Bittorrent proxy settings
+
+
DownloadingTorrents
@@ -1367,7 +1377,7 @@ Copyright ©2007 por Christophe Dumez<br>
iniciado
-
+
Finished
Concluído
@@ -1476,7 +1486,7 @@ Copyright ©2007 por Christophe Dumez<br>
qBittorrent
-
+
qBittorrent
qBittorrent
@@ -1772,7 +1782,7 @@ Por favor feche o outro primeiro.
qBittorrent %1
-
+
Connection status:
Estado da conexão:
@@ -1847,13 +1857,13 @@ Por favor feche o outro primeiro.
qBittorrent %1 iniciado.
-
+
DL speed: %1 KiB/s
e.g: Download speed: 10 KiB/s
Velocidade de download: %1 KiB/s
-
+
UP speed: %1 KiB/s
e.g: Upload speed: 10 KiB/s
Velocidade de Upload: %1 KiB/s
@@ -1976,12 +1986,12 @@ Por favor feche o outro primeiro.
Ocorreu um erro (disco cheio?), '%1' pausado.
-
+
Connection Status:
Estado da conexão:
-
+
Online
Online
@@ -2046,22 +2056,22 @@ Por favor feche o outro primeiro.
qBittorrent escuta a porta: %1
-
+
DHT support [ON], port: %1
Suporte DHT [Ligado], porta: %1
-
+
DHT support [OFF]
Suporte DHT [Desligado]
-
+
PeX support [ON]
Suporte PeX [Ligado]
-
+
PeX support [OFF]
Suporte PeX [Desligado]
@@ -2073,7 +2083,7 @@ Are you sure you want to quit qBittorrent?
Deseja mesmo sair do qBittorrent?
-
+
Downloads
Downloads
@@ -2093,17 +2103,17 @@ Deseja mesmo sair do qBittorrent?
Esteja ciente, compartilhar material protejido sem permissão é contra a lei.
-
+
Encryption support [ON]
Suporte a encriptação [Ligado]
-
+
Encryption support [FORCED]
Suporte a encriptação [FORÇADO]
-
+
Encryption support [OFF]
Suporte a encriptação [Desligado]
@@ -2206,12 +2216,12 @@ Deseja mesmo sair do qBittorrent?
Suporte NAT-PMP [desligado]
-
+
Local Peer Discovery [ON]
Peer discovery [ligado]
-
+
Local Peer Discovery support [OFF]
Peer discovery [desligado]
@@ -2222,18 +2232,18 @@ Deseja mesmo sair do qBittorrent?
'%1' foi removido sua taxa atingiu o valor máximo que você configurou.
-
+
qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)
%1 is qBittorrent version
qBittorrent %1 (Down: %2Kb/s, Up: %3kb/s)
-
+
DL: %1 KiB/s
-
+
UP: %1 KiB/s
@@ -2248,7 +2258,7 @@ Deseja mesmo sair do qBittorrent?
-
+
No direct connections. This may indicate network configuration problems.
@@ -2258,7 +2268,7 @@ Deseja mesmo sair do qBittorrent?
-
+
Options were saved successfully.
Opções salvas com sucesso.
@@ -2787,13 +2797,13 @@ Deseja mesmo sair do qBittorrent?
RssStream
-
+
%1 ago
10min ago
%1 atrás
-
+
Never
Nunca
@@ -4329,7 +4339,7 @@ Portanto os plugins foram desabilitados.
Opções salvas com sucesso.
-
+
Choose scan directory
Selecione diretório para varredura
@@ -4339,7 +4349,7 @@ Portanto os plugins foram desabilitados.
Selecione um arquivo ipfilter.dat
-
+
Choose a save directory
Selecione um diretório de salvamento
@@ -4355,12 +4365,12 @@ Portanto os plugins foram desabilitados.
Não posso abrir %1 no modo de leitura.
-
+
Choose an ip filter file
Escolha um arquivo de filtro de ip
-
+
Filters
Filtros
diff --git a/src/lang/qbittorrent_ro.qm b/src/lang/qbittorrent_ro.qm
index 2946ad482..4c24f1ba3 100644
Binary files a/src/lang/qbittorrent_ro.qm and b/src/lang/qbittorrent_ro.qm differ
diff --git a/src/lang/qbittorrent_ro.ts b/src/lang/qbittorrent_ro.ts
index b3d072466..cef0ae13c 100644
--- a/src/lang/qbittorrent_ro.ts
+++ b/src/lang/qbittorrent_ro.ts
@@ -207,7 +207,7 @@ Copyright © 2006 by Christophe Dumez<br>
Domeniul portului:
-
+
...
...
@@ -227,14 +227,14 @@ Copyright © 2006 by Christophe Dumez<br>
conectări
-
+
Proxy
- Proxy
+ Proxy
Proxy Settings
- Setările Proxy
+ Setările Proxy
@@ -247,7 +247,7 @@ Copyright © 2006 by Christophe Dumez<br>
0.0.0.0
-
+
Port:
Portul:
@@ -257,7 +257,7 @@ Copyright © 2006 by Christophe Dumez<br>
Serverul Proxy cere autentificare
-
+
Authentication
Autentificare
@@ -267,7 +267,7 @@ Copyright © 2006 by Christophe Dumez<br>
Numele utilizatorului:
-
+
Password:
Parola:
@@ -317,12 +317,12 @@ Copyright © 2006 by Christophe Dumez<br>
KB UP max.
-
+
Activate IP Filtering
Activarea IP Filtrare
-
+
Filter Settings
Setările Filtrului
@@ -387,7 +387,7 @@ Copyright © 2006 by Christophe Dumez<br>
Ascunde in SysTray la minimizare
-
+
Misc
Diferite
@@ -427,7 +427,7 @@ Copyright © 2006 by Christophe Dumez<br>
Nici o data nu afiseaza OSD
-
+
KiB/s
KiB/s
@@ -627,37 +627,37 @@ Copyright © 2006 by Christophe Dumez<br>
Tipul de proxy:
-
+
HTTP
HTTP
-
+
SOCKS5
SOCKS5
-
+
Affected connections
Conectări afectate
-
+
Use proxy for connections to trackers
Foloseşte proxy pentru conectare la tracker-i
-
+
Use proxy for connections to regular peers
Foloseşte proxy pentru conectare la peer-i
-
+
Use proxy for connections to web seeds
Foloseşte proxy la conectare cu web seeds
-
+
Use proxy for DHT messages
Foloseşte proxy pentru DHT mesage
@@ -672,17 +672,17 @@ Copyright © 2006 by Christophe Dumez<br>
Starea codificării:
-
+
Enabled
Activată
-
+
Forced
Forţată
-
+
Disabled
Dezactivată
@@ -821,102 +821,102 @@ Copyright © 2006 by Christophe Dumez<br>
Activează NAT-PMP mapare port
-
+
Global bandwidth limiting
Limită globală de bandwidth
-
+
Upload:
Încărcat:
-
+
Download:
Descărcat:
-
+
Type:
Tipul:
-
+
(None)
(Nimic)
-
+
Proxy:
Proxy:
-
+
Username:
Numele de utilizator:
-
+
Bittorrent
Bittorrent
-
+
Connections limit
Limită de conectare
-
+
Global maximum number of connections:
Numărul global maxim de conectări:
-
+
Maximum number of connections per torrent:
Numărul maxim de conectări pentru torrent:
-
+
Maximum number of upload slots per torrent:
Numărul maxim de sloturi de încărcare pentru un torrent:
-
+
Additional Bittorrent features
Funcţii adiţionale
-
+
Enable DHT network (decentralized)
Activează reţeaua DHT(decentralizat)
-
+
Enable Peer eXchange (PeX)
Activează Peer eXchange(PeX)
-
+
Enable Local Peer Discovery
Activează căutarea locală de Peer-i
-
+
Encryption:
Codificare:
-
+
Share ratio settings
Setările de Share ratio
-
+
Desired ratio:
Desired ratio:
-
+
Filter file path:
Filtrează cale de fisiere:
@@ -931,22 +931,22 @@ Copyright © 2006 by Christophe Dumez<br>
ms
-
+
RSS
RSS
-
+
RSS feeds refresh interval:
Intervalul de reînnoire al listei RSS:
-
+
minutes
minute
-
+
Maximum number of articles per feed:
Numărul maxim de articole pentru flux:
@@ -956,7 +956,7 @@ Copyright © 2006 by Christophe Dumez<br>
Sistem de fişiere
-
+
Remove finished torrents when their ratio reaches:
Şterge torrent-urile finişate cînd ratio lor ajunge la:
@@ -1012,52 +1012,52 @@ Copyright © 2006 by Christophe Dumez<br>
secunde
-
+
Spoof Azureus to avoid ban (requires restart)
Spoof Azureus to avoid ban (requires restart)
-
+
Web UI
Web UI
-
+
Enable Web User Interface
Activeaza WebUI
-
+
HTTP Server
HTTP Server
-
+
Enable RSS support
-
+
RSS settings
-
+
Enable queueing system
-
+
Maximum active downloads:
-
+
Torrent queueing
-
+
Maximum active torrents:
@@ -1066,6 +1066,16 @@ Copyright © 2006 by Christophe Dumez<br>
Display top toolbar
+
+
+ Search engine proxy settings
+
+
+
+
+ Bittorrent proxy settings
+
+
DownloadingTorrents
@@ -1377,7 +1387,7 @@ Copyright © 2006 by Christophe Dumez<br>
început
-
+
Finished
Finişat
@@ -1486,7 +1496,7 @@ Copyright © 2006 by Christophe Dumez<br>
qBittorrent
-
+
qBittorrent
qBittorrent
@@ -1805,7 +1815,7 @@ Vă rugăm să-l opriţi.
qBittorrent %1
-
+
Connection status:
Starea conectării:
@@ -1862,13 +1872,13 @@ Vă rugăm să-l opriţi.
Seederi
-
+
DL speed: %1 KiB/s
e.g: Download speed: 10 KiB/s
Viteza DL: %1 KiB/s
-
+
UP speed: %1 KiB/s
e.g: Upload speed: 10 KiB/s
Viteza IP: %1 KiB/s
@@ -1955,12 +1965,12 @@ Vă rugăm să-l opriţi.
O eroare a fost detectată la citire sau scriere în %1. Discul probabil este plin, descărcarea a fost pauzată
-
+
Connection Status:
Starea conectării:
-
+
Online
Conectat
@@ -2004,22 +2014,22 @@ Vă rugăm să-l opriţi.
qBittorrent foloseşte portul: %1
-
+
DHT support [ON], port: %1
Suport DHT[Activat], port: %1
-
+
DHT support [OFF]
Suport DHT[Dezactivat]
-
+
PeX support [ON]
Suport PeX[Activat]
-
+
PeX support [OFF]
Suport PeX[Dezactivat]
@@ -2031,7 +2041,7 @@ Are you sure you want to quit qBittorrent?
Doriţi să ieşiţi din qBittorrent?
-
+
Downloads
Descărcări
@@ -2046,17 +2056,17 @@ Doriţi să ieşiţi din qBittorrent?
Suport UPnP[Activat]
-
+
Encryption support [ON]
Suport de codificate[Activat]
-
+
Encryption support [FORCED]
Suport de codificare[Forţat]
-
+
Encryption support [OFF]
Suport de codificare [Dezactivat]
@@ -2132,12 +2142,12 @@ Doriţi să ieşiţi din qBittorrent?
suport NAT-PMP[Dezactivat]
-
+
Local Peer Discovery [ON]
Căutare peer locali[Activat]
-
+
Local Peer Discovery support [OFF]
Căutarea peer locali[Dezactivat]
@@ -2148,18 +2158,18 @@ Doriţi să ieşiţi din qBittorrent?
'%1' a fost şters deoarece ratio lui a ajuns la valoarea maximă setată de dvs.
-
+
qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)
%1 is qBittorrent version
qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)
-
+
DL: %1 KiB/s
-
+
UP: %1 KiB/s
@@ -2174,7 +2184,7 @@ Doriţi să ieşiţi din qBittorrent?
-
+
No direct connections. This may indicate network configuration problems.
@@ -2184,7 +2194,7 @@ Doriţi să ieşiţi din qBittorrent?
-
+
Options were saved successfully.
Opţiunile salvate cu success.
@@ -2698,13 +2708,13 @@ Doriţi să ieşiţi din qBittorrent?
RssStream
-
+
%1 ago
10min ago
%1 în urmă
-
+
Never
Niciodată
@@ -4122,7 +4132,7 @@ Numai acele adăugate de dvs. pot fi dezinstalate.
Opţiunile salvate cu success.
-
+
Choose scan directory
Selectează directoriul de scanare
@@ -4132,7 +4142,7 @@ Numai acele adăugate de dvs. pot fi dezinstalate.
Selectează fişierul ipfilter.dat
-
+
Choose a save directory
Selectează directoriul de salvare
@@ -4148,12 +4158,12 @@ Numai acele adăugate de dvs. pot fi dezinstalate.
Nu pot deschide %1 în mod de citire.
-
+
Choose an ip filter file
Alageţi un fişier ip filtru
-
+
Filters
Filtre
diff --git a/src/lang/qbittorrent_ru.qm b/src/lang/qbittorrent_ru.qm
index d2eba7531..c8038121f 100644
Binary files a/src/lang/qbittorrent_ru.qm and b/src/lang/qbittorrent_ru.qm differ
diff --git a/src/lang/qbittorrent_ru.ts b/src/lang/qbittorrent_ru.ts
index c1760249c..5d8b64fd0 100644
--- a/src/lang/qbittorrent_ru.ts
+++ b/src/lang/qbittorrent_ru.ts
@@ -249,7 +249,7 @@ Copyright © 2006 by Christophe Dumez<br>
Диапазон портов:
-
+
...
...
@@ -274,14 +274,14 @@ Copyright © 2006 by Christophe Dumez<br>
кому
-
+
Proxy
- Прокси
+ Прокси
Proxy Settings
- Настройки прокси
+ Настройки прокси
@@ -294,7 +294,7 @@ Copyright © 2006 by Christophe Dumez<br>
0.0.0.0
-
+
Port:
Порт:
@@ -304,7 +304,7 @@ Copyright © 2006 by Christophe Dumez<br>
Прокси-сервер требует аутентификации
-
+
Authentication
Аутентификация
@@ -314,7 +314,7 @@ Copyright © 2006 by Christophe Dumez<br>
Имя пользователя:
-
+
Password:
Пароль:
@@ -379,12 +379,12 @@ Copyright © 2006 by Christophe Dumez<br>
КБ ЗАГР. макс.
-
+
Activate IP Filtering
Включить фильтр по IP
-
+
Filter Settings
Настройки фильтра
@@ -449,7 +449,7 @@ Copyright © 2006 by Christophe Dumez<br>
Сворачивать в системный трей
-
+
Misc
Разное
@@ -489,7 +489,7 @@ Copyright © 2006 by Christophe Dumez<br>
Никогда не показывать OSD
-
+
KiB/s
КиБ/с
@@ -684,37 +684,37 @@ Copyright © 2006 by Christophe Dumez<br>
Тип прокси:
-
+
HTTP
HTTP
-
+
SOCKS5
Сервер SOCKS5
-
+
Affected connections
Затрагиваемые соединения
-
+
Use proxy for connections to trackers
Использовать прокси для подключения к трекерам
-
+
Use proxy for connections to regular peers
Использовать прокси для подключения к обычным пирам
-
+
Use proxy for connections to web seeds
Использовать прокси для подключения к веб раздачам
-
+
Use proxy for DHT messages
Использовать прокси для сообщений DHT
@@ -729,17 +729,17 @@ Copyright © 2006 by Christophe Dumez<br>
Состояние шифрования:
-
+
Enabled
Включено
-
+
Forced
Принудительно
-
+
Disabled
Выключено
@@ -878,102 +878,102 @@ Copyright © 2006 by Christophe Dumez<br>
Включить распределение портов NAT-PMP
-
+
Global bandwidth limiting
Общее ограничение канала
-
+
Upload:
Отдача:
-
+
Download:
Загрузка:
-
+
Type:
Тип:
-
+
(None)
(нет)
-
+
Proxy:
Прокси:
-
+
Username:
Имя пользователя:
-
+
Bittorrent
Bittorrent
-
+
Connections limit
Ограничение соединений
-
+
Global maximum number of connections:
Общее ограничение на число соединений:
-
+
Maximum number of connections per torrent:
Максимальное число соединений на torrent:
-
+
Maximum number of upload slots per torrent:
Максимальное количество слотов отдачи на torrent:
-
+
Additional Bittorrent features
Дополнительные функции Bittorrent
-
+
Enable DHT network (decentralized)
Включить DHT сеть (децентрализованную)
-
+
Enable Peer eXchange (PeX)
Включить Обмен пирами - Peer eXchange (PeX)
-
+
Enable Local Peer Discovery
Включить обнаружение локальных пиров
-
+
Encryption:
Шифрование:
-
+
Share ratio settings
Настройки соотношения раздачи
-
+
Desired ratio:
Предпочитаемое соотношение:
-
+
Filter file path:
Файл фильтра:
@@ -988,22 +988,22 @@ Copyright © 2006 by Christophe Dumez<br>
мс
-
+
RSS
RSS
-
+
RSS feeds refresh interval:
Интервал обновления RSS каналов:
-
+
minutes
минут
-
+
Maximum number of articles per feed:
Максимальное число статей на канал:
@@ -1013,7 +1013,7 @@ Copyright © 2006 by Christophe Dumez<br>
Файловая система
-
+
Remove finished torrents when their ratio reaches:
Удалять законченные torrentы когда их соотношение раздачи достигнет:
@@ -1069,52 +1069,52 @@ Copyright © 2006 by Christophe Dumez<br>
секунд
-
+
Spoof Azureus to avoid ban (requires restart)
"Обманывать" Azureus чтобы избежать бана (требуется перезапуск)
-
+
Web UI
Web интерфейс
-
+
Enable Web User Interface
Включить Web интерфейс
-
+
HTTP Server
HTTP сервер
-
+
Enable RSS support
Включить поддержку RSS
-
+
RSS settings
Настройки RSS
-
+
Torrent queueing
Очереди Torrent
-
+
Enable queueing system
Включить очереди torrent
-
+
Maximum active downloads:
Максимальное число активных закачек:
-
+
Maximum active torrents:
Максимальное число активных torrent:
@@ -1123,6 +1123,16 @@ Copyright © 2006 by Christophe Dumez<br>
Display top toolbar
Показать верхнюю панель
+
+
+ Search engine proxy settings
+
+
+
+
+ Bittorrent proxy settings
+
+
DownloadingTorrents
@@ -1398,7 +1408,7 @@ Copyright © 2006 by Christophe Dumez<br>
начат.
-
+
qBittorrent
qBittorrent
@@ -1578,7 +1588,7 @@ Copyright © 2006 by Christophe Dumez<br>
/с
-
+
Finished
Закончено
@@ -1895,7 +1905,7 @@ Please close the other one first.
qBittorrent %1
-
+
Connection status:
Состояние связи:
@@ -1970,13 +1980,13 @@ Please close the other one first.
qBittorrent %1 запущен.
-
+
DL speed: %1 KiB/s
e.g: Download speed: 10 KiB/s
Скорость скач.: %1 KiB/с
-
+
UP speed: %1 KiB/s
e.g: Upload speed: 10 KiB/s
Скорость загр.: %1 KiB/с
@@ -2099,12 +2109,12 @@ Please close the other one first.
Произошла ошибка (нет места?), '%1' остановлен.
-
+
Connection Status:
Состояние связи:
-
+
Online
В сети
@@ -2169,22 +2179,22 @@ Please close the other one first.
qBittorrent привязан к порту: %1
-
+
DHT support [ON], port: %1
Поддержка DHT [Вкл], порт: %1
-
+
DHT support [OFF]
Поддержка DHT [Выкл]
-
+
PeX support [ON]
Поддержка PeX [Вкл]
-
+
PeX support [OFF]
Поддержка PeX [Выкл]
@@ -2196,7 +2206,7 @@ Are you sure you want to quit qBittorrent?
Вы хотите выйти из qBittorrent?
-
+
Downloads
Закачки
@@ -2216,17 +2226,17 @@ Are you sure you want to quit qBittorrent?
Осторожнее, раздача материалов защищенных авторскими правами, преследуется по закону.
-
+
Encryption support [ON]
Поддержка шифрования [Вкл]
-
+
Encryption support [FORCED]
Поддержка шифрования [Принудительно]
-
+
Encryption support [OFF]
Поддержка шифрования [Выкл]
@@ -2329,12 +2339,12 @@ Are you sure you want to quit qBittorrent?
Поддержка NAT-PMP [Выкл]
-
+
Local Peer Discovery [ON]
Обнаружение локальных пиров [Вкл]
-
+
Local Peer Discovery support [OFF]
Обнаружение локальных пиров [Выкл]
@@ -2345,18 +2355,18 @@ Are you sure you want to quit qBittorrent?
'%1' был удален, так как его соотношение достигло максимально установленного вами.
-
+
qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)
%1 is qBittorrent version
qBittorrent %1 (Скач: %2КиБ/с, Загр: %3КиБ/с)
-
+
DL: %1 KiB/s
Скач: %1 КиБ/с
-
+
UP: %1 KiB/s
Загр: %1 КиБ/с
@@ -2371,7 +2381,7 @@ Are you sure you want to quit qBittorrent?
DHT: %1 узлов
-
+
No direct connections. This may indicate network configuration problems.
Нет прямых соединений. Причиной этого могут быть проблемы в настройке сети.
@@ -2381,7 +2391,7 @@ Are you sure you want to quit qBittorrent?
-
+
Options were saved successfully.
Настройки были успешно сохранены.
@@ -2910,13 +2920,13 @@ Are you sure you want to quit qBittorrent?
RssStream
-
+
%1 ago
10min ago
%1 назад
-
+
Never
Никогда
@@ -4379,7 +4389,7 @@ However, those plugins were disabled.
Настройки были успешно сохранены.
-
+
Choose scan directory
Выберите директорию для сканирования
@@ -4389,7 +4399,7 @@ However, those plugins were disabled.
Выберите файл ipfilter.dat
-
+
Choose a save directory
Выберите путь сохранения
@@ -4405,12 +4415,12 @@ However, those plugins were disabled.
Невозможно открыть %1 в режиме чтения.
-
+
Choose an ip filter file
Укажите файл ip фильтра
-
+
Filters
Фильтры
diff --git a/src/lang/qbittorrent_sk.qm b/src/lang/qbittorrent_sk.qm
index 3d1017d5d..18cad5b21 100644
Binary files a/src/lang/qbittorrent_sk.qm and b/src/lang/qbittorrent_sk.qm differ
diff --git a/src/lang/qbittorrent_sk.ts b/src/lang/qbittorrent_sk.ts
index e8f6bf9c5..512ba4a57 100644
--- a/src/lang/qbittorrent_sk.ts
+++ b/src/lang/qbittorrent_sk.ts
@@ -204,7 +204,7 @@ Copyright © 2006 by Christophe Dumez<br>
Rozsah portov:
-
+
...
...
@@ -224,14 +224,14 @@ Copyright © 2006 by Christophe Dumez<br>
spojení
-
+
Proxy
- Proxy
+ Proxy
Proxy Settings
- Nastavenia proxy
+ Nastavenia proxy
@@ -244,7 +244,7 @@ Copyright © 2006 by Christophe Dumez<br>
0.0.0.0
-
+
Port:
Port:
@@ -254,7 +254,7 @@ Copyright © 2006 by Christophe Dumez<br>
Proxy server vyžaduje autentfikáciu
-
+
Authentication
Autentifikácia
@@ -264,7 +264,7 @@ Copyright © 2006 by Christophe Dumez<br>
Používateľské meno:
-
+
Password:
Heslo:
@@ -329,12 +329,12 @@ Copyright © 2006 by Christophe Dumez<br>
KB UP max.
-
+
Activate IP Filtering
Aktivovať filtrovanie IP
-
+
Filter Settings
Nastavenie filtra
@@ -399,7 +399,7 @@ Copyright © 2006 by Christophe Dumez<br>
Minimalizovať medzi ikony (systray)
-
+
Misc
Rozličné
@@ -439,7 +439,7 @@ Copyright © 2006 by Christophe Dumez<br>
Nikdy nezobrazuj OSD
-
+
KiB/s
KiB/s
@@ -634,37 +634,37 @@ Copyright © 2006 by Christophe Dumez<br>
Typ proxy:
-
+
HTTP
HTTP
-
+
SOCKS5
SOCKS5
-
+
Affected connections
Ovplyvnené spojenia
-
+
Use proxy for connections to trackers
Používať proxy pre spojenia s trackermi
-
+
Use proxy for connections to regular peers
Používať proxy pre spojenia s obyčajnými rovesníkmi
-
+
Use proxy for connections to web seeds
Používať proxy pre spojenia k web seedom
-
+
Use proxy for DHT messages
Používať proxy pre DHT správy
@@ -679,17 +679,17 @@ Copyright © 2006 by Christophe Dumez<br>
Stav kryptovania:
-
+
Enabled
Zapnuté
-
+
Forced
Vynútené
-
+
Disabled
Vypnuté
@@ -828,102 +828,102 @@ Copyright © 2006 by Christophe Dumez<br>
Zapnúť mapovanie portov NAT-PMP
-
+
Global bandwidth limiting
Globálny limit pásma
-
+
Upload:
Nahrávanie:
-
+
Download:
Sťahovanie:
-
+
Type:
Typ:
-
+
(None)
(žiadny)
-
+
Proxy:
Proxy:
-
+
Username:
Meno používateľa:
-
+
Bittorrent
Bittorrent
-
+
Connections limit
Limit spojení
-
+
Global maximum number of connections:
Maximálny globálny počet spojení:
-
+
Maximum number of connections per torrent:
Maximálny počet spojení na torrent:
-
+
Maximum number of upload slots per torrent:
Maximálny počet slotov pre nahrávanie na torrent:
-
+
Additional Bittorrent features
Ďalšie možnosti Bittorrent
-
+
Enable DHT network (decentralized)
Zapnúť sieť DHT (decentralizovaná)
-
+
Enable Peer eXchange (PeX)
Zapnúť Peer eXchange (PeX)
-
+
Enable Local Peer Discovery
Zapnúť Local Peer Discovery
-
+
Encryption:
Šifrovanie:
-
+
Share ratio settings
Nastavenia pomeru zdieľania
-
+
Desired ratio:
Požadovaný pomer:
-
+
Filter file path:
Cesta k súboru filtov:
@@ -938,22 +938,22 @@ Copyright © 2006 by Christophe Dumez<br>
ms
-
+
RSS
RSS
-
+
RSS feeds refresh interval:
Interval obnovovania RSS kanálov:
-
+
minutes
minút
-
+
Maximum number of articles per feed:
Maximálny počet článkov na kanál:
@@ -963,7 +963,7 @@ Copyright © 2006 by Christophe Dumez<br>
Súborový systém
-
+
Remove finished torrents when their ratio reaches:
Odstrániť dokončené torrenty, keď ich pomer dosiahne:
@@ -1019,52 +1019,52 @@ Copyright © 2006 by Christophe Dumez<br>
sekúnd
-
+
Spoof Azureus to avoid ban (requires restart)
Klamať Azureus, aby sme sa vyhli blokovaniu (vyžaduje reštart)
-
+
Web UI
Webové rozhranie
-
+
Enable Web User Interface
Zapnúť webové rozhranie
-
+
HTTP Server
HTTP Server
-
+
Enable RSS support
-
+
RSS settings
-
+
Enable queueing system
-
+
Maximum active downloads:
-
+
Torrent queueing
-
+
Maximum active torrents:
@@ -1073,6 +1073,16 @@ Copyright © 2006 by Christophe Dumez<br>
Display top toolbar
+
+
+ Search engine proxy settings
+
+
+
+
+ Bittorrent proxy settings
+
+
DownloadingTorrents
@@ -1361,7 +1371,7 @@ Copyright © 2006 by Christophe Dumez<br>
spusten
-
+
Finished
Dokončené
@@ -1466,7 +1476,7 @@ Copyright © 2006 by Christophe Dumez<br>
qBittorrent
-
+
qBittorrent
qBittorrent
@@ -1803,7 +1813,7 @@ Najskôr ho prosím zatvorte.
qBittorrent %1
-
+
Connection status:
Stav spojenia:
@@ -1878,13 +1888,13 @@ Najskôr ho prosím zatvorte.
qBittorrent %1 spustený.
-
+
DL speed: %1 KiB/s
e.g: Download speed: 10 KiB/s
Rýchlosť sťahovania: %1 KiB/s
-
+
UP speed: %1 KiB/s
e.g: Upload speed: 10 KiB/s
Rýchlosť nahrávania: %1 KiB/s
@@ -2007,12 +2017,12 @@ Najskôr ho prosím zatvorte.
Vyskytla sa chyba (plný disk?), „%1“ pozastavené.
-
+
Connection Status:
Stav spojenia:
-
+
Online
Online
@@ -2071,7 +2081,7 @@ Najskôr ho prosím zatvorte.
-
+
Downloads
Sťahovania
@@ -2094,12 +2104,12 @@ Ste si istý, že chcete ukončiť qBittorrent?
qBittorrent sa viaže (bind) na port: %1
-
+
DHT support [ON], port: %1
Podpora DHT [zapnutá], port: %1
-
+
DHT support [OFF]
Podpora DHT [vypnutá]
@@ -2109,12 +2119,12 @@ Ste si istý, že chcete ukončiť qBittorrent?
Podpora UPnP [zapnutá]
-
+
PeX support [ON]
Podpora PeX [zapnutá]
-
+
PeX support [OFF]
Podpora PeX [vypnutá]
@@ -2124,17 +2134,17 @@ Ste si istý, že chcete ukončiť qBittorrent?
Buďte opatrní, zdieľanie materiálu chráneného autorskými právami bez povolenia je protizákonné.
-
+
Encryption support [ON]
Podpora šifrovania [zapnuté]
-
+
Encryption support [FORCED]
Podpora šifrovania [vynútené]
-
+
Encryption support [OFF]
Podpora šifrovania [vypnuté]
@@ -2237,12 +2247,12 @@ Ste si istý, že chcete ukončiť qBittorrent?
Podpora NAT-PMP [vypnutá]
-
+
Local Peer Discovery [ON]
Local Peer Discovery [zapnutá]
-
+
Local Peer Discovery support [OFF]
Podpora Local Peer Discovery support [vypnutá]
@@ -2253,18 +2263,18 @@ Ste si istý, že chcete ukončiť qBittorrent?
„%1“ bol odstránený, pretože jeho pomer dosiahol maximálnu hodonotu, ktorú ste nastavili.
-
+
qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)
%1 is qBittorrent version
qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)
-
+
DL: %1 KiB/s
-
+
UP: %1 KiB/s
@@ -2279,7 +2289,7 @@ Ste si istý, že chcete ukončiť qBittorrent?
-
+
No direct connections. This may indicate network configuration problems.
@@ -2289,7 +2299,7 @@ Ste si istý, že chcete ukončiť qBittorrent?
-
+
Options were saved successfully.
Nastavenia úspešne uložené.
@@ -2808,13 +2818,13 @@ Ste si istý, že chcete ukončiť qBittorrent?
RssStream
-
+
%1 ago
10min ago
pred %1 min
-
+
Never
Nikdy
@@ -4330,7 +4340,7 @@ Tieto moduly však boli vypnuté.
Nastavenia úspešne uložené.
-
+
Choose scan directory
Zvoliť adresár pre prezeranie
@@ -4340,7 +4350,7 @@ Tieto moduly však boli vypnuté.
Vyberte súbor ipfilter.dat
-
+
Choose a save directory
Vyberte adresár, kde sa bude ukladať
@@ -4356,12 +4366,12 @@ Tieto moduly však boli vypnuté.
Nebolo možné otvoriť %1 v režime pre čítanie.
-
+
Choose an ip filter file
Zvoliť súbor IP filtra
-
+
Filters
Filtre
diff --git a/src/lang/qbittorrent_sv.qm b/src/lang/qbittorrent_sv.qm
index ac7600275..9018dbbfd 100644
Binary files a/src/lang/qbittorrent_sv.qm and b/src/lang/qbittorrent_sv.qm differ
diff --git a/src/lang/qbittorrent_sv.ts b/src/lang/qbittorrent_sv.ts
index 71dbbb288..39b8cf7c3 100644
--- a/src/lang/qbittorrent_sv.ts
+++ b/src/lang/qbittorrent_sv.ts
@@ -180,42 +180,42 @@ Copyright © 2006 by Christophe Dumez<br>
Portintervall:
-
+
...
...
Proxy Settings
- Proxyinställningar
+ Proxyinställningar
-
+
Port:
Port:
-
+
Authentication
Autentisering
-
+
Password:
Lösenord:
-
+
Activate IP Filtering
Aktivera IP-filtrering
-
+
Filter Settings
Filterinställningar
-
+
Misc
Diverse
@@ -225,7 +225,7 @@ Copyright © 2006 by Christophe Dumez<br>
Språk:
-
+
KiB/s
KiB/s
@@ -250,52 +250,52 @@ Copyright © 2006 by Christophe Dumez<br>
CDE-stil (Common Desktop Environment-liknande)
-
+
HTTP
HTTP
-
+
SOCKS5
SOCKS 5
-
+
Affected connections
Berörda anslutningar
-
+
Use proxy for connections to trackers
Använd proxy för anslutningar till bevakare
-
+
Use proxy for connections to regular peers
Använd proxy för anslutningar till vanliga klienter
-
+
Use proxy for connections to web seeds
Använd proxy för anslutningar till webbdistributörer
-
+
Use proxy for DHT messages
Använd proxy för DHT-meddelanden
-
+
Enabled
Aktiverad
-
+
Forced
Tvingad
-
+
Disabled
Inaktiverad
@@ -423,102 +423,102 @@ Copyright © 2006 by Christophe Dumez<br>
Aktivera NAT-PMP-portmappning
-
+
Global bandwidth limiting
Allmän bandbreddsbegränsning
-
+
Upload:
Sändning:
-
+
Download:
Hämtning:
-
+
Type:
Typ:
-
+
(None)
(Ingen)
-
+
Proxy:
Proxy:
-
+
Username:
Användarnamn:
-
+
Bittorrent
Bittorrent
-
+
Connections limit
Gräns för anslutningar
-
+
Global maximum number of connections:
Allmänt maximalt antal anslutningar:
-
+
Maximum number of connections per torrent:
Maximalt antal anslutningar per torrent:
-
+
Maximum number of upload slots per torrent:
Maximalt antal sändningsplatser per torrent:
-
+
Additional Bittorrent features
Ytterligare Bittorrent-funktioner
-
+
Enable DHT network (decentralized)
Aktivera DHT-nätverk (decentraliserat)
-
+
Enable Peer eXchange (PeX)
Aktivera Peer eXchange (PeX)
-
+
Enable Local Peer Discovery
Aktivera identifiering av lokala klienter
-
+
Encryption:
Kryptering:
-
+
Share ratio settings
Inställningar för utdelningsförhållande
-
+
Desired ratio:
Önskat förhållande:
-
+
Filter file path:
Sökväg för filterfil:
@@ -533,22 +533,22 @@ Copyright © 2006 by Christophe Dumez<br>
ms
-
+
RSS
RSS
-
+
RSS feeds refresh interval:
Uppdateringsintervall för RSS-kanaler:
-
+
minutes
minuter
-
+
Maximum number of articles per feed:
Maximalt antal inlägg per RSS-kanal:
@@ -558,7 +558,7 @@ Copyright © 2006 by Christophe Dumez<br>
Filsystem
-
+
Remove finished torrents when their ratio reaches:
Ta bort färdiga torrent-filer när deras förhållande når:
@@ -620,52 +620,52 @@ Copyright © 2006 by Christophe Dumez<br>
sekunder
-
+
Spoof Azureus to avoid ban (requires restart)
Identifiera som Azureus för att undvika bannlysning (kräver omstart)
-
+
Web UI
Webbgränssnitt
-
+
Enable Web User Interface
Aktivera webbgränssnitt
-
+
HTTP Server
HTTP-server
-
+
Enable RSS support
-
+
RSS settings
-
+
Enable queueing system
-
+
Maximum active downloads:
-
+
Torrent queueing
-
+
Maximum active torrents:
@@ -674,6 +674,21 @@ Copyright © 2006 by Christophe Dumez<br>
Display top toolbar
+
+
+ Proxy
+
+
+
+
+ Search engine proxy settings
+
+
+
+
+ Bittorrent proxy settings
+
+
DownloadingTorrents
@@ -930,7 +945,7 @@ Copyright © 2006 by Christophe Dumez<br>
qBittorrent %1
-
+
Connection status:
Anslutningsstatus:
@@ -945,18 +960,18 @@ Copyright © 2006 by Christophe Dumez<br>
Inga klienter hittades...
-
+
qBittorrent
qBittorrent
-
+
DL speed: %1 KiB/s
e.g: Download speed: 10 KiB/s
Hämtning: %1 KiB/s
-
+
UP speed: %1 KiB/s
e.g: Upload speed: 10 KiB/s
Sändning: %1 KiB/s
@@ -1013,12 +1028,12 @@ Copyright © 2006 by Christophe Dumez<br>
Ett fel inträffade vid försök att läsa eller skriva %1. Disken är antagligen full, hämtningen har pausats
-
+
Connection Status:
Anslutningsstatus:
-
+
Online
Ansluten
@@ -1056,22 +1071,22 @@ Copyright © 2006 by Christophe Dumez<br>
qBittorrent är bunden till port: %1
-
+
DHT support [ON], port: %1
DHT-stöd [PÅ], port: %1
-
+
DHT support [OFF]
DHT-stöd [AV]
-
+
PeX support [ON]
PeX-stöd [PÅ]
-
+
PeX support [OFF]
PeX-stöd [AV]
@@ -1083,12 +1098,12 @@ Are you sure you want to quit qBittorrent?
Är du säker på att du vill avsluta qBittorrent?
-
+
Downloads
Hämtningar
-
+
Finished
Färdiga
@@ -1103,17 +1118,17 @@ Are you sure you want to quit qBittorrent?
UPnP-stöd [PÅ]
-
+
Encryption support [ON]
Krypteringsstöd [PÅ]
-
+
Encryption support [FORCED]
Krypteringsstöd [TVINGAD]
-
+
Encryption support [OFF]
Krypteringsstöd [AV]
@@ -1189,12 +1204,12 @@ Are you sure you want to quit qBittorrent?
NAT-PMP-stöd [AV]
-
+
Local Peer Discovery [ON]
Identifiering av lokala klienter [PÅ]
-
+
Local Peer Discovery support [OFF]
Stöd för identifiering av lokala klienter [AV]
@@ -1205,18 +1220,18 @@ Are you sure you want to quit qBittorrent?
"%1" togs bort därför att dess förhållande nådde det maximala värdet du ställde in.
-
+
qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)
%1 is qBittorrent version
qBittorrent %1 (Ned: %2 KiB/s, Upp: %3 KiB/s)
-
+
DL: %1 KiB/s
-
+
UP: %1 KiB/s
@@ -1231,7 +1246,7 @@ Are you sure you want to quit qBittorrent?
-
+
No direct connections. This may indicate network configuration problems.
@@ -1241,7 +1256,7 @@ Are you sure you want to quit qBittorrent?
-
+
Options were saved successfully.
Inställningarna har sparats.
@@ -1597,13 +1612,13 @@ Are you sure you want to quit qBittorrent?
RssStream
-
+
%1 ago
10min ago
%1 sedan
-
+
Never
Aldrig
@@ -2578,22 +2593,22 @@ Dock har dessa insticksmoduler blivit inaktiverade.
Inställningarna har sparats.
-
+
Choose scan directory
Välj en avsökningskatalog
-
+
Choose a save directory
Välj en katalog att spara i
-
+
Choose an ip filter file
Välj en IP-filterfil
-
+
Filters
Filter
diff --git a/src/lang/qbittorrent_tr.qm b/src/lang/qbittorrent_tr.qm
index 1ddd65e6f..68ccf86b1 100644
Binary files a/src/lang/qbittorrent_tr.qm and b/src/lang/qbittorrent_tr.qm differ
diff --git a/src/lang/qbittorrent_tr.ts b/src/lang/qbittorrent_tr.ts
index 5ca582021..85563cbd7 100644
--- a/src/lang/qbittorrent_tr.ts
+++ b/src/lang/qbittorrent_tr.ts
@@ -275,7 +275,7 @@ Telif Hakkı © 2006 Christophe Dumez<br>
Port aralığı:
-
+
...
...
@@ -300,14 +300,14 @@ Telif Hakkı © 2006 Christophe Dumez<br>
buraya
-
+
Proxy
- Proxy
+ Proxy
Proxy Settings
- Proxy Ayarları
+ Proxy Ayarları
@@ -320,7 +320,7 @@ Telif Hakkı © 2006 Christophe Dumez<br>
0.0.0.0
-
+
Port:
Port:
@@ -330,7 +330,7 @@ Telif Hakkı © 2006 Christophe Dumez<br>
Proxy sunucusu kimlik denetimi gerektiriyor
-
+
Authentication
Kimlik Denetimi
@@ -340,7 +340,7 @@ Telif Hakkı © 2006 Christophe Dumez<br>
Kullanıcı Adı:
-
+
Password:
Şifre:
@@ -435,12 +435,12 @@ Telif Hakkı © 2006 Christophe Dumez<br>
KB UP max.
-
+
Activate IP Filtering
IP Filtrelemeyi Etkinleştir
-
+
Filter Settings
Filtre Ayarları
@@ -515,7 +515,7 @@ Telif Hakkı © 2006 Christophe Dumez<br>
Pencereyi sistem çubuğuna küçült
-
+
Misc
Çeşitli
@@ -555,7 +555,7 @@ Telif Hakkı © 2006 Christophe Dumez<br>
OSD yi asla gösterme
-
+
KiB/s
KiB/s
@@ -675,52 +675,52 @@ Telif Hakkı © 2006 Christophe Dumez<br>
CDE stili (Common Desktop Environment benzeri)
-
+
HTTP
HTTP
-
+
SOCKS5
SOCKS5
-
+
Affected connections
Etkilenen bağlantılar
-
+
Use proxy for connections to trackers
Trackerlara bağlantı için proxy kullan
-
+
Use proxy for connections to regular peers
Düzenli peerlara bağlantı için proxy kullan
-
+
Use proxy for connections to web seeds
Web seedlerine bağlantı için proxy kullan
-
+
Use proxy for DHT messages
DHT mesajları için proxy kullan
-
+
Enabled
Etkinleştirildi
-
+
Forced
Zorlandı
-
+
Disabled
Etkisizleştirildi
@@ -859,102 +859,102 @@ Telif Hakkı © 2006 Christophe Dumez<br>
NAT-PMP port mapping i etkinleştir
-
+
Global bandwidth limiting
Global bant genişliği sınırlama
-
+
Upload:
Upload:
-
+
Download:
Download:
-
+
Type:
Tip:
-
+
(None)
(Yok)
-
+
Proxy:
Proxy:
-
+
Username:
Kullanıcı adı:
-
+
Bittorrent
Bittorrent
-
+
Connections limit
Bağlantı limiti
-
+
Global maximum number of connections:
Global maksimum bağlantı sayısı:
-
+
Maximum number of connections per torrent:
Torrent başına maksimum bağlantı sayısı:
-
+
Maximum number of upload slots per torrent:
Torrent başına maksimum upload slotu sayısı:
-
+
Additional Bittorrent features
İlave Bittorrent özellikleri
-
+
Enable DHT network (decentralized)
Enable DHT network (decentralized)
-
+
Enable Peer eXchange (PeX)
Peer eXchange (PeX) i etkinleştir
-
+
Enable Local Peer Discovery
Local Peer Discovery i etkinleştir
-
+
Encryption:
Encryption:
-
+
Share ratio settings
Oran ayarlarını paylaş
-
+
Desired ratio:
İstenen oran:
-
+
Filter file path:
Filtre dosyası yolu:
@@ -969,22 +969,22 @@ Telif Hakkı © 2006 Christophe Dumez<br>
ms
-
+
RSS
RSS
-
+
RSS feeds refresh interval:
RSS beslemeleri yenileme süresi:
-
+
minutes
dakika
-
+
Maximum number of articles per feed:
Besleme başına maksimum makale sayısı:
@@ -994,7 +994,7 @@ Telif Hakkı © 2006 Christophe Dumez<br>
Dosya sistemi
-
+
Remove finished torrents when their ratio reaches:
Tamamlanan torrentleri oranları erişince kaldır:
@@ -1050,52 +1050,52 @@ Telif Hakkı © 2006 Christophe Dumez<br>
saniye
-
+
Spoof Azureus to avoid ban (requires restart)
Bandan sakınmak için Azureusu kandır (yeniden başlatma gerektirir)
-
+
Web UI
Web KA
-
+
Enable Web User Interface
Web Kullanıcı Arayüzünü Etkinleştir
-
+
HTTP Server
HTTP Sunucu
-
+
Enable RSS support
-
+
RSS settings
-
+
Enable queueing system
-
+
Maximum active downloads:
-
+
Torrent queueing
-
+
Maximum active torrents:
@@ -1104,6 +1104,16 @@ Telif Hakkı © 2006 Christophe Dumez<br>
Display top toolbar
+
+
+ Search engine proxy settings
+
+
+
+
+ Bittorrent proxy settings
+
+
DownloadingTorrents
@@ -1425,7 +1435,7 @@ Telif Hakkı © 2006 Christophe Dumez<br>
kb/s
-
+
Finished
Tamamlandı
@@ -1552,7 +1562,7 @@ Telif Hakkı © 2006 Christophe Dumez<br>
qBittorrent
-
+
qBittorrent
qBittorrent
@@ -1912,7 +1922,7 @@ Lütfen önce diğerini kapatın.
qBittorrent %1
-
+
Connection status:
Bağlantı durumu:
@@ -1987,13 +1997,13 @@ Lütfen önce diğerini kapatın.
qBittorrent %1 başladı.
-
+
DL speed: %1 KiB/s
e.g: Download speed: 10 KiB/s
DL hızı: %1 KiB/s
-
+
UP speed: %1 KiB/s
e.g: Upload speed: 10 KiB/s
UP hızı: %1 KiB/s
@@ -2110,12 +2120,12 @@ Lütfen önce diğerini kapatın.
%1 okunmaya veya yazılmaya çalışılırken bir hata oluştu. Disk muhtemelen dolu, download duraklatıldı
-
+
Connection Status:
Bağlantı Durumu:
-
+
Online
Çevrimiçi
@@ -2174,7 +2184,7 @@ Lütfen önce diğerini kapatın.
RSS
-
+
Downloads
Downloadlar
@@ -2197,22 +2207,22 @@ qBittorrent ten çıkmak istediğinize emin misiniz?
qBittorrent bağlantı noktasına bağlandı: %1
-
+
DHT support [ON], port: %1
DHT desteği [AÇIK], port: %1
-
+
DHT support [OFF]
DHT desteği [KAPALI]
-
+
PeX support [ON]
PeX desteği [AÇIK]
-
+
PeX support [OFF]
PeX desteği [KAPALI]
@@ -2222,17 +2232,17 @@ qBittorrent ten çıkmak istediğinize emin misiniz?
UPnP desteği [AÇIK]
-
+
Encryption support [ON]
Encryption desteği [AÇIK]
-
+
Encryption support [FORCED]
Encryption desteği [ZORLANDI]
-
+
Encryption support [OFF]
Encryption desteği [KAPALI]
@@ -2308,12 +2318,12 @@ qBittorrent ten çıkmak istediğinize emin misiniz?
NAT-PMP desteği [KAPALI]
-
+
Local Peer Discovery [ON]
Local Peer Discovery [AÇIK]
-
+
Local Peer Discovery support [OFF]
Local Peer Discovery desteği [KAPALI]
@@ -2324,18 +2334,18 @@ qBittorrent ten çıkmak istediğinize emin misiniz?
'%1' kaldırıldı çünkü oranı ayarladığınız maksimum değere ulaştı.
-
+
qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)
%1 is qBittorrent version
qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)
-
+
DL: %1 KiB/s
-
+
UP: %1 KiB/s
@@ -2350,7 +2360,7 @@ qBittorrent ten çıkmak istediğinize emin misiniz?
-
+
No direct connections. This may indicate network configuration problems.
@@ -2360,7 +2370,7 @@ qBittorrent ten çıkmak istediğinize emin misiniz?
-
+
Options were saved successfully.
Ayarlar başarıyla kaydedildi.
@@ -2889,13 +2899,13 @@ qBittorrent ten çıkmak istediğinize emin misiniz?
RssStream
-
+
%1 ago
10min ago
%1 önce
-
+
Never
Asla
@@ -4319,7 +4329,7 @@ Bununla birlikte, o eklentiler devre dışı.
Ayarlar başarıyla kaydedildi.
-
+
Choose scan directory
Taranacak klasörü seç
@@ -4329,7 +4339,7 @@ Bununla birlikte, o eklentiler devre dışı.
Bir ipfilter.dat dosyası seç
-
+
Choose a save directory
Bir kayıt klasörü seçin
@@ -4345,12 +4355,12 @@ Bununla birlikte, o eklentiler devre dışı.
%1 okuma modunda açılamadı.
-
+
Choose an ip filter file
Bir ipfilter.dat dosyası seç
-
+
Filters
Filtreler
diff --git a/src/lang/qbittorrent_uk.qm b/src/lang/qbittorrent_uk.qm
index 02a3a0408..ce0bd2df3 100644
Binary files a/src/lang/qbittorrent_uk.qm and b/src/lang/qbittorrent_uk.qm differ
diff --git a/src/lang/qbittorrent_uk.ts b/src/lang/qbittorrent_uk.ts
index c8b953c00..002411923 100644
--- a/src/lang/qbittorrent_uk.ts
+++ b/src/lang/qbittorrent_uk.ts
@@ -249,7 +249,7 @@ Copyright © 2006 by Christophe Dumez<br>
Діапазон портів:
-
+
...
...
@@ -269,14 +269,14 @@ Copyright © 2006 by Christophe Dumez<br>
з'єднання
-
+
Proxy
- Проксі
+ Проксі
Proxy Settings
- Налаштування проксі
+ Налаштування проксі
@@ -289,7 +289,7 @@ Copyright © 2006 by Christophe Dumez<br>
0.0.0.0
-
+
Port:
Порт:
@@ -299,7 +299,7 @@ Copyright © 2006 by Christophe Dumez<br>
Проксі-сервер вимагає аутентифікації
-
+
Authentication
Аутентифікація
@@ -309,7 +309,7 @@ Copyright © 2006 by Christophe Dumez<br>
Ім'я користувача:
-
+
Password:
Пароль:
@@ -374,12 +374,12 @@ Copyright © 2006 by Christophe Dumez<br>
КБ UP макс.
-
+
Activate IP Filtering
Активувати фільтрацію по IP
-
+
Filter Settings
Налаштування фільтру
@@ -444,7 +444,7 @@ Copyright © 2006 by Christophe Dumez<br>
Мінімізувати в системний трей
-
+
Misc
Різне
@@ -484,7 +484,7 @@ Copyright © 2006 by Christophe Dumez<br>
Ніколи не показувати OSD
-
+
KiB/s
КіБ/с
@@ -679,37 +679,37 @@ Copyright © 2006 by Christophe Dumez<br>
Тип проксі:
-
+
HTTP
HTTP
-
+
SOCKS5
SOCKS5
-
+
Affected connections
З'єднання, на які це вплине
-
+
Use proxy for connections to trackers
Використовувати проксі при з'єднанні з трекерами
-
+
Use proxy for connections to regular peers
Використовувати проксі при з'єднанні із звичайними пірами
-
+
Use proxy for connections to web seeds
Використовувати проксі при з'єднанні з web-роздачами
-
+
Use proxy for DHT messages
Використовувати проксі для DHT повідомлень
@@ -724,17 +724,17 @@ Copyright © 2006 by Christophe Dumez<br>
Стан шифрування:
-
+
Enabled
Увімкнено
-
+
Forced
Примусовий
-
+
Disabled
Вимкнено
@@ -873,102 +873,102 @@ Copyright © 2006 by Christophe Dumez<br>
Увімкнути відображення портів NAT-PMP
-
+
Global bandwidth limiting
Глобальний ліміт пропускної здатності
-
+
Upload:
Віддача:
-
+
Download:
Прийом:
-
+
Type:
Тип:
-
+
(None)
(Ніякого)
-
+
Proxy:
Проксі:
-
+
Username:
Ім'я користувача:
-
+
Bittorrent
Bittorrent
-
+
Connections limit
Ліміт кількості з'єднань
-
+
Global maximum number of connections:
Глобальне максимальне число з'єднань:
-
+
Maximum number of connections per torrent:
Максимальне число з'єднань для одного торрента:
-
+
Maximum number of upload slots per torrent:
Максимальне число слотів віддачі для одного торрента:
-
+
Additional Bittorrent features
Додаткові можливості Bittorrent'а
-
+
Enable DHT network (decentralized)
Увімкнути мережу DHT (децентралізовану)
-
+
Enable Peer eXchange (PeX)
Увімкнути Peer eXchange (PeX)
-
+
Enable Local Peer Discovery
Увімкнути локальний пошук пірів
-
+
Encryption:
Шифрування:
-
+
Share ratio settings
Налаштування коефіціентів розподілення
-
+
Desired ratio:
Бажаний коефіціент:
-
+
Filter file path:
Фільтр шляхів до файлу:
@@ -983,22 +983,22 @@ Copyright © 2006 by Christophe Dumez<br>
мс
-
+
RSS
RSS
-
+
RSS feeds refresh interval:
Інтервал оновлення RSS-фідів:
-
+
minutes
хвилин
-
+
Maximum number of articles per feed:
Максимальне число записів у одному фіді:
@@ -1008,7 +1008,7 @@ Copyright © 2006 by Christophe Dumez<br>
Файлова система
-
+
Remove finished torrents when their ratio reaches:
Видаляти закінчені торренти, коли їхній коефіціент розподілу досягає:
@@ -1064,52 +1064,52 @@ Copyright © 2006 by Christophe Dumez<br>
-
+
Spoof Azureus to avoid ban (requires restart)
-
+
Web UI
-
+
Enable Web User Interface
-
+
HTTP Server
-
+
Enable RSS support
-
+
RSS settings
-
+
Enable queueing system
-
+
Maximum active downloads:
-
+
Torrent queueing
-
+
Maximum active torrents:
@@ -1118,6 +1118,16 @@ Copyright © 2006 by Christophe Dumez<br>
Display top toolbar
+
+
+ Search engine proxy settings
+
+
+
+
+ Bittorrent proxy settings
+
+
DownloadingTorrents
@@ -1413,7 +1423,7 @@ Copyright © 2006 by Christophe Dumez<br>
почато
-
+
Finished
Закінчено
@@ -1540,7 +1550,7 @@ Copyright © 2006 by Christophe Dumez<br>
qBittorrent
-
+
qBittorrent
qBittorrent
@@ -1895,7 +1905,7 @@ Please close the other one first.
qBittorrent %1
-
+
Connection status:
Статус з'єднання:
@@ -1970,13 +1980,13 @@ Please close the other one first.
qBittorrent %1 запущено.
-
+
DL speed: %1 KiB/s
e.g: Download speed: 10 KiB/s
Швидкість прийому: %1 КіБ/с
-
+
UP speed: %1 KiB/s
e.g: Upload speed: 10 KiB/s
Швидкість віддачі: %1 КіБ/с
@@ -2099,12 +2109,12 @@ Please close the other one first.
Сталася помилка (заповнено диск?), '%1' призупинено.
-
+
Connection Status:
Статус з'єднання:
-
+
Online
Онлайн
@@ -2169,22 +2179,22 @@ Please close the other one first.
qBittorrent прив'язаний до порту: %1
-
+
DHT support [ON], port: %1
Підтримка DHT (Увімкнена), порт: %1
-
+
DHT support [OFF]
Підтримка DHT (Вимкнена)
-
+
PeX support [ON]
Підтримка PeX (Увімкнена)
-
+
PeX support [OFF]
Підтримка PeX (Вимкнена)
@@ -2196,7 +2206,7 @@ Are you sure you want to quit qBittorrent?
Ви впевнені, що хочете вийти з qBittorrent?
-
+
Downloads
Завантаження
@@ -2216,17 +2226,17 @@ Are you sure you want to quit qBittorrent?
Будьте обережні, ділення захищеним матеріалом без дозволу є протизаконним.
-
+
Encryption support [ON]
Підтримка шифрування (Увімкнена)
-
+
Encryption support [FORCED]
Підтримка шифрування (Примусова)
-
+
Encryption support [OFF]
Підтримка шифрування (Вимкнена)
@@ -2329,12 +2339,12 @@ Are you sure you want to quit qBittorrent?
Підтримка NAT-PMP [Вимкнено]
-
+
Local Peer Discovery [ON]
Пошук Локальних Пірів [Увімкнено]
-
+
Local Peer Discovery support [OFF]
Пошук Локальних Пірів [Вимкнено]
@@ -2345,18 +2355,18 @@ Are you sure you want to quit qBittorrent?
'%1' було видалено, тому що його коефіціент досяг максимального значення встановленого вами.
-
+
qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)
%1 is qBittorrent version
qBittorrent %1 (Прийом: %2КіБ/с, Віддача: %3КіБ/с)
-
+
DL: %1 KiB/s
-
+
UP: %1 KiB/s
@@ -2371,7 +2381,7 @@ Are you sure you want to quit qBittorrent?
-
+
No direct connections. This may indicate network configuration problems.
@@ -2381,7 +2391,7 @@ Are you sure you want to quit qBittorrent?
-
+
Options were saved successfully.
Опції були успішно збережені.
@@ -2915,13 +2925,13 @@ Are you sure you want to quit qBittorrent?
RssStream
-
+
%1 ago
10min ago
%1 тому
-
+
Never
Ніколи
@@ -4372,7 +4382,7 @@ However, those plugins were disabled.
Опції були успішно збережені.
-
+
Choose scan directory
Виберіть ддиректорію для сканування
@@ -4382,7 +4392,7 @@ However, those plugins were disabled.
Виберіть файл ipfilter.dat
-
+
Choose a save directory
Виберіть директорію для збереження
@@ -4398,12 +4408,12 @@ However, those plugins were disabled.
Не вдалося відкрити %1 у режимі читання.
-
+
Choose an ip filter file
-
+
Filters
diff --git a/src/lang/qbittorrent_zh.qm b/src/lang/qbittorrent_zh.qm
index 6de05dd04..674289074 100644
Binary files a/src/lang/qbittorrent_zh.qm and b/src/lang/qbittorrent_zh.qm differ
diff --git a/src/lang/qbittorrent_zh.ts b/src/lang/qbittorrent_zh.ts
index deb5eec01..b200b662d 100644
--- a/src/lang/qbittorrent_zh.ts
+++ b/src/lang/qbittorrent_zh.ts
@@ -241,7 +241,7 @@ Copyright © 2006 by Christophe Dumez<br>
端口列:
-
+
...
...
@@ -261,14 +261,14 @@ Copyright © 2006 by Christophe Dumez<br>
到
-
+
Proxy
- 代理服务器
+ 代理服务器
Proxy Settings
- 代理服务器设置
+ 代理服务器设置
@@ -276,7 +276,7 @@ Copyright © 2006 by Christophe Dumez<br>
服务器IP:
-
+
Port:
端口:
@@ -286,7 +286,7 @@ Copyright © 2006 by Christophe Dumez<br>
此代理服务器需要身份验证
-
+
Authentication
验证
@@ -296,7 +296,7 @@ Copyright © 2006 by Christophe Dumez<br>
用户名:
-
+
Password:
密码:
@@ -363,12 +363,12 @@ inside)
KB 上传最大值.
-
+
Activate IP Filtering
激活IP过滤器
-
+
Filter Settings
过滤器设置
@@ -438,7 +438,7 @@ inside)
最小化到系统状态栏
-
+
Misc
其他
@@ -479,7 +479,7 @@ iconified
从不显示OSD
-
+
KiB/s
KiB/s
@@ -692,37 +692,37 @@ XP)
代理服务器类型:
-
+
HTTP
HTTP
-
+
SOCKS5
SOCKS5
-
+
Affected connections
使用代理服务器的连接
-
+
Use proxy for connections to trackers
使用代理服务器连接到trackers
-
+
Use proxy for connections to regular peers
使用代理服务器连接到其他下载客户
-
+
Use proxy for connections to web seeds
使用代理服务器连接到HTTP种子
-
+
Use proxy for DHT messages
使用DHT消息的代理服务器
@@ -737,17 +737,17 @@ XP)
加密状态:
-
+
Enabled
启用
-
+
Forced
强制
-
+
Disabled
禁用
@@ -891,102 +891,102 @@ folder:
启用NAT-PMP端口映射
-
+
Global bandwidth limiting
总宽带限制
-
+
Upload:
上传:
-
+
Download:
下载:
-
+
Type:
类型:
-
+
(None)
(无)
-
+
Proxy:
代理服务器:
-
+
Username:
用户名:
-
+
Bittorrent
Bittorrent
-
+
Connections limit
连接限度
-
+
Global maximum number of connections:
总最大连接数:
-
+
Maximum number of connections per torrent:
每torrent最大连接数:
-
+
Maximum number of upload slots per torrent:
每torrent上传位置最大值:
-
+
Additional Bittorrent features
附加Bittorrent特征
-
+
Enable DHT network (decentralized)
启用DHT网络(分散)
-
+
Enable Peer eXchange (PeX)
启用资源(PeX)
-
+
Enable Local Peer Discovery
启用本地资源搜索
-
+
Encryption:
加密:
-
+
Share ratio settings
共享率设置
-
+
Desired ratio:
期望比率:
-
+
Filter file path:
过滤文件路径:
@@ -1001,22 +1001,22 @@ folder:
ms
-
+
RSS
RSS
-
+
RSS feeds refresh interval:
RSS消息种子刷新间隔:
-
+
minutes
分钟
-
+
Maximum number of articles per feed:
每个订阅源文章数目最大值:
@@ -1026,7 +1026,7 @@ folder:
文件系统
-
+
Remove finished torrents when their ratio reaches:
当比率达到时移除完成的torrent:
@@ -1115,52 +1115,52 @@ folder:
秒
-
+
Spoof Azureus to avoid ban (requires restart)
假借Azureus名义避免被阻止(需重启)
-
+
Web UI
网络操作界面
-
+
Enable Web User Interface
启用网络使用者界面
-
+
HTTP Server
HTTP 服务器
-
+
Enable RSS support
-
+
RSS settings
-
+
Enable queueing system
-
+
Maximum active downloads:
-
+
Torrent queueing
-
+
Maximum active torrents:
@@ -1169,6 +1169,16 @@ folder:
Display top toolbar
+
+
+ Search engine proxy settings
+
+
+
+
+ Bittorrent proxy settings
+
+
DownloadingTorrents
@@ -1540,7 +1550,7 @@ download list?
开始
-
+
Finished
完成
@@ -1990,7 +2000,7 @@ download list and in hard drive?
qBittorrent %1
-
+
Connection status:
连接状态:
@@ -2065,18 +2075,18 @@ download list and in hard drive?
qBittorrent %1开始.
-
+
qBittorrent
qBittorrent
-
+
DL speed: %1 KiB/s
e.g: Download speed: 10 KiB/s
下载速度: %1 KiB/s
-
+
UP speed: %1 KiB/s
e.g: Upload speed: 10 KiB/s
上传速度: %1 KiB/s
@@ -2201,12 +2211,12 @@ The disk is probably full, download has been paused
读或写%1过程中出现错误.磁盘已满,下载被暂停
-
+
Connection Status:
连接状态:
-
+
Online
联机
@@ -2274,22 +2284,22 @@ paused.
qBittorrent 绑定端口:%1
-
+
DHT support [ON], port: %1
DHT 支持 [开], port: %1
-
+
DHT support [OFF]
DHT 支持[关]
-
+
PeX support [ON]
PeX 支持[ON]
-
+
PeX support [OFF]
PeX 支持[关]
@@ -2301,7 +2311,7 @@ Are you sure you want to quit qBittorrent?
您确定要离开qBittorrent吗?
-
+
Downloads
下载
@@ -2323,17 +2333,17 @@ is against the law.
注意,在未经允许情况下共享有版权的材料是违法的.
-
+
Encryption support [ON]
加密支持[开]
-
+
Encryption support [FORCED]
加密支持[强制]
-
+
Encryption support [OFF]
加密支持[关]
@@ -2444,12 +2454,12 @@ finished list and from hard drive?
NAT-PMP 支持[关]
-
+
Local Peer Discovery [ON]
本地资源搜索[开]
-
+
Local Peer Discovery support [OFF]
本地资源搜索支持[关]
@@ -2461,7 +2471,7 @@ maximum value you set.
'%1'被移除因为它的比率达到您设置的最大值.
-
+
qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)
%1 is qBittorrent version
qBittorrent %1 (下载: %2KiB/s, 上传:
@@ -2506,12 +2516,12 @@ maximum value you set.
您确定要删除完成列表中选中的项目吗?
-
+
DL: %1 KiB/s
-
+
UP: %1 KiB/s
@@ -2526,7 +2536,7 @@ maximum value you set.
-
+
No direct connections. This may indicate network configuration problems.
@@ -2536,7 +2546,7 @@ maximum value you set.
-
+
Options were saved successfully.
选项保存成功.
@@ -3079,13 +3089,13 @@ list?
RssStream
-
+
%1 ago
10min ago
%1前
-
+
Never
从不
@@ -4578,7 +4588,7 @@ However, those plugins were disabled.
选项保存成功.
-
+
Choose scan directory
选择监视目录
@@ -4588,7 +4598,7 @@ However, those plugins were disabled.
选择ipfilter.dat文件
-
+
Choose a save directory
保存到
@@ -4604,12 +4614,12 @@ However, those plugins were disabled.
无法在读状态下打开%1.
-
+
Choose an ip filter file
选择ip过滤文件
-
+
Filters
过滤器
diff --git a/src/lang/qbittorrent_zh_TW.qm b/src/lang/qbittorrent_zh_TW.qm
index 71c804975..d94f70ff2 100644
Binary files a/src/lang/qbittorrent_zh_TW.qm and b/src/lang/qbittorrent_zh_TW.qm differ
diff --git a/src/lang/qbittorrent_zh_TW.ts b/src/lang/qbittorrent_zh_TW.ts
index 33732f65d..202b505d4 100644
--- a/src/lang/qbittorrent_zh_TW.ts
+++ b/src/lang/qbittorrent_zh_TW.ts
@@ -172,37 +172,37 @@ Copyright © 2006 by Christophe Dumez<br>
埠範圍:
-
+
...
...
Proxy Settings
- 代理伺服器設定
+ 代理伺服器設定
-
+
Port:
埠:
-
+
Authentication
驗證
-
+
Password:
密碼:
-
+
Activate IP Filtering
啟用 IP 過濾
-
+
Filter Settings
過濾設定
@@ -212,7 +212,7 @@ Copyright © 2006 by Christophe Dumez<br>
語言:
-
+
KiB/s
KiB/s
@@ -237,52 +237,52 @@ Copyright © 2006 by Christophe Dumez<br>
CDE 樣式 (像 Common Desktop Environment)
-
+
HTTP
HTTP
-
+
SOCKS5
SOCKS5
-
+
Affected connections
使用代理伺服器的連線
-
+
Use proxy for connections to trackers
使用代理伺服器連線到 tracker
-
+
Use proxy for connections to regular peers
使用代理伺服器連線到一般的下載者
-
+
Use proxy for connections to web seeds
使用代理伺服器連線到網頁種子
-
+
Use proxy for DHT messages
使用代理伺服器來處理 DHT 訊息
-
+
Enabled
已啟用
-
+
Forced
強迫
-
+
Disabled
已停用
@@ -416,102 +416,102 @@ Copyright © 2006 by Christophe Dumez<br>
啟用 NAT-PMP 埠映射
-
+
Global bandwidth limiting
全域頻寬限制
-
+
Upload:
上傳:
-
+
Download:
下載:
-
+
Type:
類型:
-
+
(None)
(無)
-
+
Proxy:
代理伺服器:
-
+
Username:
使用者名稱:
-
+
Bittorrent
Bittorrent
-
+
Connections limit
連線限制
-
+
Global maximum number of connections:
全域最大連線數:
-
+
Maximum number of connections per torrent:
每個 torrent 的最大連線數:
-
+
Maximum number of upload slots per torrent:
每個 torrent 上傳位置的最大數:
-
+
Additional Bittorrent features
其他的 Bittorrent 特性
-
+
Enable DHT network (decentralized)
啟用 DHT 網路 (分散式)
-
+
Enable Peer eXchange (PeX)
啟用下載者交換 (PeX)
-
+
Enable Local Peer Discovery
啟用本地下載者搜尋
-
+
Encryption:
加密:
-
+
Share ratio settings
分享率設定
-
+
Desired ratio:
希望的分享率:
-
+
Filter file path:
過濾檔案路徑:
@@ -526,27 +526,27 @@ Copyright © 2006 by Christophe Dumez<br>
ms
-
+
Misc
雜項
-
+
RSS
RSS
-
+
RSS feeds refresh interval:
RSS feed 更新間隔:
-
+
minutes
分鐘
-
+
Maximum number of articles per feed:
每個 feed 的最大文章數:
@@ -556,7 +556,7 @@ Copyright © 2006 by Christophe Dumez<br>
檔案系統
-
+
Remove finished torrents when their ratio reaches:
當分享率到達時移除 torrent:
@@ -612,52 +612,52 @@ Copyright © 2006 by Christophe Dumez<br>
秒
-
+
Spoof Azureus to avoid ban (requires restart)
假裝為 Azureus 以避免被踢出 (需要重新啟動)
-
+
Web UI
Web UI
-
+
Enable Web User Interface
啟用 Web UI
-
+
HTTP Server
HTTP 伺服器
-
+
Enable RSS support
啟用 RSS 支援
-
+
RSS settings
RSS 設定
-
+
Enable queueing system
啟用排程系統
-
+
Maximum active downloads:
最大活躍的下載數:
-
+
Torrent queueing
torrent 排程
-
+
Maximum active torrents:
最大活躍的 torrent:
@@ -666,6 +666,21 @@ Copyright © 2006 by Christophe Dumez<br>
Display top toolbar
顯示最上方的工具列
+
+
+ Proxy
+
+
+
+
+ Search engine proxy settings
+
+
+
+
+ Bittorrent proxy settings
+
+
DownloadingTorrents
@@ -922,23 +937,23 @@ Copyright © 2006 by Christophe Dumez<br>
qBittorrent %1
-
+
Connection status:
連線狀態:
-
+
qBittorrent
qBittorrent
-
+
DL speed: %1 KiB/s
e.g: Download speed: 10 KiB/s
下載速度: %1 KiB/s
-
+
UP speed: %1 KiB/s
e.g: Upload speed: 10 KiB/s
上傳速度: %1 KiB/s
@@ -995,12 +1010,12 @@ Copyright © 2006 by Christophe Dumez<br>
讀取或寫入 %1 時發生錯誤。硬碟可能已經滿了, 將暫停下載
-
+
Connection Status:
連線狀態:
-
+
Online
線上
@@ -1027,22 +1042,22 @@ Copyright © 2006 by Christophe Dumez<br>
qBittorrent 綁定埠: %1
-
+
DHT support [ON], port: %1
DHT 支援 [開啟], 埠: %1
-
+
DHT support [OFF]
DHT 支援 [關閉]
-
+
PeX support [ON]
PeX 支援 [開啟]
-
+
PeX support [OFF]
PeX 支援 [關閉]
@@ -1054,12 +1069,12 @@ Are you sure you want to quit qBittorrent?
你確定要離開 qBittorrent?
-
+
Downloads
下載
-
+
Finished
完成
@@ -1074,17 +1089,17 @@ Are you sure you want to quit qBittorrent?
UPnP 支援 [開啟]
-
+
Encryption support [ON]
加密支援 [開啟]
-
+
Encryption support [FORCED]
加密支援 [強迫]
-
+
Encryption support [OFF]
加密支援 [關閉]
@@ -1160,12 +1175,12 @@ Are you sure you want to quit qBittorrent?
NAT-PMP 支援 [關閉]
-
+
Local Peer Discovery [ON]
本地下載者搜尋 [開啟]
-
+
Local Peer Discovery support [OFF]
本地下載者搜尋支援 [關閉]
@@ -1176,18 +1191,18 @@ Are you sure you want to quit qBittorrent?
'%1' 已經移除, 因為其分享率已經達到你設定的最大值了。
-
+
qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s)
%1 is qBittorrent version
qBittorrent %1 (下載速度: %2KiB/s, 上傳速度: %3KiB/s)
-
+
DL: %1 KiB/s
下載: %1 KiB/s
-
+
UP: %1 KiB/s
上傳: %1 KiB/s
@@ -1202,7 +1217,7 @@ Are you sure you want to quit qBittorrent?
DHT: %1 個節點
-
+
No direct connections. This may indicate network configuration problems.
沒有直接的連線。這表示你的網路設置可能有問題。
@@ -1212,7 +1227,7 @@ Are you sure you want to quit qBittorrent?
-
+
Options were saved successfully.
選項儲存成功。
@@ -1548,13 +1563,13 @@ Are you sure you want to quit qBittorrent?
RssStream
-
+
%1 ago
10min ago
%1 之前
-
+
Never
從不
@@ -2524,22 +2539,22 @@ However, those plugins were disabled.
選項儲存成功。
-
+
Choose scan directory
選擇掃描的目錄
-
+
Choose a save directory
選擇儲存的目錄
-
+
Choose an ip filter file
選擇一個 IP 過濾檔案
-
+
Filters
過濾器
diff --git a/src/options.ui b/src/options.ui
index ffd889bda..d6bc02f30 100644
--- a/src/options.ui
+++ b/src/options.ui
@@ -778,408 +778,157 @@
- -
-
-
- Global bandwidth limiting
-
+
+
+
+
+ -
+
+
+ Global bandwidth limiting
+
+
+
-
+
+
-
+
+
-
+
+
+
+ 0
+ 45
+
+
+
+ Upload:
+
+
+ true
+
+
+
+ -
+
+
+
+ 0
+ 37
+
+
+
+ Download:
+
+
+
+
+
+ -
-
-
-
-
-
-
-
-
- 0
- 45
-
-
-
- Upload:
-
-
- true
-
-
-
- -
-
-
-
- 0
- 37
-
-
-
- Download:
-
-
-
-
+
+
+ true
+
+
+
+ 0
+ 27
+
+
+
+
+
+
+ 1
+
+
+ 1000000
+
+
+ 50
+
+
-
-
-
-
-
-
-
-
-
- true
-
-
-
- 0
- 27
-
-
-
-
-
-
- 1
-
-
- 1000000
-
-
- 50
-
-
-
- -
-
-
- KiB/s
-
-
-
-
-
- -
-
-
-
-
-
- false
-
-
-
- 0
- 27
-
-
-
-
-
-
- 1
-
-
- 1000000
-
-
- 100
-
-
-
- -
-
-
- KiB/s
-
-
-
-
-
-
+
+
+ KiB/s
+
+
-
-
-
-
-
- -
-
-
- true
-
-
- Proxy Settings
-
-
-
-
-
-
-
-
-
- Type:
-
-
-
- -
-
-
-
-
- (None)
-
-
- -
-
- HTTP
-
-
- -
-
- SOCKS5
-
-
-
-
- -
-
-
- false
-
-
- Proxy:
-
-
-
- -
-
-
- false
-
-
-
-
-
- 75
-
-
- QLineEdit::Normal
-
-
-
- -
-
-
- false
-
-
- Port:
-
-
-
- -
-
-
- false
-
-
- 65525
-
-
- 8080
-
-
-
- -
-
-
- Qt::Horizontal
-
-
-
- 21
- 29
-
-
-
-
-
-
- -
-
-
-
-
-
- false
-
-
- Authentication
-
-
-
-
-
-
-
-
-
-
- false
-
-
- Username:
-
-
-
- -
-
-
- false
-
-
- Password:
-
-
-
-
-
- -
-
-
-
-
-
- false
-
-
-
-
-
- 1000
-
-
- QLineEdit::Normal
-
-
-
- -
-
-
- false
-
-
-
-
-
- 1000
-
-
- QLineEdit::Password
-
-
-
-
-
- -
-
-
- Qt::Horizontal
+
+
+ false
-
+
- 40
- 20
+ 0
+ 27
-
+
+
+
+
+ 1
+
+
+ 1000000
+
+
+ 100
+
+
+
+ -
+
+
+ KiB/s
+
+
-
-
-
- false
+
+
+ Qt::Horizontal
-
+
- 0
- 110
+ 40
+ 20
-
- Affected connections
-
-
-
-
-
-
-
- 0
- 0
-
-
-
- Use proxy for connections to trackers
-
-
- true
-
-
-
- -
-
-
-
- 0
- 0
-
-
-
- Use proxy for connections to regular peers
-
-
- true
-
-
-
- -
-
-
-
- 0
- 0
-
-
-
- Use proxy for DHT messages
-
-
- true
-
-
-
- -
-
-
-
- 0
- 0
-
-
-
- Use proxy for connections to web seeds
-
-
- true
-
-
-
-
-
+
-
-
-
+
+
+
+
+ -
+
+
+ Qt::Vertical
+
+
+
+ 623
+ 121
+
+
+
@@ -1556,6 +1305,480 @@
+
+
+ Proxy
+
+
+ :/Icons/proxy.png
+
+
+ -
+
+
+ Search engine proxy settings
+
+
+
-
+
+
-
+
+
+ Type:
+
+
+
+ -
+
+
-
+
+ (None)
+
+
+ -
+
+ HTTP
+
+
+
+
+ -
+
+
+ false
+
+
+ Proxy:
+
+
+
+ -
+
+
+ false
+
+
+
+
+
+ 75
+
+
+ QLineEdit::Normal
+
+
+
+ -
+
+
+ false
+
+
+ Port:
+
+
+
+ -
+
+
+ false
+
+
+ 65525
+
+
+ 8080
+
+
+
+ -
+
+
+ Qt::Horizontal
+
+
+
+ 21
+ 29
+
+
+
+
+
+
+ -
+
+
-
+
+
+ false
+
+
+ Authentication
+
+
+
+ -
+
+
-
+
+
-
+
+
+ false
+
+
+ Username:
+
+
+
+ -
+
+
+ false
+
+
+ Password:
+
+
+
+
+
+ -
+
+
-
+
+
+ false
+
+
+
+
+
+ 1000
+
+
+ QLineEdit::Normal
+
+
+
+ -
+
+
+ false
+
+
+
+
+
+ 1000
+
+
+ QLineEdit::Password
+
+
+
+
+
+ -
+
+
+ Qt::Horizontal
+
+
+
+ 40
+ 20
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+ true
+
+
+ Bittorrent proxy settings
+
+
+
-
+
+
-
+
+
+ Type:
+
+
+
+ -
+
+
-
+
+ (None)
+
+
+ -
+
+ HTTP
+
+
+ -
+
+ SOCKS5
+
+
+
+
+ -
+
+
+ false
+
+
+ Proxy:
+
+
+
+ -
+
+
+ false
+
+
+
+
+
+ 75
+
+
+ QLineEdit::Normal
+
+
+
+ -
+
+
+ false
+
+
+ Port:
+
+
+
+ -
+
+
+ false
+
+
+ 65525
+
+
+ 8080
+
+
+
+ -
+
+
+ Qt::Horizontal
+
+
+
+ 21
+ 29
+
+
+
+
+
+
+ -
+
+
-
+
+
+ false
+
+
+ Authentication
+
+
+
+ -
+
+
-
+
+
-
+
+
+ false
+
+
+ Username:
+
+
+
+ -
+
+
+ false
+
+
+ Password:
+
+
+
+
+
+ -
+
+
-
+
+
+ false
+
+
+
+
+
+ 1000
+
+
+ QLineEdit::Normal
+
+
+
+ -
+
+
+ false
+
+
+
+
+
+ 1000
+
+
+ QLineEdit::Password
+
+
+
+
+
+ -
+
+
+ Qt::Horizontal
+
+
+
+ 40
+ 20
+
+
+
+
+
+
+
+
+ -
+
+
+ false
+
+
+
+ 0
+ 110
+
+
+
+ Affected connections
+
+
+
-
+
+
+
+ 0
+ 0
+
+
+
+ Use proxy for connections to trackers
+
+
+ true
+
+
+
+ -
+
+
+
+ 0
+ 0
+
+
+
+ Use proxy for connections to regular peers
+
+
+ true
+
+
+
+ -
+
+
+
+ 0
+ 0
+
+
+
+ Use proxy for DHT messages
+
+
+ true
+
+
+
+ -
+
+
+
+ 0
+ 0
+
+
+
+ Use proxy for connections to web seeds
+
+
+ true
+
+
+
+
+
+
+
+
+
+
+
Misc
@@ -2103,20 +2326,6 @@
spinPortMax
checkUPnP
checkNATPMP
- checkUploadLimit
- checkDownloadLimit
- spinUploadLimit
- spinDownloadLimit
- comboProxyType
- textProxyIP
- spinProxyPort
- checkProxyAuth
- textProxyUsername
- textProxyPassword
- checkProxyTrackers
- checkProxyPeers
- checkProxyDHT
- checkProxyWebseeds
checkMaxConnecs
spinMaxConnec
checkMaxConnecsPerTorrent
diff --git a/src/options_imp.cpp b/src/options_imp.cpp
index e63954b3b..9d6223dc9 100644
--- a/src/options_imp.cpp
+++ b/src/options_imp.cpp
@@ -136,14 +136,17 @@ options_imp::options_imp(QWidget *parent):QDialog(parent){
// Connection tab
connect(checkUploadLimit, SIGNAL(stateChanged(int)), this, SLOT(enableUploadLimit(int)));
connect(checkDownloadLimit, SIGNAL(stateChanged(int)), this, SLOT(enableDownloadLimit(int)));
- connect(comboProxyType, SIGNAL(currentIndexChanged(int)),this, SLOT(enableProxy(int)));
- connect(checkProxyAuth, SIGNAL(stateChanged(int)), this, SLOT(enableProxyAuth(int)));
// Bittorrent tab
connect(checkMaxConnecs, SIGNAL(stateChanged(int)), this, SLOT(enableMaxConnecsLimit(int)));
connect(checkMaxConnecsPerTorrent, SIGNAL(stateChanged(int)), this, SLOT(enableMaxConnecsLimitPerTorrent(int)));
connect(checkMaxUploadsPerTorrent, SIGNAL(stateChanged(int)), this, SLOT(enableMaxUploadsLimitPerTorrent(int)));
connect(checkRatioLimit, SIGNAL(stateChanged(int)), this, SLOT(enableShareRatio(int)));
connect(checkRatioRemove, SIGNAL(stateChanged(int)), this, SLOT(enableDeleteRatio(int)));
+ // Proxy tab
+ connect(comboProxyType_http, SIGNAL(currentIndexChanged(int)),this, SLOT(enableProxyHTTP(int)));
+ connect(checkProxyAuth_http, SIGNAL(stateChanged(int)), this, SLOT(enableProxyAuthHTTP(int)));
+ connect(comboProxyType, SIGNAL(currentIndexChanged(int)),this, SLOT(enableProxy(int)));
+ connect(checkProxyAuth, SIGNAL(stateChanged(int)), this, SLOT(enableProxyAuth(int)));
// Misc tab
connect(checkIPFilter, SIGNAL(stateChanged(int)), this, SLOT(enableFilter(int)));
connect(checkEnableRSS, SIGNAL(stateChanged(int)), this, SLOT(enableRSS(int)));
@@ -181,16 +184,6 @@ options_imp::options_imp(QWidget *parent):QDialog(parent){
connect(checkDownloadLimit, SIGNAL(stateChanged(int)), this, SLOT(enableApplyButton()));
connect(spinUploadLimit, SIGNAL(valueChanged(QString)), this, SLOT(enableApplyButton()));
connect(spinDownloadLimit, SIGNAL(valueChanged(QString)), this, SLOT(enableApplyButton()));
- connect(comboProxyType, SIGNAL(currentIndexChanged(int)), this, SLOT(enableApplyButton()));
- connect(textProxyIP, SIGNAL(textChanged(QString)), this, SLOT(enableApplyButton()));
- connect(spinProxyPort, SIGNAL(valueChanged(QString)), this, SLOT(enableApplyButton()));
- connect(checkProxyAuth, SIGNAL(stateChanged(int)), this, SLOT(enableApplyButton()));
- connect(textProxyUsername, SIGNAL(textChanged(QString)), this, SLOT(enableApplyButton()));
- connect(textProxyPassword, SIGNAL(textChanged(QString)), this, SLOT(enableApplyButton()));
- connect(checkProxyTrackers, SIGNAL(stateChanged(int)), this, SLOT(enableApplyButton()));
- connect(checkProxyPeers, SIGNAL(stateChanged(int)), this, SLOT(enableApplyButton()));
- connect(checkProxyWebseeds, SIGNAL(stateChanged(int)), this, SLOT(enableApplyButton()));
- connect(checkProxyDHT, SIGNAL(stateChanged(int)), this, SLOT(enableApplyButton()));
// Bittorrent tab
connect(checkMaxConnecs, SIGNAL(stateChanged(int)), this, SLOT(enableApplyButton()));
connect(checkMaxConnecsPerTorrent, SIGNAL(stateChanged(int)), this, SLOT(enableApplyButton()));
@@ -207,6 +200,23 @@ options_imp::options_imp(QWidget *parent):QDialog(parent){
connect(checkRatioRemove, SIGNAL(stateChanged(int)), this, SLOT(enableApplyButton()));
connect(spinRatio, SIGNAL(valueChanged(QString)), this, SLOT(enableApplyButton()));
connect(spinMaxRatio, SIGNAL(valueChanged(QString)), this, SLOT(enableApplyButton()));
+ // Proxy tab
+ connect(comboProxyType_http, SIGNAL(currentIndexChanged(int)), this, SLOT(enableApplyButton()));
+ connect(textProxyIP_http, SIGNAL(textChanged(QString)), this, SLOT(enableApplyButton()));
+ connect(spinProxyPort_http, SIGNAL(valueChanged(QString)), this, SLOT(enableApplyButton()));
+ connect(checkProxyAuth_http, SIGNAL(stateChanged(int)), this, SLOT(enableApplyButton()));
+ connect(textProxyUsername_http, SIGNAL(textChanged(QString)), this, SLOT(enableApplyButton()));
+ connect(textProxyPassword_http, SIGNAL(textChanged(QString)), this, SLOT(enableApplyButton()));
+ connect(comboProxyType, SIGNAL(currentIndexChanged(int)), this, SLOT(enableApplyButton()));
+ connect(textProxyIP, SIGNAL(textChanged(QString)), this, SLOT(enableApplyButton()));
+ connect(spinProxyPort, SIGNAL(valueChanged(QString)), this, SLOT(enableApplyButton()));
+ connect(checkProxyAuth, SIGNAL(stateChanged(int)), this, SLOT(enableApplyButton()));
+ connect(textProxyUsername, SIGNAL(textChanged(QString)), this, SLOT(enableApplyButton()));
+ connect(textProxyPassword, SIGNAL(textChanged(QString)), this, SLOT(enableApplyButton()));
+ connect(checkProxyTrackers, SIGNAL(stateChanged(int)), this, SLOT(enableApplyButton()));
+ connect(checkProxyPeers, SIGNAL(stateChanged(int)), this, SLOT(enableApplyButton()));
+ connect(checkProxyWebseeds, SIGNAL(stateChanged(int)), this, SLOT(enableApplyButton()));
+ connect(checkProxyDHT, SIGNAL(stateChanged(int)), this, SLOT(enableApplyButton()));
// Misc tab
connect(checkIPFilter, SIGNAL(stateChanged(int)), this, SLOT(enableApplyButton()));
connect(textFilterPath, SIGNAL(textChanged(QString)), this, SLOT(enableApplyButton()));
@@ -325,6 +335,20 @@ void options_imp::saveOptions(){
settings.setValue(QString::fromUtf8("AffectDHT"), useProxyForDHT());
settings.endGroup(); // End Proxy
}
+ settings.setValue(QString::fromUtf8("HTTPProxyType"), getProxyType());
+ if(isProxyEnabled()) {
+ settings.beginGroup("HTTPProxy");
+ // Proxy is enabled, save settings
+ settings.setValue(QString::fromUtf8("IP"), getProxyIp());
+ settings.setValue(QString::fromUtf8("Port"), getProxyPort());
+ settings.setValue(QString::fromUtf8("Authentication"), isProxyAuthEnabled());
+ if(isProxyAuthEnabled()) {
+ // Credentials
+ settings.setValue(QString::fromUtf8("Username"), getProxyUsername());
+ settings.setValue(QString::fromUtf8("Password"), getProxyPassword());
+ }
+ settings.endGroup(); // End HTTPProxy
+ }
// End Connection preferences
settings.endGroup();
// Bittorrent preferences
@@ -406,6 +430,17 @@ int options_imp::getProxyType() const{
return -1; // disabled
}
+int options_imp::getHTTPProxyType() const {
+ if(comboProxyType_http->currentIndex() == HTTP){
+ if(isHTTPProxyAuthEnabled()){
+ return HTTP_PW;
+ }else{
+ return HTTP;
+ }
+ }
+ return -1; // disabled
+}
+
bool options_imp::useProxyForTrackers() const{
return checkProxyTrackers->isChecked();
}
@@ -548,6 +583,30 @@ void options_imp::loadOptions(){
checkProxyDHT->setChecked(settings.value(QString::fromUtf8("AffectDHT"), true).toBool());
settings.endGroup(); // End Proxy
}
+ intValue = settings.value(QString::fromUtf8("HTTPProxyType"), 0).toInt();
+ if(intValue <= 0) {
+ intValue = 0;
+ } else {
+ intValue = 1;
+ }
+ comboProxyType_http->setCurrentIndex(intValue);
+ enableProxyHTTP(intValue);
+ if(isProxyEnabled()) {
+ settings.beginGroup("HTTPProxy");
+ // Proxy is enabled, save settings
+ textProxyIP_http->setText(settings.value(QString::fromUtf8("IP"), "0.0.0.0").toString());
+ spinProxyPort_http->setValue(settings.value(QString::fromUtf8("Port"), 8080).toInt());
+ checkProxyAuth_http->setChecked(settings.value(QString::fromUtf8("Authentication"), false).toBool());
+ if(isHTTPProxyAuthEnabled()) {
+ enableProxyAuthHTTP(2); // Enable
+ // Credentials
+ textProxyUsername_http->setText(settings.value(QString::fromUtf8("Username"), QString()).toString());
+ textProxyPassword_http->setText(settings.value(QString::fromUtf8("Password"), QString()).toString());
+ } else {
+ enableProxyAuthHTTP(0); // Disable
+ }
+ settings.endGroup(); // End HTTPProxy
+ }
// End Connection preferences
settings.endGroup();
// Bittorrent preferences
@@ -1001,6 +1060,25 @@ void options_imp::enableProxy(int index){
}
}
+void options_imp::enableProxyHTTP(int index){
+ if(index){
+ //enable
+ lblProxyIP_http->setEnabled(true);
+ textProxyIP_http->setEnabled(true);
+ lblProxyPort_http->setEnabled(true);
+ spinProxyPort_http->setEnabled(true);
+ checkProxyAuth_http->setEnabled(true);
+ }else{
+ //disable
+ lblProxyIP_http->setEnabled(false);
+ textProxyIP_http->setEnabled(false);
+ lblProxyPort_http->setEnabled(false);
+ spinProxyPort_http->setEnabled(false);
+ checkProxyAuth_http->setChecked(false);
+ checkProxyAuth_http->setEnabled(false);
+ }
+}
+
void options_imp::enableProxyAuth(int checkBoxValue){
if(checkBoxValue==2){
//enable
@@ -1017,6 +1095,22 @@ void options_imp::enableProxyAuth(int checkBoxValue){
}
}
+void options_imp::enableProxyAuthHTTP(int checkBoxValue){
+ if(checkBoxValue==2){
+ //enable
+ lblProxyUsername_http->setEnabled(true);
+ lblProxyPassword_http->setEnabled(true);
+ textProxyUsername_http->setEnabled(true);
+ textProxyPassword_http->setEnabled(true);
+ }else{
+ //disable
+ lblProxyUsername_http->setEnabled(false);
+ lblProxyPassword_http->setEnabled(false);
+ textProxyUsername_http->setEnabled(false);
+ textProxyPassword_http->setEnabled(false);
+ }
+}
+
void options_imp::enableDirScan(int checkBoxValue){
if(checkBoxValue==2){
//enable
@@ -1035,6 +1129,10 @@ void options_imp::enableDirScan(int checkBoxValue){
}
}
+int options_imp::getFolderScanInterval() const {
+ return FolderScanSpin->value();
+}
+
bool options_imp::speedInTitleBar() const {
return checkSpeedInTitle->isChecked();
}
@@ -1052,22 +1150,36 @@ bool options_imp::isProxyEnabled() const{
return comboProxyType->currentIndex();
}
+bool options_imp::isHTTPProxyEnabled() const {
+ return comboProxyType_http->currentIndex();
+}
+
bool options_imp::isProxyAuthEnabled() const{
return checkProxyAuth->isChecked();
}
+bool options_imp::isHTTPProxyAuthEnabled() const{
+ return checkProxyAuth_http->isChecked();
+}
+
QString options_imp::getProxyIp() const{
QString ip = textProxyIP->text();
ip = ip.trimmed();
return ip;
}
+QString options_imp::getHTTPProxyIp() const{
+ QString ip = textProxyIP_http->text();
+ ip = ip.trimmed();
+ return ip;
+}
+
unsigned short options_imp::getProxyPort() const{
return spinProxyPort->value();
}
-int options_imp::getFolderScanInterval() const {
- return FolderScanSpin->value();
+unsigned short options_imp::getHTTPProxyPort() const{
+ return spinProxyPort_http->value();
}
QString options_imp::getProxyUsername() const{
@@ -1076,12 +1188,24 @@ QString options_imp::getProxyUsername() const{
return username;
}
+QString options_imp::getHTTPProxyUsername() const{
+ QString username = textProxyUsername_http->text();
+ username = username.trimmed();
+ return username;
+}
+
QString options_imp::getProxyPassword() const{
QString password = textProxyPassword->text();
password = password.trimmed();
return password;
}
+QString options_imp::getHTTPProxyPassword() const{
+ QString password = textProxyPassword_http->text();
+ password = password.trimmed();
+ return password;
+}
+
// Locale Settings
QString options_imp::getLocale() const{
return locales.at(comboI18n->currentIndex());
diff --git a/src/options_imp.h b/src/options_imp.h
index cd6b041cc..1449e1d49 100644
--- a/src/options_imp.h
+++ b/src/options_imp.h
@@ -82,17 +82,6 @@ class options_imp : public QDialog, private Ui::Dialog {
bool isUPnPEnabled() const;
bool isNATPMPEnabled() const;
QPair getGlobalBandwidthLimits() const;
- bool isProxyEnabled() const;
- bool isProxyAuthEnabled() const;
- QString getProxyIp() const;
- unsigned short getProxyPort() const;
- QString getProxyUsername() const;
- QString getProxyPassword() const;
- int getProxyType() const;
- bool useProxyForTrackers() const;
- bool useProxyForPeers() const;
- bool useProxyForWebseeds() const;
- bool useProxyForDHT() const;
// Bittorrent options
int getMaxConnecs() const;
int getMaxConnecsPerTorrent() const;
@@ -105,6 +94,25 @@ class options_imp : public QDialog, private Ui::Dialog {
int getEncryptionSetting() const;
float getDesiredRatio() const;
float getDeleteRatio() const;
+ // Proxy options
+ bool isHTTPProxyEnabled() const;
+ bool isHTTPProxyAuthEnabled() const;
+ QString getHTTPProxyIp() const;
+ unsigned short getHTTPProxyPort() const;
+ QString getHTTPProxyUsername() const;
+ QString getHTTPProxyPassword() const;
+ int getHTTPProxyType() const;
+ bool isProxyEnabled() const;
+ bool isProxyAuthEnabled() const;
+ QString getProxyIp() const;
+ unsigned short getProxyPort() const;
+ QString getProxyUsername() const;
+ QString getProxyPassword() const;
+ int getProxyType() const;
+ bool useProxyForTrackers() const;
+ bool useProxyForPeers() const;
+ bool useProxyForWebseeds() const;
+ bool useProxyForDHT() const;
// IP Filter
bool isFilteringEnabled() const;
QString getFilter() const;
@@ -123,6 +131,8 @@ class options_imp : public QDialog, private Ui::Dialog {
void enableDirScan(int checkBoxValue);
void enableProxy(int comboIndex);
void enableProxyAuth(int checkBoxValue);
+ void enableProxyHTTP(int comboIndex);
+ void enableProxyAuthHTTP(int checkBoxValue);
void enableMaxConnecsLimit(int);
void enableMaxConnecsLimitPerTorrent(int checkBoxValue);
void enableMaxUploadsLimitPerTorrent(int checkBoxValue);