diff --git a/Changelog b/Changelog index 9ab94e6e0..2daf2deaa 100644 --- a/Changelog +++ b/Changelog @@ -15,6 +15,7 @@ - FEATURE: Added support for PeerGuardian p2b filters (binary) - FEATURE: Allow to customize folder scan interval - FEATURE: Allow to add several trackers at once + - BUGFIX: Allow to run one instance of qBittorrent per user - BUGFIX: Do not display seeds number in seeding list (always 0) - BUGFIX: Threadified IP filter file parser to avoid GUI freeze - BUGFIX: Ask if we want to redownload if content was deleted from hard drive diff --git a/INSTALL b/INSTALL index f46355a13..9ffafd09d 100644 --- a/INSTALL +++ b/INSTALL @@ -15,6 +15,7 @@ will install and execute qBittorrent hopefully without any problems. Dependencies: - Qt >= 4.3.0 (libqt-devel, libqtgui, libqtcore, libqtnetwork, libqtxml) + Qt >= 4.4.0 is advised - libtorrent-rasterbar by Arvid Norberg (>= v0.13.1 REQUIRED) -> http://www.qbittorrent.org/download.php (advised) diff --git a/configure b/configure index 3b08c335e..da2aa92b3 100755 --- a/configure +++ b/configure @@ -356,7 +356,11 @@ public: QString shortname() const { return "Qt 4.3"; } bool exec() { + if(QT_VERSION >= 0x040400) { + conf->addDefine("QT_4_4"); + } return(QT_VERSION >= 0x040300); + } }; #line 1 "libtorrent-rasterbar.qcm" diff --git a/qcm/qt4.qcm b/qcm/qt4.qcm index 64df414ea..00c709812 100644 --- a/qcm/qt4.qcm +++ b/qcm/qt4.qcm @@ -11,6 +11,10 @@ public: QString shortname() const { return "Qt 4.3"; } bool exec() { + if(QT_VERSION >= 0x040400) { + conf->addDefine("QT_4_4"); + } return(QT_VERSION >= 0x040300); + } }; diff --git a/src/GUI.cpp b/src/GUI.cpp index 9165524d5..ed7d7acab 100644 --- a/src/GUI.cpp +++ b/src/GUI.cpp @@ -23,8 +23,16 @@ #include #include #include -#include -#include +#ifdef QT_4_4 + #include + #include + #include + #include +#else + #include + #include +#endif + #include #include #include @@ -173,11 +181,23 @@ GUI::GUI(QWidget *parent, QStringList torrentCmdLine) : QMainWindow(parent), dis initWebUi(username, password, port); } // Use a tcp server to allow only one instance of qBittorrent - tcpServer = new QTcpServer(); - if (!tcpServer->listen(QHostAddress::LocalHost, 1666)) { +#ifdef QT_4_4 + localServer = new QLocalServer(); + QString uid = QString::number(getuid()); + if (!localServer->listen("qBittorrent-"+uid)) { +#else + localServer = new QTcpServer(); + if (!localServer->listen(QHostAddress::LocalHost)) { +#endif std::cerr << "Couldn't create socket, single instance mode won't work...\n"; } - connect(tcpServer, SIGNAL(newConnection()), this, SLOT(acceptConnection())); +#ifndef QT_4_4 + else { + QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent")); + settings.setValue(QString::fromUtf8("uniqueInstancePort"), localServer->serverPort()); + } +#endif + connect(localServer, SIGNAL(newConnection()), this, SLOT(acceptConnection())); // Start connection checking timer checkConnect = new QTimer(this); connect(checkConnect, SIGNAL(timeout()), this, SLOT(checkConnectionStatus())); @@ -209,7 +229,7 @@ GUI::~GUI() { delete myTrayIconMenu; } qDebug("2"); - delete tcpServer; + delete localServer; delete connecStatusLblIcon; delete tabs; // HTTP Server @@ -399,7 +419,7 @@ void GUI::balloonClicked() { } void GUI::acceptConnection() { - clientConnection = tcpServer->nextPendingConnection(); + clientConnection = localServer->nextPendingConnection(); connect(clientConnection, SIGNAL(disconnected()), this, SLOT(readParamsOnSocket())); qDebug("accepted connection from another instance"); } diff --git a/src/GUI.h b/src/GUI.h index 22fc5c022..41e482b85 100644 --- a/src/GUI.h +++ b/src/GUI.h @@ -35,8 +35,13 @@ class DownloadingTorrents; class FinishedTorrents; class downloadFromURL; class SearchEngine; -class QTcpServer; -class QTcpSocket; +#ifdef QT_4_4 + class QLocalServer; + class QLocalSocket; +#else + class QTcpServer; + class QTcpSocket; +#endif class QCloseEvent; class RSSImp; class QShortcut; @@ -83,8 +88,13 @@ class GUI : public QMainWindow, private Ui::MainWindow{ // Web UI HttpServer *httpServer; // Misc - QTcpServer *tcpServer; +#ifdef QT_4_4 + QLocalServer *localServer; + QLocalSocket *clientConnection; +#else + QTcpServer *localServer; QTcpSocket *clientConnection; +#endif protected slots: // GUI related slots diff --git a/src/Icons/gnome-shutdown.png b/src/Icons/gnome-shutdown.png new file mode 100644 index 000000000..4758764eb Binary files /dev/null and b/src/Icons/gnome-shutdown.png differ diff --git a/src/icons.qrc b/src/icons.qrc index 231095b23..8f61c77ae 100644 --- a/src/icons.qrc +++ b/src/icons.qrc @@ -16,6 +16,7 @@ Icons/filter.png Icons/folder.png Icons/gear.png + Icons/gnome-shutdown.png Icons/home.png Icons/loading.png Icons/locale.png @@ -28,6 +29,9 @@ Icons/qbittorrent16.png Icons/qbittorrent22.png Icons/qbittorrent32.png + Icons/queued-and-gear.png + Icons/queued-and-hashing.png + Icons/queued.png Icons/refresh.png Icons/rss16.png Icons/rss32.png @@ -46,6 +50,7 @@ Icons/unhappy.png Icons/unsubscribe.png Icons/unsubscribe16.png + Icons/up-queued.png Icons/uparrow.png Icons/url.png Icons/wizard.png diff --git a/src/lang/qbittorrent_bg.ts b/src/lang/qbittorrent_bg.ts index 813214b8a..52f642a7d 100644 --- a/src/lang/qbittorrent_bg.ts +++ b/src/lang/qbittorrent_bg.ts @@ -1374,7 +1374,7 @@ Copyright © 2006 на Christophe Dumez<br> GUI - + Open Torrent Files Отвори Торент Файлове @@ -1399,17 +1399,17 @@ Copyright © 2006 на Christophe Dumez<br> Сигурни ли сте че искате да изтриете всички файлове от списъка за сваляне? - + &Yes &Да - + &No &Не - + Are you sure you want to delete the selected item(s) in download list? Сигурни ли сте че искате да изтриете избраните файлове от списъка за сваляне? @@ -1429,7 +1429,7 @@ Copyright © 2006 на Christophe Dumez<br> kb/с - + Finished Завършен @@ -1484,7 +1484,7 @@ Copyright © 2006 на Christophe Dumez<br> Не мога да създам директория: - + Torrent Files Торент Файлове @@ -1556,12 +1556,12 @@ Copyright © 2006 на Christophe Dumez<br> qBittorrent - + qBittorrent qBittorrent - + Are you sure? -- qBittorrent Сигурни ли сте? -- qBittorrent @@ -1874,7 +1874,7 @@ Please close the other one first. Сигурни ли сте че искате да изтриете избраните файлове от списъка за сваляне и от твърдия диск? - + Download finished Свалянето завърши @@ -1890,23 +1890,23 @@ Please close the other one first. Търсачка - + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - + Connection status: Състояние на връзката: - + Offline Извън мрежата - + No peers found... Няма връзки... @@ -1971,13 +1971,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/с @@ -2001,12 +2001,12 @@ Please close the other one first. Отложен - + Are you sure you want to quit? Сигурни ли сте че искате да напуснете? - + '%1' was removed. 'xxx.avi' was removed. '%1' бе премахнат. @@ -2048,12 +2048,12 @@ Please close the other one first. Прослушване на порт: %1 - + All downloads were paused. Всички сваляния са в пауза. - + '%1' paused. xxx.avi paused. '%1' е в пауза. @@ -2065,30 +2065,30 @@ Please close the other one first. Свързване... - + All downloads were resumed. Всички сваляния са възстановени. - + '%1' resumed. e.g: xxx.avi resumed. '%1' бе възстановен. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. '%1' завърши свалянето. - + I/O Error i.e: Input/Output Error В/И Грешка - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused Намерена грешка при четене или записване на %1. Вероятно диска е пълен, свалянето е в пауза @@ -2100,23 +2100,23 @@ Please close the other one first. Намерена грешка (пълен диск?), '%1' е в пауза. - + Connection Status: Състояние на връзката: - + Online Свързан - + Firewalled? i.e: Behind a firewall/router? Проблем с Firewall-а? - + No incoming connections... Няма входящи връзки... @@ -2148,173 +2148,173 @@ Please close the other one first. Сваляне на '%1', моля изчакайте... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Намерена грешка (пълен диск?), '%1' е в пауза. - + Search Търси - + RSS RSS - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 qBittorrent е свързан с порт: %1 - + DHT support [ON], port: %1 DHT поддръжка [ВКЛ], порт: %1 - + DHT support [OFF] DHT поддръжка [ИЗКЛ] - + PeX support [ON] PeX поддръжка [ВКЛ] - + PeX support [OFF] PeX поддръжка [ИЗКЛ] - + The download list is not empty. Are you sure you want to quit qBittorrent? Листата за сваляне не е празна. Сигурни ли сте че искате да напуснете qBittorrent? - + Downloads Сваляне - + Are you sure you want to delete the selected item(s) in finished list? Сигурни ли сте че искате да изтриете избраните файлове от списъка на завършените сваляния? - + UPnP support [ON] UPnP поддръжка [ВКЛ] - + Encryption support [ON] Поддръжка кодиране [ВКЛ] - + Encryption support [FORCED] Поддръжка кодиране [ФОРСИРАНА] - + Encryption support [OFF] Поддръжка кодиране [ИЗКЛ] - + Alt+1 shortcut to switch to first tab Alt+1 - + Alt+2 shortcut to switch to second tab Alt+2 - + Alt+4 shortcut to switch to fourth tab Alt+4 - + Url download error Грешка при сваляне от Url - + Couldn't download file at url: %1, reason: %2. Невъзможно сваляне на файл от url: %1, причина: %2. - + Are you sure you want to delete the selected item(s) from download list and from hard drive? Сигурни ли сте че искате да изтриете избраните от списъка за сваляне или от твърдия диск? - + Are you sure you want to delete the selected item(s) from finished list and from hard drive? Сигурни ли сте че искате да изтриете избраните от списъка на свалените или от твърдия диск? - + '%1' was removed permanently. 'xxx.avi' was removed permanently. '%1' бе премахнат завинаги. - + Alt+3 shortcut to switch to third tab Alt+3 - + Ctrl+F shortcut to switch to search tab Ctrl+F - + UPnP support [OFF] UPnP поддръжка [ИЗКЛ] - + NAT-PMP support [ON] NAT-PMP поддръжка [ВКЛ] - + NAT-PMP support [OFF] NAT-PMP поддръжка [ИЗКЛ] - + Local Peer Discovery [ON] Търсене на локални връзки [ВКЛ] - + Local Peer Discovery support [OFF] Търсене на локални връзки [ИЗКЛ] - + '%1' was removed because its ratio reached the maximum value you set. %1 is a file name '%1' бе премахнат защото съотношението му надвишава определеното. - + qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s) %1 is qBittorrent version qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s) diff --git a/src/lang/qbittorrent_ca.ts b/src/lang/qbittorrent_ca.ts index ab380fbb4..14c3f0790 100644 --- a/src/lang/qbittorrent_ca.ts +++ b/src/lang/qbittorrent_ca.ts @@ -1301,7 +1301,7 @@ Copyright © 2006 by Christophe Dumez<br> iniciat. - + qBittorrent qBittorrent @@ -1321,12 +1321,12 @@ Copyright © 2006 by Christophe Dumez<br> Vel. Pujada: - + Open Torrent Files Arxius Torrent oberts - + Torrent Files Arxius Torrent @@ -1372,7 +1372,7 @@ Copyright © 2006 by Christophe Dumez<br> Aquest arxiu està corrupte o no es un arxiu torrent. - + Are you sure? -- qBittorrent Estàs segur? -- qBittorrent @@ -1382,12 +1382,12 @@ Copyright © 2006 by Christophe Dumez<br> Estàs segur de que vols buidar la llista de descàrregues? - + &Yes &Yes - + &No &No @@ -1397,7 +1397,7 @@ Copyright © 2006 by Christophe Dumez<br> Llista de descàrregues buidada. - + Are you sure you want to delete the selected item(s) in download list? Estàs segur de que vols esborrar les descàrregues seleccionades? @@ -1481,7 +1481,7 @@ Copyright © 2006 by Christophe Dumez<br> /s - + Finished Finalitzat @@ -1816,7 +1816,7 @@ Si et plau tanca l'altre primer. Estàs segur que vols esborrar els objectes seleccionats de la llista de descàrregues i del disc dur? - + Download finished @@ -1832,23 +1832,23 @@ Si et plau tanca l'altre primer. Motor de Busqueda - + qBittorrent %1 e.g: qBittorrent v0.x - + Connection status: - + Offline - + No peers found... @@ -1901,13 +1901,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 @@ -1925,12 +1925,12 @@ Si et plau tanca l'altre primer. Validant... - + Are you sure you want to quit? - + '%1' was removed. 'xxx.avi' was removed. @@ -1942,12 +1942,12 @@ Si et plau tanca l'altre primer. Res - + All downloads were paused. - + '%1' paused. xxx.avi paused. @@ -1959,52 +1959,52 @@ Si et plau tanca l'altre primer. Conectant... - + All downloads were resumed. - + '%1' resumed. e.g: xxx.avi resumed. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. - + I/O Error i.e: Input/Output Error I/O Error - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused - + Connection Status: - + Online - + Firewalled? i.e: Behind a firewall/router? - + No incoming connections... @@ -2015,172 +2015,172 @@ Si et plau tanca l'altre primer. Resultats - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. - + Search Cercar - + RSS - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 - + DHT support [ON], port: %1 - + DHT support [OFF] - + PeX support [ON] - + PeX support [OFF] - + The download list is not empty. Are you sure you want to quit qBittorrent? - + Downloads Descarregues - + Are you sure you want to delete the selected item(s) in finished list? - + UPnP support [ON] - + Encryption support [ON] - + Encryption support [FORCED] - + Encryption support [OFF] - + Alt+1 shortcut to switch to first tab - + Alt+2 shortcut to switch to second tab - + Alt+4 shortcut to switch to fourth tab - + Url download error - + Couldn't download file at url: %1, reason: %2. - + Are you sure you want to delete the selected item(s) from download list and from hard drive? - + Are you sure you want to delete the selected item(s) from finished list and from hard drive? - + '%1' was removed permanently. 'xxx.avi' was removed permanently. - + Alt+3 shortcut to switch to third tab - + Ctrl+F shortcut to switch to search tab - + UPnP support [OFF] - + NAT-PMP support [ON] - + NAT-PMP support [OFF] - + Local Peer Discovery [ON] - + Local Peer Discovery support [OFF] - + '%1' was removed because its ratio reached the maximum value you set. %1 is a file name - + qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s) %1 is qBittorrent version diff --git a/src/lang/qbittorrent_da.ts b/src/lang/qbittorrent_da.ts index 916dc7b92..1689a5d16 100644 --- a/src/lang/qbittorrent_da.ts +++ b/src/lang/qbittorrent_da.ts @@ -1121,7 +1121,7 @@ Copyright © 2006 by Christophe Dumez<br> GUI - + Open Torrent Files Åbn Torrent Filer @@ -1131,17 +1131,17 @@ Copyright © 2006 by Christophe Dumez<br> Denne fil er enten korrupt eller ikke en torrent. - + &Yes &Ja - + &No &Nej - + Are you sure you want to delete the selected item(s) in download list? Er du sikker på at du vil slette det markerede fra download listen? @@ -1156,12 +1156,12 @@ Copyright © 2006 by Christophe Dumez<br> Downloader... - + Torrent Files Torrent Filer - + Are you sure? -- qBittorrent Er du sikker? -- qBittorrent @@ -1269,7 +1269,7 @@ Luk venglist denne først. Overførsler - + Download finished Download afsluttet @@ -1289,23 +1289,23 @@ Luk venglist denne først. Er du sikker på at du vil slette de markerede elementer i download listen og på harddisken? - + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - + Connection status: Forbindelses status: - + Offline Offline - + No peers found... Ingen kilder fundet... @@ -1370,18 +1370,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 @@ -1405,12 +1405,12 @@ Luk venglist denne først. Gået i stå - + Are you sure you want to quit? Er du sikker på at du vil afslutte? - + '%1' was removed. 'xxx.avi' was removed. '%1' blev fjernet. @@ -1452,12 +1452,12 @@ Luk venglist denne først. Lytter på port: %1 - + All downloads were paused. Alle downloads blev sat på pause. - + '%1' paused. xxx.avi paused. '%1' blev sat på pause. @@ -1469,52 +1469,52 @@ Luk venglist denne først. Forbinder... - + All downloads were resumed. Alle downloads fortsættes. - + '%1' resumed. e.g: xxx.avi resumed. '%1' fortsat. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 er hentet færdig. - + I/O Error i.e: Input/Output Error I/O Fejl - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused Der opstod en fejl under forsøget på at skrive %1. Disken er måske fuld, downloaden er sat på pause - + Connection Status: Forbindelses Status: - + Online Online - + Firewalled? i.e: Behind a firewall/router? Bag en Firewall? - + No incoming connections... Ingen indkommende forbindelser... @@ -1546,177 +1546,177 @@ Luk venglist denne først. Downloader '%1', vent venligst... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Der opstod en fejl (fuld disk?), '%1' sat på pause. - + Search Søg - + RSS - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 - + DHT support [ON], port: %1 - + DHT support [OFF] - + PeX support [ON] - + PeX support [OFF] - + The download list is not empty. Are you sure you want to quit qBittorrent? - + Downloads - + Finished Færdig - + Are you sure you want to delete the selected item(s) in finished list? - + UPnP support [ON] - + Encryption support [ON] - + Encryption support [FORCED] - + Encryption support [OFF] - + Alt+1 shortcut to switch to first tab - + Alt+2 shortcut to switch to second tab - + Alt+4 shortcut to switch to fourth tab - + Url download error - + Couldn't download file at url: %1, reason: %2. - + Are you sure you want to delete the selected item(s) from download list and from hard drive? - + Are you sure you want to delete the selected item(s) from finished list and from hard drive? - + '%1' was removed permanently. 'xxx.avi' was removed permanently. - + Alt+3 shortcut to switch to third tab - + Ctrl+F shortcut to switch to search tab - + UPnP support [OFF] - + NAT-PMP support [ON] - + NAT-PMP support [OFF] - + Local Peer Discovery [ON] - + Local Peer Discovery support [OFF] - + '%1' was removed because its ratio reached the maximum value you set. %1 is a file name - + qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s) %1 is qBittorrent version diff --git a/src/lang/qbittorrent_de.ts b/src/lang/qbittorrent_de.ts index f18e9478d..238fad717 100644 --- a/src/lang/qbittorrent_de.ts +++ b/src/lang/qbittorrent_de.ts @@ -1320,7 +1320,7 @@ Copyright (c) 2006 Christophe Dumez<br> :: By Christophe Dumez :: Copyright (c) 2006 - + qBittorrent qBittorrent @@ -1345,12 +1345,12 @@ Copyright (c) 2006 Christophe Dumez<br> UP Geschwindigkeit: - + Open Torrent Files Öffne Torrent Dateien - + Torrent Files Torrent Dateien @@ -1401,7 +1401,7 @@ Copyright (c) 2006 Christophe Dumez<br> Diese Datei ist entweder beschädigt, oder kein torrent. - + Are you sure? -- qBittorrent Sind Sie sicher? -- qBittorrent @@ -1411,12 +1411,12 @@ Copyright (c) 2006 Christophe Dumez<br> Wollen Sie wirklich alle Dateien aus der Download Liste löschen? - + &Yes &Ja - + &No &Nein @@ -1426,7 +1426,7 @@ Copyright (c) 2006 Christophe Dumez<br> Download Liste gelöscht. - + Are you sure you want to delete the selected item(s) in download list? Wollen Sie wirklich die ausgewählten Elemente aus der Download Liste löschen? @@ -1499,7 +1499,7 @@ Copyright (c) 2006 Christophe Dumez<br> <b>qBittorrent</b><br>DL Geschwindigkeit: - + Finished Beendet @@ -1820,7 +1820,7 @@ Bitte schliessen Sie diesen zuerst. Wollen Sie wirklich die ausgewählten Elemente aus der Download Liste und von der Festplatte löschen? - + Download finished Download abgeschlossen @@ -1836,23 +1836,23 @@ Bitte schliessen Sie diesen zuerst. Suchmaschine - + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - + Connection status: Verbindungs Status: - + Offline Offline - + No peers found... Keine Peers gefunden... @@ -1917,13 +1917,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 @@ -1947,12 +1947,12 @@ Bitte schliessen Sie diesen zuerst. Angehalten - + Are you sure you want to quit? Wollen Sie wirklich beenden? - + '%1' was removed. 'xxx.avi' was removed. '%1' wurde entfernt. @@ -1994,12 +1994,12 @@ Bitte schliessen Sie diesen zuerst. Lausche auf Port: %1 - + All downloads were paused. Alle Downloads wurden angehalten. - + '%1' paused. xxx.avi paused. '%1' angehalten. @@ -2011,30 +2011,30 @@ Bitte schliessen Sie diesen zuerst. Verbinde... - + All downloads were resumed. Alle Downloads wurden fortgesetzt. - + '%1' resumed. e.g: xxx.avi resumed. '%1' fortgesetzt. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 vollständig heruntergeladen. - + I/O Error i.e: Input/Output Error I/O Error - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused Es ist ein Fehler beim lesen oder schreiben von %1 aufgetreten. Die Festplatte ist vermutlich voll. Der Download wurde angehalten @@ -2046,23 +2046,23 @@ Bitte schliessen Sie diesen zuerst. Ein Fehler ist aufgetreten (Festplatte voll?), '%1' angehalten. - + Connection Status: Verbindungs-Status: - + Online Online - + Firewalled? i.e: Behind a firewall/router? Hinter einer Firewall/Router? - + No incoming connections... Keine eingehenden Verbindungen... @@ -2094,56 +2094,56 @@ Bitte schliessen Sie diesen zuerst. Lade '%1', bitte warten... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Ein Fehler ist aufgetreten (Festplatte voll?), '%1' angehalten. - + Search Suche - + RSS RSS - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 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] - + The download list is not empty. Are you sure you want to quit qBittorrent? Die Download Liste ist nicht leer. Möchten sie qBittorrent wirklich beenden? - + Downloads Downloads @@ -2153,12 +2153,12 @@ Möchten sie qBittorrent wirklich beenden? Wollen Sie wirklich die ausgewählten Elemente aus der Beendet Liste und von der Festplatte löschen? - + Are you sure you want to delete the selected item(s) in finished list? Wollen Sie wirklich die ausgewählten Elemente aus der Beendet Liste löschen? - + UPnP support [ON] UPNP Unterstützung [Aktiviert] @@ -2168,17 +2168,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] @@ -2194,13 +2194,13 @@ Möchten sie qBittorrent wirklich beenden? Verhältnis - + Alt+1 shortcut to switch to first tab Alt+1 - + Alt+2 shortcut to switch to second tab Alt+2 @@ -2212,18 +2212,18 @@ Möchten sie qBittorrent wirklich beenden? Alt+3, Strg+F - + Alt+4 shortcut to switch to fourth tab Alt+4 - + Url download error URL Download Fehler - + Couldn't download file at url: %1, reason: %2. Konnte Datei von URL: %1 nicht laden, Begründung: %2. @@ -2233,17 +2233,17 @@ Möchten sie qBittorrent wirklich beenden? Fast-Resume Daten wurden zurückgewiesen für torrent %1, prüfe nochmal... - + Are you sure you want to delete the selected item(s) from download list and from hard drive? Sind Sie sicher, daß Sie die ausgewählten Einträge aus der Download Liste und von der Festplatte löschen möchten? - + Are you sure you want to delete the selected item(s) from finished list and from hard drive? Sind Sie sicher, daß Sie die ausgewählten Einträge aus der Beendet Liste und von der Festplatte löschen möchten? - + '%1' was removed permanently. 'xxx.avi' was removed permanently. '%1' wurde endgültig gelöscht. @@ -2254,50 +2254,50 @@ Möchten sie qBittorrent wirklich beenden? URL Seed Lookup fehlgeschlagen für URL: %1, Begründung: %2 - + Alt+3 shortcut to switch to third tab Alt+3 - + Ctrl+F shortcut to switch to search tab Strg+F - + UPnP support [OFF] UPnP Unterstützung [AUS] - + NAT-PMP support [ON] NAT-PMP Unterstützung [AN] - + NAT-PMP support [OFF] 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] - + '%1' was removed because its ratio reached the maximum value you set. %1 is a file name '%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) diff --git a/src/lang/qbittorrent_el.ts b/src/lang/qbittorrent_el.ts index e492a27ff..13944413a 100644 --- a/src/lang/qbittorrent_el.ts +++ b/src/lang/qbittorrent_el.ts @@ -1386,7 +1386,7 @@ Copyright © 2006 από τον Christophe Dumez<br> GUI - + Open Torrent Files Άνοιγμα Αρχείων τορεντ @@ -1411,17 +1411,17 @@ Copyright © 2006 από τον Christophe Dumez<br> Σίγουρα θέλετε να διαγράψετε όλα τα αρχεία στην λίστα κατεβάσματος? - + &Yes &Ναι - + &No &Όχι - + Are you sure you want to delete the selected item(s) in download list? Είστε σίγουρος οτι θέλετε να διαγράψετε το(α) επιλεγμλένα αντικείμενο(α) από την λίστα κατεβάσματος? @@ -1441,7 +1441,7 @@ Copyright © 2006 από τον Christophe Dumez<br> kb/s - + Finished Τελείωσε @@ -1496,7 +1496,7 @@ Copyright © 2006 από τον Christophe Dumez<br> Δεν μπόρεσε να δημιουργηθεί η κατηγορία: - + Torrent Files Αρχεία Τορεντ @@ -1568,12 +1568,12 @@ Copyright © 2006 από τον Christophe Dumez<br> qBittorrent - + qBittorrent qBittorrent - + Are you sure? -- qBittorrent Είστε σίγουρος? -- qBittorrent @@ -1916,7 +1916,7 @@ Please close the other one first. Είστε σίγουρος/η οτι θέλετε να διαγράψετε το(α) επιλεγμένο(α) αντικείμενο(α) από τη λίστα κατεβάσματος και το σκληρό δίσκο? - + Download finished Το κατέβασμα τελείωσε @@ -1932,23 +1932,23 @@ Please close the other one first. Μηχανή Αναζήτησης - + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - + Connection status: Κατάσταση Σύνδεσης: - + Offline Offline - + No peers found... Δεν βρέθηκαν συνδέσεις... @@ -2013,13 +2013,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 @@ -2043,12 +2043,12 @@ Please close the other one first. Αποτυχία λειτουργίας - + Are you sure you want to quit? Είστε σίγουρος/η οτι θέλετε να κλείσετε την εφαρμογή? - + '%1' was removed. 'xxx.avi' was removed. Το '%1' αφαιρέθηκε. @@ -2090,12 +2090,12 @@ Please close the other one first. Ακρόαση στη θύρα: %1 - + All downloads were paused. Όλα τα κατεβάσματα είναι σε παύση. - + '%1' paused. xxx.avi paused. '%1' σε παύση. @@ -2107,30 +2107,30 @@ Please close the other one first. Σύνδεση... - + All downloads were resumed. Όλα τα κατεβάσματα ξανάρχισαν. - + '%1' resumed. e.g: xxx.avi resumed. Το '%1' ξανάρχισε. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. Έχει τελειώσει το κατέβασμα του '%1'. - + I/O Error i.e: Input/Output Error I/O Λάθος - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused Ένα σφάλμα προέκυψε κατά την προσπάθεια ανάγνωσης ή εγγραφής του %1. Ο δίσκος είναι πιθανόν πλήρης, το κατέβασμα είναι σε παύση @@ -2142,23 +2142,23 @@ Please close the other one first. Ένα σφάλμα προέκυψε (δίσκος πλήρης?), το '%1' είναι σε παύση. - + Connection Status: Κατάσταση Σύνδεσης: - + Online Online - + Firewalled? i.e: Behind a firewall/router? Σε τοίχο προστασίας (firewall)? - + No incoming connections... Καμία εισερχόμενη σύνδεση... @@ -2190,66 +2190,66 @@ Please close the other one first. Κατέβασμα του '%1', παρακαλώ περιμένετε... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Ένα σφάλμα προέκυψε (δίσκος πλήρης?), το '%1' είναι σε παύση. - + Search Εύρεση - + RSS RSS - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 Το qBittorrent χρησιμοποιεί τη θύρα: %1 - + DHT support [ON], port: %1 Υποστήριξη DHT [ΝΑΙ], θύρα: %1 - + DHT support [OFF] Υποστήριξη DHT [ΟΧΙ] - + PeX support [ON] Υποστήριξη PeX [ΝΑΙ] - + PeX support [OFF] Υποστήριξη PeX [ΟΧΙ] - + The download list is not empty. Are you sure you want to quit qBittorrent? Η λίστα κατεβάσματος δεν είναι άδεια. Σίγουρα θέλετε να κλείσετε το qBittorrent? - + Downloads Κατέβασματα - + Are you sure you want to delete the selected item(s) in finished list? Είστε σίγουρος οτι θέλετε να διαγράψετε το(α) επιλεγμλένα αντικείμενο(α) από την λίστα των ολοκληρωμένων? - + UPnP support [ON] Υποστήριξη UPnP [ΝΑΙ] @@ -2259,17 +2259,17 @@ Are you sure you want to quit qBittorrent? Προσοχή, η διακίνηση υλικού προστατευόμενου από πνευματικά δικαιώματα χωρίς άδεια είναι παράνομη. - + Encryption support [ON] Υποστήριξη κρυπτογράφησης [ΝΑΙ] - + Encryption support [FORCED] Υποστήριξη κρυπτογράφησης [ΑΝΑΓΚΑΣΤΙΚΑ] - + Encryption support [OFF] Υποστήριξη κρυπτογράφησης [ΟΧΙ] @@ -2285,13 +2285,13 @@ Are you sure you want to quit qBittorrent? Αναλογία - + Alt+1 shortcut to switch to first tab Alt+1 - + Alt+2 shortcut to switch to second tab Alt+2 @@ -2303,18 +2303,18 @@ Are you sure you want to quit qBittorrent? Alt+3, Ctrl+F - + Alt+4 shortcut to switch to fourth tab Alt+4 - + Url download error Σφάλμα κατεβάσματος url - + Couldn't download file at url: %1, reason: %2. Αδύνατο κατέβασμα αρχείου από το url: %1,αιτία: %2. @@ -2324,17 +2324,17 @@ Are you sure you want to quit qBittorrent? Γρήγορη συνέχεια κατεβάσματος αρχείων απορρίφθηκε για το τορεντ %1, επανέλεγχος... - + Are you sure you want to delete the selected item(s) from download list and from hard drive? Είστε σίγουρος οτι θέλετε να διαγράψετε το(α) επιλεγμλένα αντικείμενο(α) από την λίστα κατεβάσματος και από το σκληρό δίσκο? - + Are you sure you want to delete the selected item(s) from finished list and from hard drive? Είστε σίγουρος οτι θέλετε να διαγράψετε το(α) επιλεγμλένα αντικείμενο(α) από το σκληρό δίσκο? - + '%1' was removed permanently. 'xxx.avi' was removed permanently. '%1' διαγράφηκε για πάντα. @@ -2345,50 +2345,50 @@ Are you sure you want to quit qBittorrent? Αποτυχία ελέγχου url μοιράσματος για το url: %1, μήνυμα: %2 - + Alt+3 shortcut to switch to third tab Alt+3 - + Ctrl+F shortcut to switch to search tab Ctrl+F - + UPnP support [OFF] Υποστήριξη UPnP [ΟΧΙ] - + NAT-PMP support [ON] Υποστήριξη NAT-PMP [NAI] - + NAT-PMP support [OFF] Υποστήριξη NAT-PMP [OXI] - + Local Peer Discovery [ON] Ανακάλυψη Τοπικών Συνδέσεων [ΝΑΙ] - + Local Peer Discovery support [OFF] Ανακάλυψη Τοπικών Συνδέσεων [ΟΧΙ] - + '%1' was removed because its ratio reached the maximum value you set. %1 is a file name Το '%1' αφαιρέθηκε επειδή η αναλογία του έφτασε τη μέγιστη τιμή που θέσατε. - + qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s) %1 is qBittorrent version qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s) diff --git a/src/lang/qbittorrent_en.ts b/src/lang/qbittorrent_en.ts index cae0703b9..580954fb0 100644 --- a/src/lang/qbittorrent_en.ts +++ b/src/lang/qbittorrent_en.ts @@ -815,322 +815,322 @@ Copyright © 2006 by Christophe Dumez<br> GUI - + Open Torrent Files - + &Yes - + &No - + Are you sure you want to delete the selected item(s) in download list? - + Torrent Files - + Are you sure? -- qBittorrent - + Download finished - + qBittorrent %1 e.g: qBittorrent v0.x - + Connection status: - + Offline - + No peers found... - + 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 - + Are you sure you want to quit? - + '%1' was removed. 'xxx.avi' was removed. - + All downloads were paused. - + '%1' paused. xxx.avi paused. - + All downloads were resumed. - + '%1' resumed. e.g: xxx.avi resumed. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. - + I/O Error i.e: Input/Output Error - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused - + Connection Status: - + Online - + Firewalled? i.e: Behind a firewall/router? - + No incoming connections... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. - + Search - + RSS - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 - + DHT support [ON], port: %1 - + DHT support [OFF] - + PeX support [ON] - + PeX support [OFF] - + The download list is not empty. Are you sure you want to quit qBittorrent? - + Downloads - + Finished - + Are you sure you want to delete the selected item(s) in finished list? - + UPnP support [ON] - + Encryption support [ON] - + Encryption support [FORCED] - + Encryption support [OFF] - + Alt+1 shortcut to switch to first tab - + Alt+2 shortcut to switch to second tab - + Alt+4 shortcut to switch to fourth tab - + Url download error - + Couldn't download file at url: %1, reason: %2. - + Are you sure you want to delete the selected item(s) from download list and from hard drive? - + Are you sure you want to delete the selected item(s) from finished list and from hard drive? - + '%1' was removed permanently. 'xxx.avi' was removed permanently. - + Alt+3 shortcut to switch to third tab - + Ctrl+F shortcut to switch to search tab - + UPnP support [OFF] - + NAT-PMP support [ON] - + NAT-PMP support [OFF] - + Local Peer Discovery [ON] - + Local Peer Discovery support [OFF] - + '%1' was removed because its ratio reached the maximum value you set. %1 is a file name - + qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s) %1 is qBittorrent version diff --git a/src/lang/qbittorrent_es.ts b/src/lang/qbittorrent_es.ts index aec7fbbc1..b0f45f10c 100644 --- a/src/lang/qbittorrent_es.ts +++ b/src/lang/qbittorrent_es.ts @@ -1355,12 +1355,12 @@ Copyright © 2006 por Christophe Dumez<br> No se pudo crear el directorio: - + Open Torrent Files Abrir archivos Torrent - + Torrent Files Archivos Torrent @@ -1411,12 +1411,12 @@ Copyright © 2006 por Christophe Dumez<br> ¿Seguro que quieres eliminar todos los archivos de la lista de descargas? - + &Yes &Sí - + &No &No @@ -1426,7 +1426,7 @@ Copyright © 2006 por Christophe Dumez<br> Lista de descargas borrada. - + Are you sure you want to delete the selected item(s) in download list? ¿Seguro que quieres borrar el o los elemento(s) seleccionados de la lista de descargas? @@ -1469,7 +1469,7 @@ Copyright © 2006 por Christophe Dumez<br> continuada. - + Finished Terminada @@ -1522,12 +1522,12 @@ Copyright © 2006 por Christophe Dumez<br> qBittorrent - + qBittorrent qBittorrent - + Are you sure? -- qBittorrent ¿Estás seguro? -- qBittorrent @@ -1845,7 +1845,7 @@ Por favor cierra el otro antes. ¿Seguro que deseas borrar el o los elementos seleccionados de la lista de descargas y del disco duro? - + Download finished Descarga terminada @@ -1861,23 +1861,23 @@ Por favor cierra el otro antes. Motor de Búsqueda - + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - + Connection status: Estado de la conexión: - + Offline Offline - + No peers found... No se encontraron peers... @@ -1942,13 +1942,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 @@ -1972,12 +1972,12 @@ Por favor cierra el otro antes. Detenida - + Are you sure you want to quit? ¿Estás seguro de que deseas salir? - + '%1' was removed. 'xxx.avi' was removed. '%1' fue removido. @@ -2019,12 +2019,12 @@ Por favor cierra el otro antes. Escuchando en el puerto: %1 - + All downloads were paused. Todas las descargas en pausa. - + '%1' paused. xxx.avi paused. '%1' en pausa. @@ -2036,30 +2036,30 @@ Por favor cierra el otro antes. Conectando... - + All downloads were resumed. Todas las descargas reiniciadas. - + '%1' resumed. e.g: xxx.avi resumed. '%1' reiniciado. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 ha terminado de descargarse. - + I/O Error i.e: Input/Output Error Error de Entrada/Salida - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused Un error ocurrió mientras se intentaba leer o escribir %1. El disco tal vez esté lleno, la descarga fue pausada @@ -2071,23 +2071,23 @@ Por favor cierra el otro antes. Un error ocurrió (¿disco lleno?), '%1' pausado. - + Connection Status: Estado de la conexión: - + Online En línea - + Firewalled? i.e: Behind a firewall/router? ¿Con firewall? - + No incoming connections... Sin conexiones entrantes... @@ -2119,66 +2119,66 @@ Por favor cierra el otro antes. Descargando '%1', por favor espera... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Un error ocurrió (¿disco lleno?), '%1' pausado. - + Search Buscar - + RSS RSS - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 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] - + The download list is not empty. Are you sure you want to quit qBittorrent? La lista de descargas no está vacía. ¿En verdad deseas salir de qBittorrent? - + Downloads Descargas - + Are you sure you want to delete the selected item(s) in finished list? ¿Estás seguro de que deseas borrar los íconos seleccionados en la lista de terminados? - + UPnP support [ON] Soporte para UPnP [encendido] @@ -2188,17 +2188,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] @@ -2214,13 +2214,13 @@ Are you sure you want to quit qBittorrent? Radio - + Alt+1 shortcut to switch to first tab Alt+1 - + Alt+2 shortcut to switch to second tab Alt+2 @@ -2232,18 +2232,18 @@ Are you sure you want to quit qBittorrent? Alt+3, Ctrl+F - + Alt+4 shortcut to switch to fourth tab Alt+4 - + Url download error Error de descarga de Url - + Couldn't download file at url: %1, reason: %2. No se pudo descargar el archivo en la url: %1, razón: %2. @@ -2253,17 +2253,17 @@ Are you sure you want to quit qBittorrent? Se negaron los datos para reinicio rápido del torrent: %1, verificando de nuevo... - + Are you sure you want to delete the selected item(s) from download list and from hard drive? ¿Estás seguro de que deseas borrar los elementos seleccionados de la lista de descargas y el disco duro? - + Are you sure you want to delete the selected item(s) from finished list and from hard drive? ¿Estás seguro de que deseas borrar los elementos selccionados de la lista de terminados y el disco duro? - + '%1' was removed permanently. 'xxx.avi' was removed permanently. '%1' fue borrado permanentemente. @@ -2274,50 +2274,50 @@ Are you sure you want to quit qBittorrent? Falló la búsqueda de semilla por Url para la url: %1, mensaje: %2 - + Alt+3 shortcut to switch to third tab Alt+3 - + Ctrl+F shortcut to switch to search tab Ctrl + F - + '%1' was removed because its ratio reached the maximum value you set. %1 is a file name '%1' fue eliminado porque su radio llegó al valor máximo que estableciste. - + UPnP support [OFF] Soporte para UPnP [Apagado] - + NAT-PMP support [ON] Soporte para NAT-PMP [Encendido] - + NAT-PMP support [OFF] 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) diff --git a/src/lang/qbittorrent_fi.ts b/src/lang/qbittorrent_fi.ts index fe60e4960..fcbb5bcfd 100644 --- a/src/lang/qbittorrent_fi.ts +++ b/src/lang/qbittorrent_fi.ts @@ -1144,7 +1144,7 @@ Tekijänoikeus © 2006 Christophe Dumez<br> Haun aika tapahtui virhe... - + Are you sure? -- qBittorrent Oletko varma? — qBittorrent @@ -1154,7 +1154,7 @@ Tekijänoikeus © 2006 Christophe Dumez<br> Haluatko varmasti poistaa kaikki tiedostot latauslistasta? - + Are you sure you want to delete the selected item(s) in download list? Haluatko varmasti poistaa valitut tiedostot latauslistasta? @@ -1230,7 +1230,7 @@ Tekijänoikeus © 2006 Christophe Dumez<br> Latausnopeus - + Download finished Lataus tuli valmiiksi @@ -1261,7 +1261,7 @@ Tekijänoikeus © 2006 Christophe Dumez<br> ETA - + Finished Valmis @@ -1297,7 +1297,7 @@ Tekijänoikeus © 2006 Christophe Dumez<br> Nimi - + &No &Ei @@ -1312,7 +1312,7 @@ Tekijänoikeus © 2006 Christophe Dumez<br> Hakupalvelua ei ole valittu - + Open Torrent Files Avaa torrent-tiedostoja @@ -1470,7 +1470,7 @@ Uutta esikatselua ei voi aloittaa. Tiedosto ei ole kelvollinen torrent-tiedosto. - + Torrent Files Torrent-tiedostot @@ -1495,7 +1495,7 @@ Uutta esikatselua ei voi aloittaa. Lähetysnopeus: - + &Yes &Kyllä @@ -1515,23 +1515,23 @@ Uutta esikatselua ei voi aloittaa. I/O-virhe - + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - + Connection status: Yhteyden tila: - + Offline Ei verkkoyhteyttä - + No peers found... Muita käyttäjiä ei löytynyt... @@ -1584,18 +1584,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 @@ -1619,12 +1619,12 @@ Uutta esikatselua ei voi aloittaa. Seisahtunut - + Are you sure you want to quit? Haluatko varmasti poistua? - + '%1' was removed. 'xxx.avi' was removed. ”%1” poistettiin. @@ -1636,12 +1636,12 @@ Uutta esikatselua ei voi aloittaa. Ei mikään - + All downloads were paused. Kaikki lataukset pysäytettiin. - + '%1' paused. xxx.avi paused. ”%1” pysäytettiin. @@ -1653,52 +1653,52 @@ Uutta esikatselua ei voi aloittaa. Yhdistetään... - + All downloads were resumed. Kaikkien latauksien lataamista jatkettiin. - + '%1' resumed. e.g: xxx.avi resumed. Torrentin ”%1” lataamista jatkettiin. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. Lataus ”%1” tuli valmiiksi. - + I/O Error i.e: Input/Output Error I/O-virhe - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused Tiedostoon %1 kirjoittaminen tai lukeminen epäonnistui. Levy saattaa olla täynnä. Lataus pysäytettiin. - + Connection Status: Yhteyden tila: - + Online Ei verkkoyhteyttä - + Firewalled? i.e: Behind a firewall/router? Palomuuri? - + No incoming connections... Ei sisääntulevia yhteyksiä... @@ -1709,173 +1709,173 @@ Uutta esikatselua ei voi aloittaa. Tulokset - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Virhe tapahtui (leyvy on täynnä?). Lataus ”%1” pysäytettiin. - + Search Etsi - + RSS RSS - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 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Ä] - + The download list is not empty. Are you sure you want to quit qBittorrent? Latauslista ei ole tyhjä. Haluatko varmasti lopettaa? - + Downloads Lataukset - + Are you sure you want to delete the selected item(s) in finished list? Haluatko poistaa valitut kohteet listalta? - + UPnP support [ON] UPnP-tuki [PÄÄLLÄ] - + Encryption support [ON] Salaus [KÄYTÖSSÄ] - + Encryption support [FORCED] Salaus [PAKOTETTU] - + Encryption support [OFF] Salaus [EI KÄYTÖSSÄ] - + Alt+1 shortcut to switch to first tab Alt+1 - + Alt+2 shortcut to switch to second tab Alt+2 - + Alt+4 shortcut to switch to fourth tab Alt+4 - + Url download error Latausvirhe - + Couldn't download file at url: %1, reason: %2. Tiedoston lataaminen osoitteesta %1 epäonnistui: %2. - + Are you sure you want to delete the selected item(s) from download list and from hard drive? Haluatko varmasti poistaa valitut tiedostot listalta ja tallennusmedialta? - + Are you sure you want to delete the selected item(s) from finished list and from hard drive? Haluatko varmasti poistaa valitut tiedostot listalta ja tallennusmedialta? - + '%1' was removed permanently. 'xxx.avi' was removed permanently. ”%1” poistettiin pysyvästi. - + Alt+3 shortcut to switch to third tab Alt+3 - + Ctrl+F shortcut to switch to search tab Ctrl+F - + UPnP support [OFF] UPnP-tuki [EI PÄÄLLÄ] - + NAT-PMP support [ON] NAT-PMP-tuki [PÄÄLLÄ] - + NAT-PMP support [OFF] 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Ä] - + '%1' was removed because its ratio reached the maximum value you set. %1 is a file name ”%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) diff --git a/src/lang/qbittorrent_fr.ts b/src/lang/qbittorrent_fr.ts index 77fec4fff..806a51260 100644 --- a/src/lang/qbittorrent_fr.ts +++ b/src/lang/qbittorrent_fr.ts @@ -1,83 +1,99 @@ - @default + b bytes o + KB Ko + MB Mo + GB Go + b bytes o + KB Ko + MB Mo + GB Go + B bytes o + KB kilobytes Ko + MB megabytes Mo + GB gigabytes Go + TB terabytes To + KiB kibibytes (1024 bytes) Ko + MiB mebibytes (1024 kibibytes) Mo + GiB gibibytes (1024 mibibytes) Go + TiB tebibytes (1024 gibibytes) To @@ -96,6 +112,7 @@ A Propos + A bittorrent client using Qt4 and libtorrent, programmed in C++.<br> <br> Copyright © 2006 by Christophe Dumez<br> @@ -111,6 +128,7 @@ Copyright © 2006 par Christophe Dumez<br> Auteur + qBitorrent Author Auteur de qBittorrent @@ -165,6 +183,7 @@ Copyright © 2006 par Christophe Dumez<br> + A bittorrent client using Qt4 and libtorrent, programmed in C++.<br> <br> Copyright © 2006 by Christophe Dumez<br> @@ -175,6 +194,7 @@ Copyright © 2006 par Christophe Dumez<br> <br> <u>Site Internet :</u> <i>http://qbittorrent.sourceforge.net</i><br> + qBittorrent Author Auteur de qBittorrent @@ -305,6 +325,7 @@ Copyright © 2006 par Christophe Dumez<br> ... + Kb/s Ko/s @@ -319,6 +340,7 @@ Copyright © 2006 par Christophe Dumez<br> connexions + to à @@ -368,6 +390,7 @@ Copyright © 2006 par Christophe Dumez<br> Langue + Please choose your preferred language in the following list: Veuillez choisir votre langue dans la liste suivante : @@ -377,6 +400,7 @@ Copyright © 2006 par Christophe Dumez<br> Annuler + Language settings will take effect after restart. Les réglages linguistiques prennent effet au redémarrage. @@ -401,14 +425,17 @@ Copyright © 2006 par Christophe Dumez<br> Ratio Partage : + 1 KB DL = 1 Ko DL = + KB UP max. Ko UP max. + Ip filter Filtre IP @@ -423,14 +450,17 @@ Copyright © 2006 par Christophe Dumez<br> Paramètres de filtrage + Add Range Ajouter Rangée + Remove Range Supprimer Rangée + ipfilter.dat URL or PATH: Url ou chemin de ipfilter.dat : @@ -480,10 +510,12 @@ Copyright © 2006 par Christophe Dumez<br> Chemin ipfilter.dat : + Go to systray on minimizing window Iconifier lors de la minimisation de la fenêtre + Clear finished downloads on exit Enlever les téléchargements terminés à la fermeture @@ -518,14 +550,17 @@ Copyright © 2006 par Christophe Dumez<br> Comportement + Always display OSD Toujours afficher les OSD + Display OSD only if window is minimized or iconified Afficher les OSD uniquement lorsque la fenêtre n'est pas visible + Never display OSD Ne jamais afficher d'OSD @@ -545,6 +580,7 @@ Copyright © 2006 par Christophe Dumez<br> Ko UP max. + DHT (Trackerless): DHT (Trackerless) : @@ -1389,31 +1425,37 @@ Copyright © 2006 par Christophe Dumez<br> GUI + Couldn't create the directory: ' Impossible de trouver le dossier : ' - + Open Torrent Files Ouvrir fichiers torrent + Torrent Files (*.torrent) Fichiers Torrent (*.torrent) + MB Mo + kb/s ko/s + Unknown Inconnu + Unable to decode torrent file: ' Impossible de décoder le fichier torrent : ' @@ -1423,47 +1465,52 @@ Copyright © 2006 par Christophe Dumez<br> Ce fichier est corrompu ou il ne s'agit pas d'un torrent. - + Are you sure? -- qBittorrent Etes vous sûr ? -- qBittorrent + Are you sure you want to delete all files in download list? Etes-vous sûr de vouloir enlever tous les fichiers de la liste de téléchargement ? - + &Yes &Oui - + &No &Non - + Are you sure you want to delete the selected item(s) in download list? Etes-vous sûr de vouloir enlever tous les fichiers sélectionnés de la liste de téléchargement ? + paused en pause + started démarré + All Downloads Resumed! Continuation de tous les téléchargements! + kb/s ko/s - + Finished Terminé @@ -1483,6 +1530,7 @@ Copyright © 2006 par Christophe Dumez<br> Téléchargement... + Download list cleared. Liste de téléchargement vidée. @@ -1497,6 +1545,7 @@ Copyright © 2006 par Christophe Dumez<br> Tous les téléchargements ont été relancés. + DL Speed: Vitesse DL : @@ -1516,7 +1565,7 @@ Copyright © 2006 par Christophe Dumez<br> Impossible de créer le dossier : - + Torrent Files Fichiers Torrent @@ -1542,6 +1591,7 @@ Copyright © 2006 par Christophe Dumez<br> Impossible de décoder le fichier torrent : + Are you sure? Etes-vous sûr ? @@ -1564,16 +1614,19 @@ Copyright © 2006 par Christophe Dumez<br> relancé. + m minutes m + h hours h + d days j @@ -1584,6 +1637,7 @@ Copyright © 2006 par Christophe Dumez<br> Ecoute sur le port: + Couldn't listen on any of the given ports Impossible d'écouter sur les ports donnés @@ -1593,6 +1647,7 @@ Copyright © 2006 par Christophe Dumez<br> <b>qBittorrent</b><br>Vitesse DL : + :: By Christophe Dumez :: Copyright (c) 2006 :: Par Christophe Dumez :: Copyright (c) 2006 @@ -1602,10 +1657,12 @@ Copyright © 2006 par Christophe Dumez<br> <b>Statut Connexion :</b><br>En Ligne + <b>Connection Status:</b><br>Firewalled?<br><i>No incoming connexions...</i> <b>Statut Connexion :</b><br>Derrière un pare-feu ?<br><i>Aucune connexion entrante...</i> + <b>Connection Status:</b><br>offline<br><i>No peers found...</i> <b>Statut Connexion :</b><br>Déconnecté<br><i>Aucun peer trouvé...</i> @@ -1660,14 +1717,17 @@ Copyright © 2006 par Christophe Dumez<br> Recherche en cours... + Could not create search plugin. Impossible de créer le greffon de recherche. + Error during search Erreur durant la recherche + Stopped Stoppé @@ -1677,34 +1737,42 @@ Copyright © 2006 par Christophe Dumez<br> Erreur E/S + Couldn't create temporary file on hard drive. Impossible de créer le fichier temporaire sur le disque dur. + Torrent file URL URL du fichier torrent + KB/s Ko/s + KB/s Ko/s + Downloading using HTTP: Téléchargement via HTTP : + Torrent file URL: URL du fichier torrent : + A http download failed... Un téléchargement http a échoué... + A http download failed, reason: Un téléchargement http a échoué, raison : @@ -1714,18 +1782,22 @@ Copyright © 2006 par Christophe Dumez<br> Etes-vous sûr ? -- qBittorrent + Are you sure you want to quit qbittorrent? Etes-vous certain de vouloir quitter qBittorrent ? + Timed out Délai écoulé + Error during search... Erreur durant la recherche... + Failed to download: Echec lors du téléchargement de : @@ -1735,18 +1807,22 @@ Copyright © 2006 par Christophe Dumez<br> Ko/s + KiB/s Ko/s + A http download failed, reason: Un téléchargement http a échoué, raison : + Stalled En attente + Your search is finished Votre recherche s'est terminée @@ -1771,6 +1847,7 @@ Copyright © 2006 par Christophe Dumez<br> La recherche n'a retourné aucun résultat + Search is Finished La recherche est terminée @@ -1907,7 +1984,7 @@ Veuillez d'abord le quitter. Transferts - + Download finished Téléchargement terminé @@ -1933,23 +2010,23 @@ Veuillez d'abord le quitter. Etes-vous certain de vouloir supprimer les fichiers sélectionnés depuis la liste de téléchargement ainsi que le disque dur ? - + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - + Connection status: Statut de la connexion : - + Offline Déconnecté - + No peers found... Aucune source trouvée... @@ -2014,18 +2091,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 @@ -2049,12 +2126,12 @@ Veuillez d'abord le quitter. En attente - + Are you sure you want to quit? Etes vous certain de vouloir quitter ? - + '%1' was removed. 'xxx.avi' was removed. '%1' a été supprimé. @@ -2096,12 +2173,12 @@ Veuillez d'abord le quitter. En écoute sur le port: %1 - + All downloads were paused. Tous les téléchargements ont été mis en pause. - + '%1' paused. xxx.avi paused. '%1' a été mis en pause. @@ -2113,30 +2190,30 @@ Veuillez d'abord le quitter. Connexion... - + All downloads were resumed. Tous les téléchargements ont été relancés. - + '%1' resumed. e.g: xxx.avi resumed. '%1' a été relancé. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. Le téléchargement de %1 est terminé. - + I/O Error i.e: Input/Output Error Erreur E/S - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused Une erreur s'est produite lors de la lecture ou l'écriture de %1. Le disque dur est probablement plein, le téléchargement a été mis en pause @@ -2148,23 +2225,23 @@ Veuillez d'abord le quitter. Une erreur s'est produite (disque plein ?), '%1' a été mis en pause. - + Connection Status: Etat de la connexion : - + Online Connecté - + Firewalled? i.e: Behind a firewall/router? Derrière un pare-feu ou un routeur ? - + No incoming connections... Aucune connexion entrante... @@ -2196,56 +2273,56 @@ Veuillez d'abord le quitter. Téléchargement de '%1', veuillez patienter... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Une erreur s'est produite (disque plein ?), '%1' a été mis en pause. - + Search Recherche - + RSS - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 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] - + The download list is not empty. Are you sure you want to quit qBittorrent? La liste de téléchargement n'est pas vide. Etes-vous certain de vouloir quitter qBittorrent ? - + Downloads Téléchargements @@ -2255,12 +2332,12 @@ Etes-vous certain de vouloir quitter qBittorrent ? Etes-vous certain de vouloir supprimer les torrents sélectionnés dans la liste de partage et sur le disque dur ? - + Are you sure you want to delete the selected item(s) in finished list? Etes-vous certain de vouloir supprimer les torrents sélectionnés de la liste de partage ? - + UPnP support [ON] Support UPnP [ON] @@ -2270,17 +2347,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] @@ -2296,13 +2373,13 @@ Etes-vous certain de vouloir quitter qBittorrent ? Ratio - + Alt+1 shortcut to switch to first tab Alt+& - + Alt+2 shortcut to switch to second tab Alt+é @@ -2314,18 +2391,18 @@ Etes-vous certain de vouloir quitter qBittorrent ? Qt::CTRL+Qt::Key_F, Qt::Alt+Qt::Key_QuoteDbl - + Alt+4 shortcut to switch to fourth tab Alt+' - + Url download error Erreur téléchargement url - + Couldn't download file at url: %1, reason: %2. Impossible de télécharger le fichier à l'url : %1, raison : %2. @@ -2335,17 +2412,17 @@ Etes-vous certain de vouloir quitter qBittorrent ? Le relancement rapide a échoué pour le torrent %1, revérification... - + Are you sure you want to delete the selected item(s) from download list and from hard drive? Etes-vous certain de vouloir supprimer les fichiers sélectionnés depuis la liste de téléchargement ainsi que le disque dur ? - + Are you sure you want to delete the selected item(s) from finished list and from hard drive? Etes-vous certain de vouloir supprimer les torrents sélectionnés dans la liste de partage et sur le disque dur ? - + '%1' was removed permanently. 'xxx.avi' was removed permanently. '%1' a été supprimé de manière permanente. @@ -2356,50 +2433,50 @@ Etes-vous certain de vouloir quitter qBittorrent ? Le contact de la source HTTP a échoué à l'url : %1, message : %2 - + Alt+3 shortcut to switch to third tab Alt+" - + Ctrl+F shortcut to switch to search tab - + UPnP support [OFF] Support UPNP [OFF] - + NAT-PMP support [ON] Support NAT-PMP [ON] - + NAT-PMP support [OFF] 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] - + '%1' was removed because its ratio reached the maximum value you set. %1 is a file name '%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) @@ -2408,6 +2485,7 @@ Etes-vous certain de vouloir quitter qBittorrent ? MainWindow + qBittorrent :: By Christophe Dumez qBittorrent :: Par Christophe Dumez @@ -2422,6 +2500,7 @@ Etes-vous certain de vouloir quitter qBittorrent ? Vitesse DL totale : + Kb/s ko/s @@ -2431,26 +2510,32 @@ Etes-vous certain de vouloir quitter qBittorrent ? Vitesse UP totale : + Name Nom + Size Taille + DL Speed Vitesse DL + UP Speed Vitesse UP + Status Statut + ETA Restant @@ -2520,10 +2605,12 @@ Etes-vous certain de vouloir quitter qBittorrent ? Démarrer tous + Connexion Status Statut Connexion + Delete All Supprimer tous @@ -2533,6 +2620,7 @@ Etes-vous certain de vouloir quitter qBittorrent ? Propriétés du Torrent + Connection Status Statut Connexion @@ -2577,14 +2665,17 @@ Etes-vous certain de vouloir quitter qBittorrent ? Stopper + Seeds Sources entières + Leechers Sources partielles + Search Engine Moteur de recherche @@ -2614,6 +2705,7 @@ Etes-vous certain de vouloir quitter qBittorrent ? Créer torrent + Ratio: Ratio : @@ -2737,6 +2829,7 @@ Etes-vous certain de vouloir quitter qBittorrent ? QTextEdit + Clear Vider @@ -3141,6 +3234,7 @@ Changements: Ui + I would like to thank the following people who volonteered to translate qBittorrent: Je tiens à remercier les personnes suivantes pour avoir traduit qBittorrent : @@ -3150,6 +3244,7 @@ Changements: Veuillez me contacter si vous désirez traduire qBittorrent dans votre langue natale. + I would like to thank sourceforge.net for hosting qBittorrent project. Un grand merci à sourceforge.net qui héberge le projet qBittorrent. @@ -3159,10 +3254,12 @@ Changements: Je tiens à remercier les personnes suivantes pour avoir traduit qBittorrent : + <ul><li>I would like to thank sourceforge.net for hosting qBittorrent project.</li> <ul><li>J'aimerai remercier sourceforge.net qui héberge le projet de qBittorrent.</li> + <li>I also like to thank Jeffery Fernandez (developer@jefferyfernandez.id.au), our RPM packager, for his great work.</li></ul> <li>Je tiens églement à remercier Jeffery Fernandez (developer@jefferyfernandez.id.au), notre packager RPM, pour son travail.</li></ul> @@ -3288,6 +3385,7 @@ Changements: Annuler + select Select @@ -3391,6 +3489,7 @@ Changements: Fichier ou dossier à inclure : + Comment: Commentaire : @@ -3410,6 +3509,7 @@ Changements: Annuler + Announce url (Tracker): URL du tracker : @@ -3602,6 +3702,7 @@ Changements: Le fichier ou le dossier à inclure est introuvable + Please type a correct input path first Veuillez vérifier la chemin du fichier/dossier à inclure @@ -3685,6 +3786,7 @@ Changements: downloadFromURL + Download from url Téléchargement depuis une url @@ -4123,6 +4225,7 @@ Cependant, les greffons en question ont été désactivés. h + d days j @@ -4213,14 +4316,17 @@ Cependant, les greffons en question ont été désactivés. en mode lecture. + Invalid Line Ligne invalide + Line La ligne + is malformed. est mal formée. @@ -4235,10 +4341,12 @@ Cependant, les greffons en question ont été désactivés. IP de début : + Incorrect IP IP incorrecte + This IP is incorrect. Cette IP est incorrecte. @@ -4417,6 +4525,7 @@ Cependant, les greffons en question ont été désactivés. Propriétés du Torrent + Main Infos Infos Principales @@ -4431,10 +4540,12 @@ Cependant, les greffons en question ont été désactivés. Session Actuelle + Total Uploaded: Total Uploadé : + Total Downloaded: Total Downloadé : @@ -4444,14 +4555,17 @@ Cependant, les greffons en question ont été désactivés. Etat du téléchargement : + Current Tracker: Tracker Actuel : + Number of Peers: Nombre de peers : + Torrent Content Contenu du Torrent @@ -4461,10 +4575,12 @@ Cependant, les greffons en question ont été désactivés. + Cancel Annuler + Total Failed: Total échoué : @@ -4509,10 +4625,12 @@ Cependant, les greffons en question ont été désactivés. Allocation + Unreachable? Injoignable ? + MB Mo @@ -4522,10 +4640,12 @@ Cependant, les greffons en question ont été désactivés. Inconnu + Complete: Complet : + Partial: Partiel : @@ -4560,10 +4680,12 @@ Cependant, les greffons en question ont été désactivés. Vous pouvez sélectionner ici quels fichiers vous désirez télécharger dans le torrent actuel. + False Non + True Oui @@ -4593,6 +4715,7 @@ Cependant, les greffons en question ont été désactivés. Infos principales + Number of peers: Nombre de sources : @@ -4622,6 +4745,7 @@ Cependant, les greffons en question ont été désactivés. Contenu du torrent + Options Options diff --git a/src/lang/qbittorrent_hu.ts b/src/lang/qbittorrent_hu.ts index b79f45222..25cfc4e6e 100644 --- a/src/lang/qbittorrent_hu.ts +++ b/src/lang/qbittorrent_hu.ts @@ -1179,7 +1179,7 @@ Copyright © 2006 by Christophe Dumez<br> GUI - + Open Torrent Files Torrent fájl megnyitása @@ -1189,17 +1189,17 @@ Copyright © 2006 by Christophe Dumez<br> Ez a fájl sérült, vagy nem is torrent. - + &Yes &Igen - + &No &Nem - + Are you sure you want to delete the selected item(s) in download list? Biztos vagy benne, hogy törlöd a felsorlolt elemeket a letöltési listáról? @@ -1214,12 +1214,12 @@ Copyright © 2006 by Christophe Dumez<br> Letöltés... - + Torrent Files Torrentek - + Are you sure? -- qBittorrent Egészen biztos? -- qBittorrent @@ -1251,7 +1251,7 @@ Please close the other one first. Kérlek előbb azt zárd be. - + Download finished Letöltés elkészült @@ -1261,23 +1261,23 @@ Kérlek előbb azt zárd be. Egészen biztos vagy benne, hogy törlöd a felsorlolt elemeket a letöltési listáról ÉS a merevlemezről? - + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - + Connection status: A kapcsolat állapota: - + Offline Offline - + No peers found... Nem találtam ügyfélt... @@ -1330,18 +1330,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 @@ -1359,12 +1359,12 @@ Kérlek előbb azt zárd be. Elakadt - + Are you sure you want to quit? Egészen biztos, hogy kilépsz? - + '%1' was removed. 'xxx.avi' was removed. '%1' eltávolítva. @@ -1400,12 +1400,12 @@ Kérlek előbb azt zárd be. Nincs - + All downloads were paused. Minden letöltés megszakítva. - + '%1' paused. xxx.avi paused. '%1' megállítva. @@ -1417,52 +1417,52 @@ Kérlek előbb azt zárd be. Csatlakozás... - + All downloads were resumed. Mindegyik letöltés elindítva. - + '%1' resumed. e.g: xxx.avi resumed. '%1' elindítva. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 letöltve. - + I/O Error i.e: Input/Output Error I/O Hiba - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused 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 - + Firewalled? i.e: Behind a firewall/router? Tűzfal probléma? - + No incoming connections... Nincs kapcsolat... @@ -1473,61 +1473,61 @@ Kérlek előbb azt zárd be. Letöltés alatt: '%1', kis türelmet... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Hiba történt (megtelt a merevlemez?), '%1' megállítva. - + Search Keresés - + RSS RSS - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 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] - + The download list is not empty. Are you sure you want to quit qBittorrent? Letöltés folyamatban. Mégis leállítod a qBittorrentet? - + Downloads Letöltések - + Finished Feltöltések @@ -1537,12 +1537,12 @@ Mégis leállítod a qBittorrentet? Egészen biztos vagy benne, hogy törlöd a felsorolt elemeket a feltöltési listáról ÉS a merevlemezről? - + Are you sure you want to delete the selected item(s) in finished list? Biztos vagy benne, hogy törlöd a felsorolt elemeket a feltöltési listáról? - + UPnP support [ON] UPnP támogatás [ON] @@ -1552,17 +1552,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] @@ -1578,13 +1578,13 @@ Mégis leállítod a qBittorrentet? Arány - + Alt+1 shortcut to switch to first tab Alt+1 - + Alt+2 shortcut to switch to second tab Alt+2 @@ -1596,18 +1596,18 @@ Mégis leállítod a qBittorrentet? Alt+3, Ctrl+F - + Alt+4 shortcut to switch to fourth tab Alt+4 - + Url download error Url letöltés hiba - + Couldn't download file at url: %1, reason: %2. Nem sikerült letölteni url címről: %1, mert: %2. @@ -1617,17 +1617,17 @@ Mégis leállítod a qBittorrentet? Hibás ellenőrző adat ennél a torrentnél: %1, újraellenőrzés... - + Are you sure you want to delete the selected item(s) from download list and from hard drive? Egészen biztos vagy benne, hogy törlöd a felsorlolt elemeket a letöltési listáról ÉS a merevlemezről? - + Are you sure you want to delete the selected item(s) from finished list and from hard drive? Egészen biztos vagy benne, hogy törlöd a felsorlolt elemeket a feltöltési listáról ÉS a merevlemezről? - + '%1' was removed permanently. 'xxx.avi' was removed permanently. '%1' véglegesen törölve. @@ -1638,50 +1638,50 @@ Mégis leállítod a qBittorrentet? Url forrás meghatározása sikertelen: %1, hibaüzenet: %2 - + Alt+3 shortcut to switch to third tab Alt+3 - + Ctrl+F shortcut to switch to search tab Ctrl+F - + UPnP support [OFF] UPnP támogatás [OFF] - + NAT-PMP support [ON] NAT-PMP támogatás [ON] - + NAT-PMP support [OFF] 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] - + '%1' was removed because its ratio reached the maximum value you set. %1 is a file name '%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) diff --git a/src/lang/qbittorrent_it.ts b/src/lang/qbittorrent_it.ts index c7be6125d..5efb25273 100644 --- a/src/lang/qbittorrent_it.ts +++ b/src/lang/qbittorrent_it.ts @@ -1242,7 +1242,7 @@ Copyright © 2006 by Christophe Dumez<br> GUI - + Open Torrent Files Apri file torrent @@ -1257,22 +1257,22 @@ Copyright © 2006 by Christophe Dumez<br> Sei sicuro di voler cancellare tutti i file nella lista di download? - + &Yes &Sì - + &No &No - + Are you sure you want to delete the selected item(s) in download list? Sei sicuro di voler cancellare gli elementi selezionati dalla lista dei download? - + Finished In Upload @@ -1322,7 +1322,7 @@ Copyright © 2006 by Christophe Dumez<br> Impossibile creare la directory: - + Torrent Files File torrent @@ -1376,7 +1376,7 @@ Copyright © 2006 by Christophe Dumez<br> qBittorrent - + Are you sure? -- qBittorrent Sei sicuro? -- qBittorrent @@ -1614,7 +1614,7 @@ Example: Downloading www.example.com/test.torrent Downloading - + Download finished Download completato @@ -1645,23 +1645,23 @@ Example: Downloading www.example.com/test.torrent Errore I/O - + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - + Connection status: Stato della connessione: - + Offline Offline - + No peers found... Nessun peer trovato... @@ -1726,18 +1726,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 @@ -1761,12 +1761,12 @@ Example: Downloading www.example.com/test.torrent In Stallo - + Are you sure you want to quit? Sei sicuro di voler uscire? - + '%1' was removed. 'xxx.avi' was removed. '%1' è stato rimosso. @@ -1808,12 +1808,12 @@ Example: Downloading www.example.com/test.torrent In ascolto sulla porta: %1 - + All downloads were paused. Tutti i download sono stati fermati. - + '%1' paused. xxx.avi paused. '%1' fermato. @@ -1825,52 +1825,52 @@ Example: Downloading www.example.com/test.torrent Connessione in corso... - + All downloads were resumed. Tutti i download sono stati ripresi. - + '%1' resumed. e.g: xxx.avi resumed. '%1' ripreso. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 è stato scaricato. - + I/O Error i.e: Input/Output Error Errore I/O - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused Errore di scrittura o di lettura con %1. Probabilmente il disco è pieno, il download è stato fermato - + Connection Status: Stato della connessione: - + Online Online - + Firewalled? i.e: Behind a firewall/router? Dietro firewall? - + No incoming connections... Nessuna connession in entrata... @@ -1902,66 +1902,66 @@ Example: Downloading www.example.com/test.torrent Download di '%1' in corso... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. C'è stato un errore (disco pieno?), '%1' fermato. - + Search Ricerca - + RSS RSS - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 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] - + The download list is not empty. Are you sure you want to quit qBittorrent? La lista dei download non è vuota. Sei sicuro di voler uscire da qBittorrent? - + Downloads In Download - + Are you sure you want to delete the selected item(s) in finished list? Sei sicuro di voler cancellare gli elementi selezionati dalla lista dei download completati? - + UPnP support [ON] Supporto UPnP [ON] @@ -1971,17 +1971,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] @@ -1997,13 +1997,13 @@ Sei sicuro di voler uscire da qBittorrent? Rapporto - + Alt+1 shortcut to switch to first tab Alt+1 - + Alt+2 shortcut to switch to second tab Alt+2 @@ -2015,18 +2015,18 @@ Sei sicuro di voler uscire da qBittorrent? Alt+3, Ctrl+F - + Alt+4 shortcut to switch to fourth tab Alt+4 - + Url download error Errore download da url - + Couldn't download file at url: %1, reason: %2. Impossibile scaricare il file all'indirizzo: %1, motivo: %2. @@ -2036,17 +2036,17 @@ Sei sicuro di voler uscire da qBittorrent? Il recupero veloce del torrent %1 è stato rifiutato, altro tentativo in corso... - + Are you sure you want to delete the selected item(s) from download list and from hard drive? Sei sicuro di voler rimuovere gli elementi selezionati dalla lista dei download e dal disco? - + Are you sure you want to delete the selected item(s) from finished list and from hard drive? Sei sicuro di voler rimuovere gli oggetti selezionati dalla lista dei download completati e dal disco? - + '%1' was removed permanently. 'xxx.avi' was removed permanently. '%1' è stato cancellato permanentemente. @@ -2057,50 +2057,50 @@ Sei sicuro di voler uscire da qBittorrent? Fallito seed per l'url: %1, messaggio: %2 - + Alt+3 shortcut to switch to third tab Alt+3 - + Ctrl+F shortcut to switch to search tab Ctrl+F - + UPnP support [OFF] Supporto UPnP [OFF] - + NAT-PMP support [ON] Supporto NAT-PMP [ON] - + NAT-PMP support [OFF] Supporto NAT-PMP [OFF] - + Local Peer Discovery [ON] Supporto scoperta peer locali [ON] - + Local Peer Discovery support [OFF] Supporto scoperta peer locali [OFF] - + '%1' was removed because its ratio reached the maximum value you set. %1 is a file name '%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) diff --git a/src/lang/qbittorrent_ja.ts b/src/lang/qbittorrent_ja.ts index 73a013058..24553bea9 100644 --- a/src/lang/qbittorrent_ja.ts +++ b/src/lang/qbittorrent_ja.ts @@ -1219,7 +1219,7 @@ Copyright © 2006 by Christophe Dumez<br> GUI - + Open Torrent Files Torrent ファイルを開く @@ -1229,17 +1229,17 @@ Copyright © 2006 by Christophe Dumez<br> このファイルは壊れているかこれは torrent ではないかのどちらかです。 - + &Yes はい(&Y) - + &No いいえ(&N) - + Are you sure you want to delete the selected item(s) in download list? ダウンロードの一覧にある選択されたアイテムを削除してもよろしいですか? @@ -1254,12 +1254,12 @@ Copyright © 2006 by Christophe Dumez<br> ダウンロードしています.... - + Torrent Files Torrent ファイル - + Are you sure? -- qBittorrent よろしいですか? -- qBittorrent @@ -1291,7 +1291,7 @@ Please close the other one first. まず他の 1 つを閉じてください。 - + Download finished ダウンロードが完了しました @@ -1301,23 +1301,23 @@ Please close the other one first. ダウンロードの一覧およびハード ドライブにある選択されたアイテムを削除してもよろしいですか? - + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - + Connection status: 接続状態: - + Offline オフライン - + No peers found... ピアが見つかりません... @@ -1370,18 +1370,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 @@ -1399,12 +1399,12 @@ Please close the other one first. 失速しました - + Are you sure you want to quit? 終了してもよろしいですか? - + '%1' was removed. 'xxx.avi' was removed. '%1' は削除されました。 @@ -1440,12 +1440,12 @@ Please close the other one first. なし - + All downloads were paused. すべてのダウンロードが一時停止されました。 - + '%1' paused. xxx.avi paused. '%1' が停止されました。 @@ -1457,52 +1457,52 @@ Please close the other one first. 接続しています... - + All downloads were resumed. すべてのダウンロードが再開されました。 - + '%1' resumed. e.g: xxx.avi resumed. '%1' が再開されました。 - + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 はダウンロードが完了しました。 - + I/O Error i.e: Input/Output Error I/O エラー - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused %1 の読み込みまたは書き込みを試行にエラーが発生しました。ディスクはおそらくいっぱいです、ダウンロードは一時停止されました - + Connection Status: 接続状態: - + Online オンライン - + Firewalled? i.e: Behind a firewall/router? ファイアウォールされましたか? - + No incoming connections... 次期接続がありません... @@ -1513,18 +1513,18 @@ Please close the other one first. '%1' をダウンロードしています、お待ちください... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. エラーが発生しました (ディスクいっぱい?)、'%1' が停止されました。 - + Search 検索 - + RSS RSS @@ -1539,18 +1539,18 @@ Please close the other one first. UPnP: WAN が検出されました! - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 qBittorrent は次のポートに拘束されています: %1 - + DHT support [ON], port: %1 DHT サポート [オン]、ポート: %1 - + DHT support [OFF] DHT サポート [オフ] @@ -1560,34 +1560,34 @@ Please close the other one first. UPnP サポート [オン]、ポート: %1 - + UPnP support [OFF] UPnP サポート [オフ] - + PeX support [ON] PeX サポート [オン] - + PeX support [OFF] PeX サポート [オフ] - + The download list is not empty. Are you sure you want to quit qBittorrent? ダウンロードの一覧は空ではありません。 qBittorrent を終了してもよろしいですか? - + Downloads ダウンロード - + Finished 完了しました @@ -1597,12 +1597,12 @@ qBittorrent を終了してもよろしいですか? 完了済みの一覧およびハード ドライブにある選択されたアイテムを削除してもよろしいですか? - + Are you sure you want to delete the selected item(s) in finished list? ダウンロードの一覧にある選択されたアイテムを削除してもよろしいですか? - + UPnP support [ON] UPnP サポート [オン] @@ -1612,17 +1612,17 @@ qBittorrent を終了してもよろしいですか? ご用心ください、許可なしの著作権のある材料の共有は法律に違反しています。 - + Encryption support [ON] 暗号化サポート [オン] - + Encryption support [FORCED] 暗号化サポート [強制済み] - + Encryption support [OFF] 暗号化サポート [オフ] @@ -1638,13 +1638,13 @@ qBittorrent を終了してもよろしいですか? - + Alt+1 shortcut to switch to first tab Alt+1 - + Alt+2 shortcut to switch to second tab Alt+2 @@ -1656,18 +1656,18 @@ qBittorrent を終了してもよろしいですか? Alt+3、Ctrl+F - + Alt+4 shortcut to switch to fourth tab Alt+4 - + Url download error Url のダウンロード エラー - + Couldn't download file at url: %1, reason: %2. 次の url にあるファイルをダウンロードできませんでした: %1、理由: %2。 @@ -1677,17 +1677,17 @@ qBittorrent を終了してもよろしいですか? 高速再開データは torrent %1 を拒絶しました、再びチェックしています... - + Are you sure you want to delete the selected item(s) from download list and from hard drive? ダウンロードの一覧とハード ドライブから選択されたアイテムを削除してもよろしいですか? - + Are you sure you want to delete the selected item(s) from finished list and from hard drive? 完了済みの一覧とハード ドライブから選択されたアイテムを削除してもよろしいですか? - + '%1' was removed permanently. 'xxx.avi' was removed permanently. '%1' は永久に削除されました。 @@ -1698,45 +1698,45 @@ qBittorrent を終了してもよろしいですか? 次の url の url シードの参照に失敗しました: %1、メッセージ: %2 - + Alt+3 shortcut to switch to third tab Alt+3 - + Ctrl+F shortcut to switch to search tab Ctrl+F - + '%1' was removed because its ratio reached the maximum value you set. %1 is a file name '%1' はその率が設定した最大値を達成したので削除されました。 - + NAT-PMP support [ON] NAT-PMP サポート [オン] - + NAT-PMP support [OFF] 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) diff --git a/src/lang/qbittorrent_ko.ts b/src/lang/qbittorrent_ko.ts index f6ec1bccc..794778f87 100644 --- a/src/lang/qbittorrent_ko.ts +++ b/src/lang/qbittorrent_ko.ts @@ -1343,12 +1343,12 @@ list: 업로딩 속도: - + Open Torrent Files 토런트 파일 열기 - + Torrent Files 토런트 파일 @@ -1413,12 +1413,12 @@ list? 파일을 지우고 싶으세요? - + &Yes &예 - + &No &아니요 @@ -1484,7 +1484,7 @@ download list? 다시 시작됨. - + Finished 완료 @@ -1532,7 +1532,7 @@ download list? 다운로드 목록에 있는 모든 파일을 지우고 싶으세요? - + Are you sure you want to delete the selected item(s) in download list? 다운로딩 목록에서 선택하신 모든 아이템을 삭제하시겠습니까? @@ -1547,12 +1547,12 @@ download list? 개발자: 크리스토프 두메스 :: Copyright (c) 2006 - + qBittorrent 큐비토런트 - + Are you sure? -- qBittorrent 재확인해주십시요? -- 큐비토런트 @@ -1870,7 +1870,7 @@ Please close the other one first. 정말로 지금 선택하신 파일들을 다운로드 목록과 하드 드라이브에서 삭제하시겠습니까? - + Download finished 다운로드 완료 @@ -1886,23 +1886,23 @@ Please close the other one first. 검색 엔진 - + qBittorrent %1 e.g: qBittorrent v0.x 큐비토런트 %1 - + Connection status: 연결 상태: - + Offline 오프라인 - + No peers found... 피어가 없습니다... @@ -1967,13 +1967,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 @@ -1997,12 +1997,12 @@ Please close the other one first. 대기중 - + Are you sure you want to quit? 정말로 종료하시겠습니까? - + '%1' was removed. 'xxx.avi' was removed. '%1' 가 삭제되었습니다. @@ -2044,12 +2044,12 @@ Please close the other one first. 이미 연결 된 포트: %1 - + All downloads were paused. 모든 다운로드가 멈추었습니다. - + '%1' paused. xxx.avi paused. '%1'가 정지 되었습니다. @@ -2061,30 +2061,30 @@ Please close the other one first. 연결중... - + All downloads were resumed. 모든 다운로드가 다시 시작되었습니다. - + '%1' resumed. e.g: xxx.avi resumed. '%1' 가 다운로드를 다시 시작되었습니다. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1가 다운로드를 완료하였습니다. - + I/O Error i.e: Input/Output Error I/O 에러 - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused %1을 사용하려고 하던 중 오류가 발생했습니다. 디스크 용량이 꽉찼고 다운로드가 중지되었습니다 @@ -2096,23 +2096,23 @@ Please close the other one first. 오류 발생 (디스크가 꽉찼습니까?), '%1'가 정지 되었습니다. - + Connection Status: 연결 상태: - + Online 온라인 - + Firewalled? i.e: Behind a firewall/router? 방화벽이 설치되어있습니까? - + No incoming connections... 받는 연결이 없습니다... @@ -2144,66 +2144,66 @@ Please close the other one first. '%1'을 다운 중입니다, 잠시 기다려 주세요... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. 오류 발생 (디스크가 꽉찼습니까?), '%1'가 정지 되었습니다. - + Search 검색 - + RSS - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 큐비토런트는 다음 포트을 사용하고 있습니다: %1 - + DHT support [ON], port: %1 DHT 지원 [사용함], 포트: %1 - + DHT support [OFF] DHT 지원 [사용안함] - + PeX support [ON] Pes 지원 [사용함] - + PeX support [OFF] Pes 지원 [사용안함] - + The download list is not empty. Are you sure you want to quit qBittorrent? 다운로드 리스트가 파일이 있습니다. 큐비토런트를 종료하시겠습니까? - + Downloads 다운로드 - + Are you sure you want to delete the selected item(s) in finished list? 현재 완료목록에서 선택된 파일을 지우시겠습니까? - + UPnP support [ON] UPnp 지원 [사용함] @@ -2213,17 +2213,17 @@ Are you sure you want to quit qBittorrent? 허락없이 저작권이 있는 자료를 공유하는 것은 법에 저촉됩니다. - + Encryption support [ON] 암호화(Encryption) 지원 [사용함] - + Encryption support [FORCED] 암호화(Encryption) 지원 [강압적으로 사용] - + Encryption support [OFF] 암호화(Encryption) 지원 [사용안함] @@ -2239,30 +2239,30 @@ Are you sure you want to quit qBittorrent? 비율 - + Alt+1 shortcut to switch to first tab - + Alt+2 shortcut to switch to second tab - + Alt+4 shortcut to switch to fourth tab - + Url download error Url 다운로드 오류 - + Couldn't download file at url: %1, reason: %2. 다음 주소(Url)에서 파일을 다운로드할수 없습니다: %1, 이유:%2. @@ -2272,17 +2272,17 @@ Are you sure you want to quit qBittorrent? 토렌트 %1는 빨리 이어받기가 사용될수 없습니다, 확인중입니다... - + Are you sure you want to delete the selected item(s) from download list and from hard drive? 다운로드 목록에서 선택된 파일을 하드 드라이버에서도 지우시겠습니까? - + Are you sure you want to delete the selected item(s) from finished list and from hard drive? 완료 목록에서 선택된 파일을 하드 드라이버에서도 지우시겠습니까? - + '%1' was removed permanently. 'xxx.avi' was removed permanently. '%1' 는 영구삭제 되었습니다. @@ -2293,50 +2293,50 @@ Are you sure you want to quit qBittorrent? 다음 Url 완전체(Url seed)의 검색이 실패하였습니다: %1, 관련내용: %2 - + Alt+3 shortcut to switch to third tab - + Ctrl+F shortcut to switch to search tab - + UPnP support [OFF] UPnP 지원 [사용안함] - + NAT-PMP support [ON] NAT-PMP 지원 [사용함] - + NAT-PMP support [OFF] NAT-PMP 지원 [사용안함] - + Local Peer Discovery [ON] Local Peer Discovery (로컬 네트웍크내 공유자 찾기) [사용함] - + Local Peer Discovery support [OFF] Local Peer Discovery (로컬 네트웍크내 공유자 찾기) [사용안함] - + '%1' was removed because its ratio reached the maximum value you set. %1 is a file name 사용자께거 지정하신 할당율에 도달하였기에 '%1'는(은) 목록에서 삭제되었습니다. - + qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s) %1 is qBittorrent version 큐비토런트 버젼: %1 (DL: %2KiB/s, UP: %3KiB/s) diff --git a/src/lang/qbittorrent_nb.ts b/src/lang/qbittorrent_nb.ts index e068954d7..148436003 100644 --- a/src/lang/qbittorrent_nb.ts +++ b/src/lang/qbittorrent_nb.ts @@ -1148,7 +1148,7 @@ Copyright © 2006 av Christophe Dumez<br> GUI - + Open Torrent Files Åpne torrentfiler @@ -1163,22 +1163,22 @@ Copyright © 2006 av Christophe Dumez<br> Ønsker du å slette alle filene in nedlastingslisten? - + &Yes &Ja - + &No &Nei - + Are you sure you want to delete the selected item(s) in download list? Ønsker du å slette valgt(e) element(er) i nedlastingslisten? - + Finished Ferdig @@ -1228,7 +1228,7 @@ Copyright © 2006 av Christophe Dumez<br> Klarte ikke å opprette mappen: - + Torrent Files Torrentfiler @@ -1282,7 +1282,7 @@ Copyright © 2006 av Christophe Dumez<br> qBittorrent - + Are you sure? -- qBittorrent Er du sikker? -- qBittorrent @@ -1523,7 +1523,7 @@ Vennligst avslutt denne først. Ønsker du å slette valgte element(er) i nedlastningslisten, og fra lagringsenheten? - + Download finished Nedlastingen er fullført @@ -1544,23 +1544,23 @@ Vennligst avslutt denne først. Lese/Skrive feil - + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - + Connection status: Tilkoblingsstatus: - + Offline Frakoblet - + No peers found... Ingen tjenere funnet... @@ -1625,18 +1625,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 @@ -1660,12 +1660,12 @@ Vennligst avslutt denne først. Laster ikke ned - + Are you sure you want to quit? Ønsker du å avslutte qBittorrent? - + '%1' was removed. 'xxx.avi' was removed. '%1' ble fjernet. @@ -1707,12 +1707,12 @@ Vennligst avslutt denne først. Lytter på port: %1 - + All downloads were paused. Alle nedlastinger ble pauset. - + '%1' paused. xxx.avi paused. '%1' pauset. @@ -1724,30 +1724,30 @@ Vennligst avslutt denne først. Kobler til... - + All downloads were resumed. Alle nedlastinger ble gjenopptatt. - + '%1' resumed. e.g: xxx.avi resumed. '%1' gjenopptatt. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 er ferdig nedlastet. - + I/O Error i.e: Input/Output Error Lese/Skrive feil - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused Det oppsto en feil ved lesing eller skriving til %1. Disken er mest sannsynelig full, nedlastingen har blitt pauset @@ -1759,23 +1759,23 @@ Vennligst avslutt denne først. Det har oppstått en feil (full disk?), '%1' er pauset. - + Connection Status: Tilkoblingsstatus: - + Online Tilkoblet - + Firewalled? i.e: Behind a firewall/router? Beskyttet av en brannmur? - + No incoming connections... Ingen innkommende tilkoblinger... @@ -1807,172 +1807,172 @@ Vennligst avslutt denne først. Laster ned '%1'... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Det har oppstått en feil (full disk?), '%1' er pauset. - + Search Søk - + RSS - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 - + DHT support [ON], port: %1 - + DHT support [OFF] - + PeX support [ON] - + PeX support [OFF] - + The download list is not empty. Are you sure you want to quit qBittorrent? - + Downloads - + Are you sure you want to delete the selected item(s) in finished list? - + UPnP support [ON] - + Encryption support [ON] - + Encryption support [FORCED] - + Encryption support [OFF] - + Alt+1 shortcut to switch to first tab - + Alt+2 shortcut to switch to second tab - + Alt+4 shortcut to switch to fourth tab - + Url download error - + Couldn't download file at url: %1, reason: %2. - + Are you sure you want to delete the selected item(s) from download list and from hard drive? - + Are you sure you want to delete the selected item(s) from finished list and from hard drive? - + '%1' was removed permanently. 'xxx.avi' was removed permanently. - + Alt+3 shortcut to switch to third tab - + Ctrl+F shortcut to switch to search tab - + UPnP support [OFF] - + NAT-PMP support [ON] - + NAT-PMP support [OFF] - + Local Peer Discovery [ON] - + Local Peer Discovery support [OFF] - + '%1' was removed because its ratio reached the maximum value you set. %1 is a file name - + qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s) %1 is qBittorrent version diff --git a/src/lang/qbittorrent_nl.ts b/src/lang/qbittorrent_nl.ts index 9a1de861c..fc1809f02 100644 --- a/src/lang/qbittorrent_nl.ts +++ b/src/lang/qbittorrent_nl.ts @@ -1407,7 +1407,7 @@ Copyright 2006 door Christophe Dumez<br> gestart. - + qBittorrent qBittorrent @@ -1427,12 +1427,12 @@ Copyright 2006 door Christophe Dumez<br> UP snelheid: - + Open Torrent Files Open Torrent bestanden - + Torrent Files Torrent bestanden @@ -1478,7 +1478,7 @@ Copyright 2006 door Christophe Dumez<br> Dit bestand is corrupt of is geen torrent. - + Are you sure? -- qBittorrent Weet u het zeker? -- qBittorrent @@ -1488,12 +1488,12 @@ Copyright 2006 door Christophe Dumez<br> Weet u zeker dat u alle bestanden uit de downloadlijst wilt verwijderen? - + &Yes &Ja - + &No &Nee @@ -1503,7 +1503,7 @@ Copyright 2006 door Christophe Dumez<br> Downloadlijst leeg gemaakt. - + Are you sure you want to delete the selected item(s) in download list? Weet u zeker dat u de geselecteerde bestanden uit de downloadlijst wilt verwijderen? @@ -1587,7 +1587,7 @@ Copyright 2006 door Christophe Dumez<br> /s - + Finished Klaar @@ -1853,7 +1853,7 @@ Stop het eerste proccess eerst. Overdrachten - + Download finished Download afgerond @@ -1879,23 +1879,23 @@ Stop het eerste proccess eerst. Weet u zeker dat u de geselecteerde onderdelen in de download lijst en van harde schijf wil verwijderen? - + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - + Connection status: Verbindingsstatus: - + Offline Offline - + No peers found... Geen peers gevonden... @@ -1960,13 +1960,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 @@ -1990,12 +1990,12 @@ Stop het eerste proccess eerst. Stilstaand - + Are you sure you want to quit? Weet u zeker dat u wilt afsluiten? - + '%1' was removed. 'xxx.avi' was removed. '%1' is verwijderd. @@ -2037,12 +2037,12 @@ Stop het eerste proccess eerst. Aan het luisteren op poort: %1 - + All downloads were paused. Alle downloads gepauzeerd. - + '%1' paused. xxx.avi paused. '%1' gepauzeerd. @@ -2054,52 +2054,52 @@ Stop het eerste proccess eerst. Verbinding maken... - + All downloads were resumed. Alle downloads hervat. - + '%1' resumed. e.g: xxx.avi resumed. '%1' hervat. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 is klaar met downloaden. - + I/O Error i.e: Input/Output Error I/O Fout - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused Een fout is opgetreden tijdens het lezen of schrijven van %1. De schijf is waarschijnlijk vol, de download is gepauzeerd - + Connection Status: Verbindingsstatus: - + Online Online - + Firewalled? i.e: Behind a firewall/router? Geblokkeerd? - + No incoming connections... Geen inkomende verbindingen... @@ -2131,173 +2131,173 @@ Stop het eerste proccess eerst. Bezig met downloaden van '%1', even geduld alstublieft... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Er is een fout opgetreden (schijf vol?), '%1' gepauzeerd. - + Search Zoeken - + RSS RSS - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 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] - + The download list is not empty. Are you sure you want to quit qBittorrent? De downloadlijst is niet leeg. Weet u zeker dat u qBittorrent wilt afsluiten? - + Downloads Downloads - + Are you sure you want to delete the selected item(s) in finished list? Weet u zeker dat u de geselecteerde item(s) wilt verwijderen van de voltooidlijst? - + UPnP support [ON] UPnP ondersteuning [AAN] - + Encryption support [ON] Encryptie ondersteuning [AAN] - + Encryption support [FORCED] Encryptie ondersteuning [GEFORCEERD] - + Encryption support [OFF] Encryptie ondersteuning [UIT] - + Alt+1 shortcut to switch to first tab Alt+1 - + Alt+2 shortcut to switch to second tab Alt+2 - + Alt+4 shortcut to switch to fourth tab Alt+4 - + Url download error Url download fout - + Couldn't download file at url: %1, reason: %2. Kon bestand niet downloaden vanaf url: %1, reden: %2. - + Are you sure you want to delete the selected item(s) from download list and from hard drive? Weet u zeker dat u de geselecteerde item(s) wilt verwijderen van de downloadlijst en de harde schijf? - + Are you sure you want to delete the selected item(s) from finished list and from hard drive? Weet u zeker dat u de geselecteerde item(s) wilt verwijderen van de voltooidlijst en de harde schijf? - + '%1' was removed permanently. 'xxx.avi' was removed permanently. '%1' is permanent verwijderd. - + Alt+3 shortcut to switch to third tab Alt+3 - + Ctrl+F shortcut to switch to search tab Ctrl+F - + UPnP support [OFF] UPnP ondersteuning [UIT] - + NAT-PMP support [ON] NAT-PMP ondersteuning [AAN] - + NAT-PMP support [OFF] NAT-PMP ondersteuning [UIT] - + Local Peer Discovery [ON] Local Peer Discovery [AAN] - + Local Peer Discovery support [OFF] Local Peer Discovery ondersteuning [UIT] - + '%1' was removed because its ratio reached the maximum value you set. %1 is a file name '%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) diff --git a/src/lang/qbittorrent_pl.ts b/src/lang/qbittorrent_pl.ts index b7920a094..eeda6d095 100644 --- a/src/lang/qbittorrent_pl.ts +++ b/src/lang/qbittorrent_pl.ts @@ -1411,12 +1411,12 @@ Wszystkie prawa zastrzeżone © 2006 Christophe Dumez<br> Prędkość UP: - + Open Torrent Files Otwórz pliki Torrent - + Torrent Files Pliki Torrent @@ -1467,12 +1467,12 @@ Wszystkie prawa zastrzeżone © 2006 Christophe Dumez<br> Czy chcesz usunać wszystkie pliki z listy pobierania? - + &Yes &Tak - + &No &Nie @@ -1482,7 +1482,7 @@ Wszystkie prawa zastrzeżone © 2006 Christophe Dumez<br> List pobierania wyczyszczona. - + Are you sure you want to delete the selected item(s) in download list? Czy chcesz usunąć wybrane elementy z listy pobierania? @@ -1530,7 +1530,7 @@ Wszystkie prawa zastrzeżone © 2006 Christophe Dumez<br> wznowiony. - + Finished Ukończone @@ -1573,12 +1573,12 @@ Wszystkie prawa zastrzeżone © 2006 Christophe Dumez<br> qBittorrent - + qBittorrent qBittorrent - + Are you sure? -- qBittorrent Jesteś pewny? -- qBittorrent @@ -1903,7 +1903,7 @@ Zamknij najpierw okno podglądu. Czy na pewno chcesz usunąć wybrany element z listy i z dysku? - + Download finished Pobieranie zakończone @@ -1919,23 +1919,23 @@ Zamknij najpierw okno podglądu. Wyszukiwarka - + qBittorrent %1 e.g: qBittorrent v0.x qBittorent %1 - + Connection status: Status połączenia: - + Offline Niepołączony - + No peers found... Nie znaleziono peerów... @@ -2000,13 +2000,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/ @@ -2030,12 +2030,12 @@ Zamknij najpierw okno podglądu. Zablokowany - + Are you sure you want to quit? Czy na pewno chcesz zakończyć aplikację? - + '%1' was removed. 'xxx.avi' was removed. '%1' został usunięty. @@ -2077,12 +2077,12 @@ Zamknij najpierw okno podglądu. Nasłuchuje na porcie: %1 - + All downloads were paused. Wszystkie zadania pobierania wstrzymane. - + '%1' paused. xxx.avi paused. '%1' wstrzymany. @@ -2094,30 +2094,30 @@ Zamknij najpierw okno podglądu. Łączenie... - + All downloads were resumed. Wszystkie zadania pobierania wzniowione. - + '%1' resumed. e.g: xxx.avi resumed. '%1' wznowiony. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 został pobrany. - + I/O Error i.e: Input/Output Error Błąd We/Wy - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused Wystąpił błąd podczas próby odczytu lub zapisu %1. Prawdopodobnie brak miejsca na dysku, zadania pobierania zostały wstrzymane @@ -2129,23 +2129,23 @@ Zamknij najpierw okno podglądu. Wystąpił błąd (brak miejsca?), '%1' wstrzymany. - + Connection Status: Status połączenia: - + Online Połączony - + Firewalled? i.e: Behind a firewall/router? Zablokowany? - + No incoming connections... Brak połączeń przychodzących... @@ -2177,56 +2177,56 @@ Zamknij najpierw okno podglądu. Pobieranie '%1', proszę czekać... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Wystąpił błąd (brak miejsca?), '%1' wstrzymany. - + Search Szukaj - + RSS RSS - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 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Ł] - + The download list is not empty. Are you sure you want to quit qBittorrent? Lista pobierania nie jest pusta. Czy napewno zamknąć qBittorrent? - + Downloads Pobieranie @@ -2236,12 +2236,12 @@ Czy napewno zamknąć qBittorrent? Czy napewno usunąć wybrane pozycje z listy zakończonych z twardego dysku? - + Are you sure you want to delete the selected item(s) in finished list? Czy napewno usunąć wybrane pozycje z listy zakończonych? - + UPnP support [ON] Wsparcie UPnP [WŁ] @@ -2251,17 +2251,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Ł] @@ -2277,13 +2277,13 @@ Czy napewno zamknąć qBittorrent? Ratio - + Alt+1 shortcut to switch to first tab Alt+1 - + Alt+2 shortcut to switch to second tab Alt+2 @@ -2295,18 +2295,18 @@ Czy napewno zamknąć qBittorrent? Alt+3, Ctrl+F - + Alt+4 shortcut to switch to fourth tab Alt+4 - + Url download error Błąd pobierania URL - + Couldn't download file at url: %1, reason: %2. Nie można pobrać pliku z url: %1, powód: %2. @@ -2316,17 +2316,17 @@ Czy napewno zamknąć qBittorrent? Szybkie wznowienie danych zostało odrzucone przez torrent %1, sprawdzam ponownie... - + Are you sure you want to delete the selected item(s) from download list and from hard drive? Czy chcesz usunąć wybrane elementy z listy pobierania i z twardego dysku? - + Are you sure you want to delete the selected item(s) from finished list and from hard drive? Czy chcesz usunąć wybrane elementy z listy ukończonych i z twardego dysku? - + '%1' was removed permanently. 'xxx.avi' was removed permanently. '%1' został całkowicie usunięty. @@ -2337,50 +2337,50 @@ Czy napewno zamknąć qBittorrent? Błąd wyszukiwania url seeda dla url:%1, wiadomość: %2 - + Alt+3 shortcut to switch to third tab Alt+3 - + Ctrl+F shortcut to switch to search tab Ctrl+F - + UPnP support [OFF] Obsługa UPnP [WYŁ] - + NAT-PMP support [ON] Obsługa NAT-PMP [WŁ] - + NAT-PMP support [OFF] Obsługa NAT-PMP [WYŁ] - + Local Peer Discovery [ON] Local Peer Discovery [WŁ] - + Local Peer Discovery support [OFF] Obsługa Local Peer Discovery [WYŁ] - + '%1' was removed because its ratio reached the maximum value you set. %1 is a file name '%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) diff --git a/src/lang/qbittorrent_pt.ts b/src/lang/qbittorrent_pt.ts index 922fbfc5b..88c94acd7 100644 --- a/src/lang/qbittorrent_pt.ts +++ b/src/lang/qbittorrent_pt.ts @@ -1259,7 +1259,7 @@ Copyright ©2007 por Christophe Dumez<br> GUI - + Open Torrent Files Abrir Arquivos Torrent @@ -1279,17 +1279,17 @@ Copyright ©2007 por Christophe Dumez<br> Tem certeza que deseja apagar todos os arquivos na lista de downloads? - + &Yes &Sim - + &No &Não - + Are you sure you want to delete the selected item(s) in download list? Tem certeza que deseja apagar o(s) arquivo(s) selecionado(s) na lista de downloads? @@ -1304,7 +1304,7 @@ Copyright ©2007 por Christophe Dumez<br> iniciado - + Finished Concluído @@ -1359,7 +1359,7 @@ Copyright ©2007 por Christophe Dumez<br> Não pode criar o diretório: - + Torrent Files Arquivos Torrent @@ -1413,12 +1413,12 @@ Copyright ©2007 por Christophe Dumez<br> qBittorrent - + qBittorrent qBittorrent - + Are you sure? -- qBittorrent Tem certeza? -- qBittorrent @@ -1672,7 +1672,7 @@ Por favor feche o outro primeiro. Transferências - + Download finished Download finalizado @@ -1703,23 +1703,23 @@ Por favor feche o outro primeiro. Erro de Entrada/Saída - + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - + Connection status: Estado da conexão: - + Offline Offline - + No peers found... Peers não encontrados... @@ -1784,13 +1784,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 @@ -1814,12 +1814,12 @@ Por favor feche o outro primeiro. Parado - + Are you sure you want to quit? Você tem certeza que quer sair? - + '%1' was removed. 'xxx.avi' was removed. '%1' foi deletado. @@ -1861,12 +1861,12 @@ Por favor feche o outro primeiro. Escutando a porta: %1 - + All downloads were paused. Todos os downloads pausados. - + '%1' paused. xxx.avi paused. '%1' pausado. @@ -1878,30 +1878,30 @@ Por favor feche o outro primeiro. Conectando... - + All downloads were resumed. Todos os downloads foram resumidos. - + '%1' resumed. e.g: xxx.avi resumed. '%1' resumido. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 download finalizado. - + I/O Error i.e: Input/Output Error Erro de Entrada/Saída - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused Ocorreu um erro quando tentava ler ou escrever %1. Provavelmente o seu disco está cheio, o download foi pausado @@ -1913,23 +1913,23 @@ Por favor feche o outro primeiro. Ocorreu um erro (disco cheio?), '%1' pausado. - + Connection Status: Estado da conexão: - + Online Online - + Firewalled? i.e: Behind a firewall/router? Sob firewall? - + No incoming connections... Sem conexão... @@ -1961,66 +1961,66 @@ Por favor feche o outro primeiro. baixando '%1', por favor espere... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Ocorreu um erro (disco cheio?), '%1' pausado. - + Search Busca - + RSS RSS - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 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] - + The download list is not empty. Are you sure you want to quit qBittorrent? A lista de download não está vazia. Deseja mesmo sair do qBittorrent? - + Downloads Downloads - + Are you sure you want to delete the selected item(s) in finished list? Quer mesmo deletar os ítems selecionados na lista de finalizados? - + UPnP support [ON] Suporte UPnP [Ligado] @@ -2030,17 +2030,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] @@ -2056,13 +2056,13 @@ Deseja mesmo sair do qBittorrent? Taxa - + Alt+1 shortcut to switch to first tab Alt+1 - + Alt+2 shortcut to switch to second tab Alt+2 @@ -2074,18 +2074,18 @@ Deseja mesmo sair do qBittorrent? Alt+3, Ctrl+F - + Alt+4 shortcut to switch to fourth tab Alt+4 - + Url download error Erro no download da URL - + Couldn't download file at url: %1, reason: %2. Não pude baixar arquivo em: %1, motivo: %2. @@ -2095,17 +2095,17 @@ Deseja mesmo sair do qBittorrent? Resumo rápido rejeitado para o torrent %1, tente novamente... - + Are you sure you want to delete the selected item(s) from download list and from hard drive? Quer mesmo deletar o(s) arquivo(s) selecionado(s) da lista e do seu HD ? - + Are you sure you want to delete the selected item(s) from finished list and from hard drive? Quer mesmo deletar o(s) arquivo(s) selecionado(s) da lista finalizada e do seu HD ? - + '%1' was removed permanently. 'xxx.avi' was removed permanently. '%1' foi removido permanentemente. @@ -2116,50 +2116,50 @@ Deseja mesmo sair do qBittorrent? Url falhou para: %1, mensagem: %2 - + Alt+3 shortcut to switch to third tab Alt+3 - + Ctrl+F shortcut to switch to search tab Ctrl+F - + UPnP support [OFF] Suporte UPnP [desligado] - + NAT-PMP support [ON] Suporte NAT-PMP [ligado] - + NAT-PMP support [OFF] Suporte NAT-PMP [desligado] - + Local Peer Discovery [ON] Peer discovery [ligado] - + Local Peer Discovery support [OFF] Peer discovery [desligado] - + '%1' was removed because its ratio reached the maximum value you set. %1 is a file name '%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) diff --git a/src/lang/qbittorrent_pt_BR.ts b/src/lang/qbittorrent_pt_BR.ts index 922fbfc5b..88c94acd7 100644 --- a/src/lang/qbittorrent_pt_BR.ts +++ b/src/lang/qbittorrent_pt_BR.ts @@ -1259,7 +1259,7 @@ Copyright ©2007 por Christophe Dumez<br> GUI - + Open Torrent Files Abrir Arquivos Torrent @@ -1279,17 +1279,17 @@ Copyright ©2007 por Christophe Dumez<br> Tem certeza que deseja apagar todos os arquivos na lista de downloads? - + &Yes &Sim - + &No &Não - + Are you sure you want to delete the selected item(s) in download list? Tem certeza que deseja apagar o(s) arquivo(s) selecionado(s) na lista de downloads? @@ -1304,7 +1304,7 @@ Copyright ©2007 por Christophe Dumez<br> iniciado - + Finished Concluído @@ -1359,7 +1359,7 @@ Copyright ©2007 por Christophe Dumez<br> Não pode criar o diretório: - + Torrent Files Arquivos Torrent @@ -1413,12 +1413,12 @@ Copyright ©2007 por Christophe Dumez<br> qBittorrent - + qBittorrent qBittorrent - + Are you sure? -- qBittorrent Tem certeza? -- qBittorrent @@ -1672,7 +1672,7 @@ Por favor feche o outro primeiro. Transferências - + Download finished Download finalizado @@ -1703,23 +1703,23 @@ Por favor feche o outro primeiro. Erro de Entrada/Saída - + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - + Connection status: Estado da conexão: - + Offline Offline - + No peers found... Peers não encontrados... @@ -1784,13 +1784,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 @@ -1814,12 +1814,12 @@ Por favor feche o outro primeiro. Parado - + Are you sure you want to quit? Você tem certeza que quer sair? - + '%1' was removed. 'xxx.avi' was removed. '%1' foi deletado. @@ -1861,12 +1861,12 @@ Por favor feche o outro primeiro. Escutando a porta: %1 - + All downloads were paused. Todos os downloads pausados. - + '%1' paused. xxx.avi paused. '%1' pausado. @@ -1878,30 +1878,30 @@ Por favor feche o outro primeiro. Conectando... - + All downloads were resumed. Todos os downloads foram resumidos. - + '%1' resumed. e.g: xxx.avi resumed. '%1' resumido. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 download finalizado. - + I/O Error i.e: Input/Output Error Erro de Entrada/Saída - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused Ocorreu um erro quando tentava ler ou escrever %1. Provavelmente o seu disco está cheio, o download foi pausado @@ -1913,23 +1913,23 @@ Por favor feche o outro primeiro. Ocorreu um erro (disco cheio?), '%1' pausado. - + Connection Status: Estado da conexão: - + Online Online - + Firewalled? i.e: Behind a firewall/router? Sob firewall? - + No incoming connections... Sem conexão... @@ -1961,66 +1961,66 @@ Por favor feche o outro primeiro. baixando '%1', por favor espere... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Ocorreu um erro (disco cheio?), '%1' pausado. - + Search Busca - + RSS RSS - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 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] - + The download list is not empty. Are you sure you want to quit qBittorrent? A lista de download não está vazia. Deseja mesmo sair do qBittorrent? - + Downloads Downloads - + Are you sure you want to delete the selected item(s) in finished list? Quer mesmo deletar os ítems selecionados na lista de finalizados? - + UPnP support [ON] Suporte UPnP [Ligado] @@ -2030,17 +2030,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] @@ -2056,13 +2056,13 @@ Deseja mesmo sair do qBittorrent? Taxa - + Alt+1 shortcut to switch to first tab Alt+1 - + Alt+2 shortcut to switch to second tab Alt+2 @@ -2074,18 +2074,18 @@ Deseja mesmo sair do qBittorrent? Alt+3, Ctrl+F - + Alt+4 shortcut to switch to fourth tab Alt+4 - + Url download error Erro no download da URL - + Couldn't download file at url: %1, reason: %2. Não pude baixar arquivo em: %1, motivo: %2. @@ -2095,17 +2095,17 @@ Deseja mesmo sair do qBittorrent? Resumo rápido rejeitado para o torrent %1, tente novamente... - + Are you sure you want to delete the selected item(s) from download list and from hard drive? Quer mesmo deletar o(s) arquivo(s) selecionado(s) da lista e do seu HD ? - + Are you sure you want to delete the selected item(s) from finished list and from hard drive? Quer mesmo deletar o(s) arquivo(s) selecionado(s) da lista finalizada e do seu HD ? - + '%1' was removed permanently. 'xxx.avi' was removed permanently. '%1' foi removido permanentemente. @@ -2116,50 +2116,50 @@ Deseja mesmo sair do qBittorrent? Url falhou para: %1, mensagem: %2 - + Alt+3 shortcut to switch to third tab Alt+3 - + Ctrl+F shortcut to switch to search tab Ctrl+F - + UPnP support [OFF] Suporte UPnP [desligado] - + NAT-PMP support [ON] Suporte NAT-PMP [ligado] - + NAT-PMP support [OFF] Suporte NAT-PMP [desligado] - + Local Peer Discovery [ON] Peer discovery [ligado] - + Local Peer Discovery support [OFF] Peer discovery [desligado] - + '%1' was removed because its ratio reached the maximum value you set. %1 is a file name '%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) diff --git a/src/lang/qbittorrent_ro.ts b/src/lang/qbittorrent_ro.ts index 3477c43bc..f63c026a2 100644 --- a/src/lang/qbittorrent_ro.ts +++ b/src/lang/qbittorrent_ro.ts @@ -1269,7 +1269,7 @@ Copyright © 2006 by Christophe Dumez<br> GUI - + Open Torrent Files Deschide Fişiere Torrent @@ -1289,17 +1289,17 @@ Copyright © 2006 by Christophe Dumez<br> Sunteţi siguri să ştergeţi toate fişierele din lista de download? - + &Yes &Yes - + &No &No - + Are you sure you want to delete the selected item(s) in download list? Sunteţi siguri să ştergeţi itemii selectaţi din lista download? @@ -1314,7 +1314,7 @@ Copyright © 2006 by Christophe Dumez<br> început - + Finished Finişat @@ -1369,7 +1369,7 @@ Copyright © 2006 by Christophe Dumez<br> Nu pot crea directoriul: - + Torrent Files Fişiere Torrent @@ -1423,12 +1423,12 @@ Copyright © 2006 by Christophe Dumez<br> qBittorrent - + qBittorrent qBittorrent - + Are you sure? -- qBittorrent Sunteţi siguri? -- qBittorrent @@ -1715,7 +1715,7 @@ Vă rugăm să-l opriţi. Doriti să ştergeţi item(ii) selectaţi? - + Download finished Descărcarea terminată @@ -1736,23 +1736,23 @@ Vă rugăm să-l opriţi. Eroare de intrare/eşire - + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - + Connection status: Starea conectării: - + Offline Deconectat - + No peers found... Nici un peer nu a fost găsit... @@ -1799,13 +1799,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 @@ -1829,12 +1829,12 @@ Vă rugăm să-l opriţi. Oprit - + Are you sure you want to quit? Doriti să ieşiţi ? - + '%1' was removed. 'xxx.avi' was removed. '%1' a fost şters. @@ -1846,12 +1846,12 @@ Vă rugăm să-l opriţi. Nimic - + All downloads were paused. Toate descărcările au fost pauzate. - + '%1' paused. xxx.avi paused. '%1' pauzat. @@ -1863,52 +1863,52 @@ Vă rugăm să-l opriţi. Conectare... - + All downloads were resumed. Toate descărcările au fost reluate. - + '%1' resumed. e.g: xxx.avi resumed. '%1' reluat. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 a fost terminat de descărcat. - + I/O Error i.e: Input/Output Error Eroare de intrare/eşire - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused 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 - + Firewalled? i.e: Behind a firewall/router? Firewalled? - + No incoming connections... Nu sunt conectări din exterior... @@ -1919,173 +1919,173 @@ Vă rugăm să-l opriţi. Rezultate - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Eroare a fost detectată(discul plin?), '%1' pauzad. - + Search Caută - + RSS RSS - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 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] - + The download list is not empty. Are you sure you want to quit qBittorrent? Lista de descărcare nu este vidă. Doriţi să ieşiţi din qBittorrent? - + Downloads Descărcări - + Are you sure you want to delete the selected item(s) in finished list? Doriţi să ştergeţi itemii selectaţi ? - + UPnP support [ON] 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] - + Alt+1 shortcut to switch to first tab Alt+1 - + Alt+2 shortcut to switch to second tab Alt+2 - + Alt+4 shortcut to switch to fourth tab Alt+4 - + Url download error Eroare la descărcare URL - + Couldn't download file at url: %1, reason: %2. Nu pot descărca fisierul de pe url: %1, motivul: %2. - + Are you sure you want to delete the selected item(s) from download list and from hard drive? Doriţi să ştergeţi itemii selectaţi din listă si de pe hard disk ? - + Are you sure you want to delete the selected item(s) from finished list and from hard drive? Doriţi să ştergeţi itemii selectaţi din listă si de pe hard disk ? - + '%1' was removed permanently. 'xxx.avi' was removed permanently. '%1' a fost şters pentru totdeauna. - + Alt+3 shortcut to switch to third tab Alt+3 - + Ctrl+F shortcut to switch to search tab Ctrl+F - + UPnP support [OFF] suport de UPnP[Dezactivat] - + NAT-PMP support [ON] suport NAT-PMP[Activat] - + NAT-PMP support [OFF] suport NAT-PMP[Dezactivat] - + Local Peer Discovery [ON] Căutare peer locali[Activat] - + Local Peer Discovery support [OFF] Căutarea peer locali[Dezactivat] - + '%1' was removed because its ratio reached the maximum value you set. %1 is a file name '%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) diff --git a/src/lang/qbittorrent_ru.ts b/src/lang/qbittorrent_ru.ts index 6892c5855..0691afdc7 100644 --- a/src/lang/qbittorrent_ru.ts +++ b/src/lang/qbittorrent_ru.ts @@ -1335,7 +1335,7 @@ Copyright © 2006 by Christophe Dumez<br> начат. - + qBittorrent qBittorrent @@ -1355,12 +1355,12 @@ Copyright © 2006 by Christophe Dumez<br> Скорость Загр.: - + Open Torrent Files Открыть файлы Torrent - + Torrent Files Файлы Torrent @@ -1406,7 +1406,7 @@ Copyright © 2006 by Christophe Dumez<br> Этот файл либо поврежден, либо не torrent типа. - + Are you sure? -- qBittorrent Вы уверены? -- qBittorrent @@ -1416,12 +1416,12 @@ Copyright © 2006 by Christophe Dumez<br> Вы уверены что хотите удалить все файлы из списка закачек? - + &Yes &Да - + &No &Нет @@ -1431,7 +1431,7 @@ Copyright © 2006 by Christophe Dumez<br> Список закачек очищен. - + Are you sure you want to delete the selected item(s) in download list? Вы уверены что хотите удалить выделенные пункты из списка закачек? @@ -1515,7 +1515,7 @@ Copyright © 2006 by Christophe Dumez<br> - + Finished Закончено @@ -1810,7 +1810,7 @@ Please close the other one first. Вы действительно хотите удалить выбранный(-е) элемент(ы) из списка скачек и с жесткого диска? - + Download finished Скачивание завершено @@ -1826,23 +1826,23 @@ Please close the other one first. Поисковый движок - + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - + Connection status: Состояние связи: - + Offline Не в сети - + No peers found... Не найдено пиров... @@ -1907,13 +1907,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/с @@ -1937,12 +1937,12 @@ Please close the other one first. Простаивает - + Are you sure you want to quit? Вы действительно хотите выйти? - + '%1' was removed. 'xxx.avi' was removed. '%1' был удален. @@ -1984,12 +1984,12 @@ Please close the other one first. Прослушивание порта: %1 - + All downloads were paused. Все закачки были приостановлены. - + '%1' paused. xxx.avi paused. '%1' приостановлен. @@ -2001,30 +2001,30 @@ Please close the other one first. Подключение... - + All downloads were resumed. Все закачки были запущены. - + '%1' resumed. e.g: xxx.avi resumed. '%1' запущена. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. скачивание %1 завершено. - + I/O Error i.e: Input/Output Error Ошибка ввода/вывода - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused При попытке чтения/записи %1 произошла ошибка. Возможно, на диске не хватает места, закачка приостановлена @@ -2036,23 +2036,23 @@ Please close the other one first. Произошла ошибка (нет места?), '%1' остановлен. - + Connection Status: Состояние связи: - + Online В сети - + Firewalled? i.e: Behind a firewall/router? Файерволл? - + No incoming connections... Нет входящих соединений... @@ -2084,66 +2084,66 @@ Please close the other one first. Скачивание '%1', подождите... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Произошла ошибка (нет места?), '%1' остановлен. - + Search Поиск - + RSS RSS - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 qBittorrent прикреплен на порт: %1 - + DHT support [ON], port: %1 Поддержка DHT [Вкл], порт: %1 - + DHT support [OFF] Поддержка DHT [Выкл] - + PeX support [ON] Поддержка PeX [Вкл] - + PeX support [OFF] Поддержка PeX [Выкл] - + The download list is not empty. Are you sure you want to quit qBittorrent? Список закачек не пуст. Вы хотите выйти из qBittorrent? - + Downloads Закачки - + Are you sure you want to delete the selected item(s) in finished list? Вы уверены что хотите удалить выделенные пункты из списка завершенных? - + UPnP support [ON] Поддержка UPnP [Вкл] @@ -2153,17 +2153,17 @@ Are you sure you want to quit qBittorrent? Осторожнее, раздача материалов защищенных авторскими правами, преследуется по закону. - + Encryption support [ON] Поддержка шифрования [Вкл] - + Encryption support [FORCED] Поддержка шифрования [Принудительно] - + Encryption support [OFF] Поддержка шифрования [Выкл] @@ -2179,13 +2179,13 @@ Are you sure you want to quit qBittorrent? Соотношение - + Alt+1 shortcut to switch to first tab Alt+1 - + Alt+2 shortcut to switch to second tab Alt+2 @@ -2197,18 +2197,18 @@ Are you sure you want to quit qBittorrent? Alt+3, Ctrl+F - + Alt+4 shortcut to switch to fourth tab Alt+4 - + Url download error Ошибка URL скачивания - + Couldn't download file at url: %1, reason: %2. Невозможно скачать файл по URL: %1, причина: %2. @@ -2218,17 +2218,17 @@ Are you sure you want to quit qBittorrent? Быстрое восстановление данных для торрента %1 было невозможно, проверка заново... - + Are you sure you want to delete the selected item(s) from download list and from hard drive? Вы действительно хотите удалить выбранный(-е) элемент(ы) из списка скачек и с жесткого диска? - + Are you sure you want to delete the selected item(s) from finished list and from hard drive? Вы действительно хотите удалить выбранный(-е) элемент(ы) из списка законченных скачек и с жесткого диска? - + '%1' was removed permanently. 'xxx.avi' was removed permanently. '%1' был удален. @@ -2239,50 +2239,50 @@ Are you sure you want to quit qBittorrent? Поиск раздающего Url не удался: %1, сообщение: %2 - + Alt+3 shortcut to switch to third tab Alt+3 - + Ctrl+F shortcut to switch to search tab Ctrl+F - + UPnP support [OFF] Поддержка UPnP [Выкл] - + NAT-PMP support [ON] Поддержка NAT-PMP [Вкл] - + NAT-PMP support [OFF] Поддержка NAT-PMP [Выкл] - + Local Peer Discovery [ON] Обнаружение локальных пиров [Вкл] - + Local Peer Discovery support [OFF] Обнаружение локальных пиров [Выкл] - + '%1' was removed because its ratio reached the maximum value you set. %1 is a file name '%1' был удален, так как его соотношение достигло максимально установленного вами. - + qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s) %1 is qBittorrent version qBittorrent %1 (Скач: %2КиБ/с, Загр: %3КиБ/с) diff --git a/src/lang/qbittorrent_sk.ts b/src/lang/qbittorrent_sk.ts index ab81980a1..03551e646 100644 --- a/src/lang/qbittorrent_sk.ts +++ b/src/lang/qbittorrent_sk.ts @@ -1253,7 +1253,7 @@ Copyright © 2006 by Christophe Dumez<br> GUI - + Open Torrent Files Otvoriť torrent súbory @@ -1273,17 +1273,17 @@ Copyright © 2006 by Christophe Dumez<br> Určite chcete zmazať všetky súbory v zozname sťahovaných? - + &Yes &Áno - + &No &Nie - + Are you sure you want to delete the selected item(s) in download list? Určite chcete zmazať vybrané položky v zozname sťahovaných? @@ -1298,7 +1298,7 @@ Copyright © 2006 by Christophe Dumez<br> spusten - + Finished Dokončené @@ -1353,7 +1353,7 @@ Copyright © 2006 by Christophe Dumez<br> Nebolo možné vytvoriť adresár: - + Torrent Files Torrent súbory @@ -1403,12 +1403,12 @@ Copyright © 2006 by Christophe Dumez<br> qBittorrent - + qBittorrent qBittorrent - + Are you sure? -- qBittorrent Ste si istý? -- qBittorrent @@ -1713,7 +1713,7 @@ Najskôr ho prosím zatvorte. Ste si istý, že chcete zmazať vybrané položky v zozname sťahovaných a na pevnom disku? - + Download finished Sťahovanie dokončené @@ -1734,23 +1734,23 @@ Najskôr ho prosím zatvorte. V/V Chyba - + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - + Connection status: Stav spojenia: - + Offline Offline - + No peers found... Neboli nájdení rovesníci... @@ -1815,13 +1815,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 @@ -1845,12 +1845,12 @@ Najskôr ho prosím zatvorte. Bez pohybu - + Are you sure you want to quit? Ste si istý, že chcete skončiť? - + '%1' was removed. 'xxx.avi' was removed. „%1“ bol odstránený. @@ -1892,12 +1892,12 @@ Najskôr ho prosím zatvorte. Počúvam na porte: %1 - + All downloads were paused. Všetky sťahovania pozastavené. - + '%1' paused. xxx.avi paused. „%1“ pozastavené. @@ -1909,30 +1909,30 @@ Najskôr ho prosím zatvorte. pripája sa... - + All downloads were resumed. Všetky sťahovania obnovené. - + '%1' resumed. e.g: xxx.avi resumed. „%1“ obnovené. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 je stiahnutý. - + I/O Error i.e: Input/Output Error V/V Chyba - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused Vyskytla sa chyba pri pokuse o čítanie alebo zapisovanie do %1. Disk je pravdepodobne plný, sťahovanie bolo pozastavené @@ -1944,23 +1944,23 @@ Najskôr ho prosím zatvorte. Vyskytla sa chyba (plný disk?), „%1“ pozastavené. - + Connection Status: Stav spojenia: - + Online Online - + Firewalled? i.e: Behind a firewall/router? Za firewallom? - + No incoming connections... Žiadne prichádzajúce spojenia... @@ -1992,66 +1992,66 @@ Najskôr ho prosím zatvorte. Sťahuje sa „%1“;, čakajte prosím... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Vyskytla sa chyba (plný disk?), „%1“ pozastavené. - + Search Vyhľadávanie - + RSS - + Downloads Sťahovania - + The download list is not empty. Are you sure you want to quit qBittorrent? Zoznam sťahovaní nie je prázdny. Ste si istý, že chcete ukončiť qBittorrent? - + Are you sure you want to delete the selected item(s) in finished list? Ste si istý, že chcete zmazať vybrané položky zo zoznamu dokončených? - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 qBittorrent sa viaže (bind) na port: %1 - + DHT support [ON], port: %1 Podpora DHT [zapnutá], port: %1 - + DHT support [OFF] Podpora DHT [vypnutá] - + UPnP support [ON] Podpora UPnP [zapnutá] - + PeX support [ON] Podpora PeX [zapnutá] - + PeX support [OFF] Podpora PeX [vypnutá] @@ -2061,17 +2061,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é] @@ -2087,13 +2087,13 @@ Ste si istý, že chcete ukončiť qBittorrent? Pomer - + Alt+1 shortcut to switch to first tab Alt+1 - + Alt+2 shortcut to switch to second tab Alt+2 @@ -2105,18 +2105,18 @@ Ste si istý, že chcete ukončiť qBittorrent? Alt+3, Ctrl+F - + Alt+4 shortcut to switch to fourth tab Alt+4 - + Url download error Chyba sťahovania url - + Couldn't download file at url: %1, reason: %2. Nebolo možné stiahnuť súbor z url: %1, dôvod: %2. @@ -2126,17 +2126,17 @@ Ste si istý, že chcete ukončiť qBittorrent? Rýchle obnovenie torrentu torrent %1 bolo odmietnuté, skúšam znova... - + Are you sure you want to delete the selected item(s) from download list and from hard drive? Ste si istý, že chcete zmazať vybrané položky zo zoznamu sťahovaných a z pevného disku? - + Are you sure you want to delete the selected item(s) from finished list and from hard drive? Ste si istý, že chcete zmazať vybrané položky zo zoznamu dokončených a z pevného disku? - + '%1' was removed permanently. 'xxx.avi' was removed permanently. „%1“ bol permanentne odstránený. @@ -2147,50 +2147,50 @@ Ste si istý, že chcete ukončiť qBittorrent? Vyhľadanie url seedu zlyhalo pre url: %1, správa: %2 - + Alt+3 shortcut to switch to third tab Alt+3 - + Ctrl+F shortcut to switch to search tab Ctrl+F - + UPnP support [OFF] Podpora UPnP [vypnutá] - + NAT-PMP support [ON] Podpora NAT-PMP [zapnutá] - + NAT-PMP support [OFF] Podpora NAT-PMP [vypnutá] - + Local Peer Discovery [ON] Local Peer Discovery [zapnutá] - + Local Peer Discovery support [OFF] Podpora Local Peer Discovery support [vypnutá] - + '%1' was removed because its ratio reached the maximum value you set. %1 is a file name „%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) diff --git a/src/lang/qbittorrent_sv.ts b/src/lang/qbittorrent_sv.ts index 675a8bc43..eb4b8890f 100644 --- a/src/lang/qbittorrent_sv.ts +++ b/src/lang/qbittorrent_sv.ts @@ -895,32 +895,32 @@ i.e: 1200 to 1300 GUI - + Open Torrent Files Öppna Torrent-filer - + &Yes &Ja - + &No &Nej - + Are you sure you want to delete the selected item(s) in download list? Är du säker på att du vill ta bort de markerade post(erna) i hämtningslistan? - + Torrent Files Torrent-filer - + Are you sure? -- qBittorrent Är du säker? -- qBittorrent @@ -937,293 +937,293 @@ Please close the other one first. Stäng den först. - + Download finished Hämtningen är färdig - + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - + Connection status: Anslutningsstatus: - + Offline Frånkopplad - + No peers found... 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 - + Are you sure you want to quit? Är du säker på att du vill avsluta? - + '%1' was removed. 'xxx.avi' was removed. "%1" togs bort. - + All downloads were paused. Alla hämtningar har pausats. - + '%1' paused. xxx.avi paused. "%1" pausad. - + All downloads were resumed. Alla hämtningar har återupptagits. - + '%1' resumed. e.g: xxx.avi resumed. "%1" återupptogs. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 har hämtats färdigt. - + I/O Error i.e: Input/Output Error In/Ut-fel - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused Ett fel inträffade vid försök att läsa eller skriva %1. Disken är antagligen full, hämtningen har pausats - + Connection Status: Anslutningsstatus: - + Online Ansluten - + Firewalled? i.e: Behind a firewall/router? Brandvägg? - + No incoming connections... Inga inkommande anslutningar... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Ett fel inträffade (full disk?), "%1" har pausats. - + Search Sök - + RSS RSS - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 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] - + The download list is not empty. Are you sure you want to quit qBittorrent? Hämtningslistan är inte tom. Är du säker på att du vill avsluta qBittorrent? - + Downloads Hämtningar - + Finished Färdiga - + Are you sure you want to delete the selected item(s) in finished list? Är du säker på att du vill ta bort de markerade färdiga objekt(en) i listan? - + UPnP support [ON] UPnP-stöd [PÅ] - + Encryption support [ON] Krypteringsstöd [PÅ] - + Encryption support [FORCED] Krypteringsstöd [TVINGAD] - + Encryption support [OFF] Krypteringsstöd [AV] - + Alt+1 shortcut to switch to first tab Alt+1 - + Alt+2 shortcut to switch to second tab Alt+2 - + Alt+4 shortcut to switch to fourth tab Alt+4 - + Url download error Fel vid url-hämtning - + Couldn't download file at url: %1, reason: %2. Kunde inte hämta fil från url:en: %1, anledning: %2. - + Are you sure you want to delete the selected item(s) from download list and from hard drive? Är du säker på att du vill ta bort de markerade objekt(en) från hämtningslistan och från hårddisken? - + Are you sure you want to delete the selected item(s) from finished list and from hard drive? Är du säker på att du vill ta bort de markerade färdiga objekt(en) från listan och från hårddisken? - + '%1' was removed permanently. 'xxx.avi' was removed permanently. "%1" togs bort permanent. - + Alt+3 shortcut to switch to third tab Alt+3 - + Ctrl+F shortcut to switch to search tab Ctrl+F - + UPnP support [OFF] UPnP-stöd [AV] - + NAT-PMP support [ON] NAT-PMP-stöd [PÅ] - + NAT-PMP support [OFF] 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] - + '%1' was removed because its ratio reached the maximum value you set. %1 is a file name "%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) diff --git a/src/lang/qbittorrent_tr.ts b/src/lang/qbittorrent_tr.ts index ff77b4092..ee60020f8 100644 --- a/src/lang/qbittorrent_tr.ts +++ b/src/lang/qbittorrent_tr.ts @@ -1307,7 +1307,7 @@ Telif Hakkı © 2006 Christophe Dumez<br> GUI - + Open Torrent Files Torrent Dosyasını Aç @@ -1332,17 +1332,17 @@ Telif Hakkı © 2006 Christophe Dumez<br> Download listesindeki bütün dosyaları silmek istediğinizden emin misiniz? - + &Yes &Evet - + &No &Hayır - + Are you sure you want to delete the selected item(s) in download list? Download listesindeki seçili öğeleri silmek istediğinize emin misiniz? @@ -1362,7 +1362,7 @@ Telif Hakkı © 2006 Christophe Dumez<br> kb/s - + Finished Tamamlandı @@ -1417,7 +1417,7 @@ Telif Hakkı © 2006 Christophe Dumez<br> Klasör yaratılamıyor: - + Torrent Files Torrent Dosyaları @@ -1489,12 +1489,12 @@ Telif Hakkı © 2006 Christophe Dumez<br> qBittorrent - + qBittorrent qBittorrent - + Are you sure? -- qBittorrent Emin misiniz? -- qBittorrent @@ -1827,7 +1827,7 @@ Lütfen önce diğerini kapatın. Seçilenleri download listesinden ve sabit diskinizden silmek istediğinize emin misiniz? - + Download finished Download bitti @@ -1843,23 +1843,23 @@ Lütfen önce diğerini kapatın. Arama Motoru - + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - + Connection status: Bağlantı durumu: - + Offline Çevrimdışı - + No peers found... Kullanıcı bulunamadı... @@ -1924,13 +1924,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 @@ -1954,12 +1954,12 @@ Lütfen önce diğerini kapatın. Hız kaybetti - + Are you sure you want to quit? Çıkmak istediğinize emin misiniz? - + '%1' was removed. 'xxx.avi' was removed. '%1' silindi. @@ -2001,12 +2001,12 @@ Lütfen önce diğerini kapatın. Port dinleniyor: %1 - + All downloads were paused. Bütün downloadlar duraklatıldı. - + '%1' paused. xxx.avi paused. '%1' duraklatıldı. @@ -2018,52 +2018,52 @@ Lütfen önce diğerini kapatın. Bağlanılıyor... - + All downloads were resumed. Bütün downloadlar devam ettirildi. - + '%1' resumed. e.g: xxx.avi resumed. '%1' devam ettirildi. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 downloadu tamamlandı. - + I/O Error i.e: Input/Output Error I/O Hatası - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused %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 - + Firewalled? i.e: Behind a firewall/router? Firewall açık mı? - + No incoming connections... Gelen bağlantı yok... @@ -2095,173 +2095,173 @@ Lütfen önce diğerini kapatın. Download ediliyor '%1', lütfen bekleyin... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Bir hata oluştu (dolu disk?), '%1' duraklatıldı. - + Search Arama - + RSS RSS - + Downloads Downloadlar - + The download list is not empty. Are you sure you want to quit qBittorrent? Download listesi boş değil. qBittorrent ten çıkmak istediğinize emin misiniz? - + Are you sure you want to delete the selected item(s) in finished list? Seçilenleri tamamlanan listesinden silmek istediğinize emin misiniz? - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 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] - + UPnP support [ON] 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] - + Alt+1 shortcut to switch to first tab Alt+1 - + Alt+2 shortcut to switch to second tab Alt+2 - + Alt+4 shortcut to switch to fourth tab Alt+4 - + Url download error Url download hatası - + Couldn't download file at url: %1, reason: %2. Urldeki dosya yüklenemiyor: %1, neden: %2. - + Are you sure you want to delete the selected item(s) from download list and from hard drive? Seçilenleri download listesinden ve sabit diskinizden silmek istediğinize emin misiniz? - + Are you sure you want to delete the selected item(s) from finished list and from hard drive? Seçilenleri tamamlanan listesinden ve sabit diskinizden silmek istediğinize emin misiniz? - + '%1' was removed permanently. 'xxx.avi' was removed permanently. '%1' kalıcı olarak kaldırıldı. - + Alt+3 shortcut to switch to third tab Alt+3 - + Ctrl+F shortcut to switch to search tab Ctrl+F - + UPnP support [OFF] UPnP desteği [KAPALI] - + NAT-PMP support [ON] NAT-PMP desteği [AÇIK] - + NAT-PMP support [OFF] 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] - + '%1' was removed because its ratio reached the maximum value you set. %1 is a file name '%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) diff --git a/src/lang/qbittorrent_uk.ts b/src/lang/qbittorrent_uk.ts index e36fccd20..ee6ea139c 100644 --- a/src/lang/qbittorrent_uk.ts +++ b/src/lang/qbittorrent_uk.ts @@ -1315,7 +1315,7 @@ Copyright © 2006 by Christophe Dumez<br> GUI - + Open Torrent Files Відкрити Torrent-файли @@ -1335,17 +1335,17 @@ Copyright © 2006 by Christophe Dumez<br> Ви впевнені що хочете видалити всі файли зі списку завантажень? - + &Yes &Так - + &No &Ні - + Are you sure you want to delete the selected item(s) in download list? Ви впевнені що хочете видалити вибрані файли зі списку завантажень? @@ -1360,7 +1360,7 @@ Copyright © 2006 by Christophe Dumez<br> почато - + Finished Закінчено @@ -1415,7 +1415,7 @@ Copyright © 2006 by Christophe Dumez<br> Неможливо створити директорію: - + Torrent Files Torrent файли @@ -1487,12 +1487,12 @@ Copyright © 2006 by Christophe Dumez<br> qBittorrent - + qBittorrent qBittorrent - + Are you sure? -- qBittorrent Ви впевнені? -- qBittorrent @@ -1820,7 +1820,7 @@ Please close the other one first. Ви впевнені, що хочете видалити вибрані завантаження зі списку та з вінчестера? - + Download finished Завантаження завершено @@ -1836,23 +1836,23 @@ Please close the other one first. Пошуковик - + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - + Connection status: Статус з'єднання: - + Offline Офлайн - + No peers found... Не знайдено пірів... @@ -1917,13 +1917,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 КіБ/с @@ -1947,12 +1947,12 @@ Please close the other one first. Заглохло - + Are you sure you want to quit? Ви впевнені, що хочете вийти? - + '%1' was removed. 'xxx.avi' was removed. '%1' було видалено. @@ -1994,12 +1994,12 @@ Please close the other one first. Прослуховую порт: %1 - + All downloads were paused. Всі завантаження були призупинені. - + '%1' paused. xxx.avi paused. '%1' призупинено. @@ -2011,30 +2011,30 @@ Please close the other one first. З'єднуюсь... - + All downloads were resumed. Всі завантаження було відновлено. - + '%1' resumed. e.g: xxx.avi resumed. '%1' відновлено. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. Завантаження '%1' закінчилось. - + I/O Error i.e: Input/Output Error Помилка вводу/виводу - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused Сталася помилка під час запису чи зчитування %1. Можливо диск заповнено, завантаження було призупинено @@ -2046,23 +2046,23 @@ Please close the other one first. Сталася помилка (заповнено диск?), '%1' призупинено. - + Connection Status: Статус з'єднання: - + Online Онлайн - + Firewalled? i.e: Behind a firewall/router? Захищено фаєрволом? - + No incoming connections... Немає вхідних з'єднань... @@ -2094,66 +2094,66 @@ Please close the other one first. Завантажую '%1', будь-ласка зачекайте... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Сталася помилка (заповнено диск?), '%1' призупинено. - + Search Пошук - + RSS RSS - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 qBittorrent прив'язаний до порту: %1 - + DHT support [ON], port: %1 Підтримка DHT (Увімкнена), порт: %1 - + DHT support [OFF] Підтримка DHT (Вимкнена) - + PeX support [ON] Підтримка PeX (Увімкнена) - + PeX support [OFF] Підтримка PeX (Вимкнена) - + The download list is not empty. Are you sure you want to quit qBittorrent? Список завантажень не порожній. Ви впевнені, що хочете вийти з qBittorrent? - + Downloads Завантаження - + Are you sure you want to delete the selected item(s) in finished list? Ви впевнені що хочете видалити вибрані пункти зі списку завершених завантажень? - + UPnP support [ON] Підтримка UNnP (Увімкнена) @@ -2163,17 +2163,17 @@ Are you sure you want to quit qBittorrent? Будьте обережні, ділення захищеним матеріалом без дозволу є протизаконним. - + Encryption support [ON] Підтримка шифрування (Увімкнена) - + Encryption support [FORCED] Підтримка шифрування (Примусова) - + Encryption support [OFF] Підтримка шифрування (Вимкнена) @@ -2189,13 +2189,13 @@ Are you sure you want to quit qBittorrent? КоеКоефіціент - + Alt+1 shortcut to switch to first tab Alt+1 - + Alt+2 shortcut to switch to second tab Alt+2 @@ -2207,18 +2207,18 @@ Are you sure you want to quit qBittorrent? Alt+3, Ctrl+F - + Alt+4 shortcut to switch to fourth tab Alt+4 - + Url download error Помилка завантаження url - + Couldn't download file at url: %1, reason: %2. Неможливо завантажити файл з url: %1, причина: %2. @@ -2228,17 +2228,17 @@ Are you sure you want to quit qBittorrent? Було відмовлено у швидкому відновленні данних для torrent'у %1, перевіряю знову... - + Are you sure you want to delete the selected item(s) from download list and from hard drive? Ви впевнені що хочете видалити вибрані пункти зі списку завантажень та зі жорсткого диску? - + Are you sure you want to delete the selected item(s) from finished list and from hard drive? Ви впевнені що хочете видалити вибрані пункти зі списку завершених завантажень та зі жорсткого диску? - + '%1' was removed permanently. 'xxx.avi' was removed permanently. '%1' було назавжди видалено. @@ -2249,50 +2249,50 @@ Are you sure you want to quit qBittorrent? Пошук url роздачі невдалий для url: %1, повідомлення: %2 - + Alt+3 shortcut to switch to third tab Alt+3 - + Ctrl+F shortcut to switch to search tab - + UPnP support [OFF] Підтримка UPnP [Вимкнено] - + NAT-PMP support [ON] Підтримка NAT-PMP [Увімкнено] - + NAT-PMP support [OFF] Підтримка NAT-PMP [Вимкнено] - + Local Peer Discovery [ON] Пошук Локальних Пірів [Увімкнено] - + Local Peer Discovery support [OFF] Пошук Локальних Пірів [Вимкнено] - + '%1' was removed because its ratio reached the maximum value you set. %1 is a file name '%1' було видалено, тому що його коефіціент досяг максимального значення встановленого вами. - + qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s) %1 is qBittorrent version qBittorrent %1 (Прийом: %2КіБ/с, Віддача: %3КіБ/с) diff --git a/src/lang/qbittorrent_zh.ts b/src/lang/qbittorrent_zh.ts index 14b5b7c63..bc9fbb143 100644 --- a/src/lang/qbittorrent_zh.ts +++ b/src/lang/qbittorrent_zh.ts @@ -1429,7 +1429,7 @@ wait... GUI - + Open Torrent Files 打开Torrent文件 @@ -1451,12 +1451,12 @@ list? 确定删除下载列表中的所有文件? - + &Yes &是 - + &No &否 @@ -1477,7 +1477,7 @@ download list? 开始 - + Finished 完成 @@ -1532,7 +1532,7 @@ download list? 无法创建文档: - + Torrent Files Torrent文件 @@ -1581,7 +1581,7 @@ download list? 使用端口: - + Are you sure? -- qBittorrent 确定? -- qBittorrent @@ -1900,7 +1900,7 @@ download list and in hard drive? 确定从硬盘及下载列表中删除所选中的项目? - + Download finished 下载完毕 @@ -1921,23 +1921,23 @@ download list and in hard drive? 完整种子/不完整种子 - + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - + Connection status: 连接状态: - + Offline 离线 - + No peers found... 找不到资源... @@ -2002,18 +2002,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 @@ -2038,12 +2038,12 @@ download list and in hard drive? 等待中 - + Are you sure you want to quit? 确实要退出吗? - + '%1' was removed. 'xxx.avi' was removed. '%1'已移除. @@ -2090,12 +2090,12 @@ list. 使用端口:'%1' - + All downloads were paused. 所有下载已暂停. - + '%1' paused. xxx.avi paused. '%1'暂停. @@ -2107,24 +2107,24 @@ list. 连接中... - + All downloads were resumed. 重新开始所有下载. - + '%1' resumed. e.g: xxx.avi resumed. '%1'重新开始. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. '%1'下载完毕. - + I/O Error i.e: Input/Output Error 输入/输出错误 @@ -2138,23 +2138,23 @@ The disk is probably full, download has been paused 读或写%1过程中出现错误.磁盘已满,下载被暂停 - + Connection Status: 连接状态: - + Online 联机 - + Firewalled? i.e: Behind a firewall/router? 存在防火墙? - + No incoming connections... 无对内连接... @@ -2195,50 +2195,50 @@ paused. 出现错误(磁盘已满?),'%1'暂停. - + Search 搜索 - + RSS RSS - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 qBittorrent 绑定端口:%1 - + DHT support [ON], port: %1 DHT 支持 [开], port: %1 - + DHT support [OFF] DHT 支持[关] - + PeX support [ON] PeX 支持[ON] - + PeX support [OFF] PeX 支持[关] - + The download list is not empty. Are you sure you want to quit qBittorrent? 下载列表不为空 您确定要离开qBittorrent吗? - + Downloads 下载 @@ -2249,7 +2249,7 @@ finished list? 您确定要删除完成列表中选中的项目吗? - + UPnP support [ON] UPnP 支持[开] @@ -2260,17 +2260,17 @@ is against the law. 注意,在未经允许情况下共享有版权的材料是违法的. - + Encryption support [ON] 加密支持[开] - + Encryption support [FORCED] 加密支持[强制] - + Encryption support [OFF] 加密支持[关] @@ -2289,13 +2289,13 @@ color='red'>%1</font> 比率 - + Alt+1 shortcut to switch to first tab Alt+1 - + Alt+2 shortcut to switch to second tab Alt+2 @@ -2307,18 +2307,18 @@ color='red'>%1</font> Alt+3, Ctrl+F - + Alt+4 shortcut to switch to fourth tab Alt+4 - + Url download error 网址下载错误 - + Couldn't download file at url: %1, reason: %2. 无法在网址:%1下载文件,原因:%2. @@ -2342,7 +2342,7 @@ finished list and from hard drive? 您确定要从完成列表和硬盘中删除选中的项目吗? - + '%1' was removed permanently. 'xxx.avi' was removed permanently. '%1'已永久移除. @@ -2354,39 +2354,39 @@ finished list and from hard drive? 消息:%2 - + Alt+3 shortcut to switch to third tab Alt+3 - + Ctrl+F shortcut to switch to search tab Ctrl+F - + UPnP support [OFF] UPnP 支持[关] - + NAT-PMP support [ON] NAT-PMP 支持[开] - + NAT-PMP support [OFF] NAT-PMP 支持[关] - + Local Peer Discovery [ON] 本地资源搜索[开] - + Local Peer Discovery support [OFF] 本地资源搜索支持[关] @@ -2398,47 +2398,47 @@ maximum value you set. '%1'被移除因为它的比率达到您设置的最大值. - + qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s) %1 is qBittorrent version qBittorrent %1 (下载: %2KiB/s, 上传: %3KiB/s) - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. - + Are you sure you want to delete the selected item(s) from download list and from hard drive? - + Are you sure you want to delete the selected item(s) from finished list and from hard drive? - + '%1' was removed because its ratio reached the maximum value you set. %1 is a file name - + Are you sure you want to delete the selected item(s) in download list? - + Are you sure you want to delete the selected item(s) in finished list? diff --git a/src/main.cpp b/src/main.cpp index 4250ac527..682e2b775 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -24,10 +24,15 @@ #include #include #include -#include #include -#include -#include +#ifdef QT_4_4 + #include + #include + #include +#else + #include + #include +#endif #include #include "qgnomelook.h" #include @@ -92,10 +97,22 @@ int main(int argc, char *argv[]){ if(putenv("QBITTORRENT="VERSION)){ std::cerr << "Couldn't set environment variable...\n"; } + QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent")); //Check if there is another instance running - QTcpSocket tcpSocket; - tcpSocket.connectToHost(QHostAddress::LocalHost, 1666); - if (tcpSocket.waitForConnected(1000)){ +#ifdef QT_4_4 + QLocalSocket localSocket; + QString uid = QString::number(getuid()); +#else + QTcpSocket localSocket; +#endif +#ifdef QT_4_4 + localSocket.connectToServer("qBittorrent-"+uid, QIODevice::WriteOnly); +#else + int serverPort = settings.value(QString::fromUtf8("uniqueInstancePort"), -1).toInt(); + if(serverPort != -1) { + localSocket.connectToHost(QHostAddress::LocalHost, serverPort, QIODevice::WriteOnly); +#endif + if (localSocket.waitForConnected(1000)){ std::cout << "Another qBittorrent instance is already running...\n"; // Send parameters if(argc > 1){ @@ -107,20 +124,26 @@ int main(int argc, char *argv[]){ QByteArray block = params.join("\n").toUtf8(); std::cout << "writting: " << block.data() << '\n'; std::cout << "size: " << block.size() << '\n'; - uint val = tcpSocket.write(block); - if(tcpSocket.waitForBytesWritten(5000)){ + uint val = localSocket.write(block); + if(localSocket.waitForBytesWritten(5000)){ std::cout << "written(" <show(); diff --git a/src/search.ui b/src/search.ui index e1495ab66..077af0fba 100644 --- a/src/search.ui +++ b/src/search.ui @@ -216,16 +216,6 @@ - - - - false - - - Close tab - - - diff --git a/src/searchEngine.cpp b/src/searchEngine.cpp index bf3b9aba7..228a6e81a 100644 --- a/src/searchEngine.cpp +++ b/src/searchEngine.cpp @@ -48,7 +48,12 @@ SearchEngine::SearchEngine(bittorrent *BTSession, QSystemTrayIcon *myTrayIcon, b searchCompleter = new QCompleter(searchHistory, this); searchCompleter->setCaseSensitivity(Qt::CaseInsensitive); search_pattern->setCompleter(searchCompleter); - + // Add close tab button + closeTab_button = new QPushButton(); + closeTab_button->setIcon(QIcon(QString::fromUtf8(":/Icons/gnome-shutdown.png"))); + closeTab_button->setFlat(true); + connect(closeTab_button, SIGNAL(clicked()), this, SLOT(closeTab_button_clicked())); + tabWidget->setCornerWidget(closeTab_button); // Boolean initialization search_stopped = false; // Creating Search Process @@ -356,7 +361,7 @@ void SearchEngine::on_stop_search_button_clicked(){ } // Clear search results list -void SearchEngine::on_closeTab_button_clicked(){ +void SearchEngine::closeTab_button_clicked(){ if(all_tab.size()) { qDebug("currentTab rank: %d", tabWidget->currentIndex()); qDebug("currentSearchTab rank: %d", tabWidget->indexOf(currentSearchTab)); diff --git a/src/searchEngine.h b/src/searchEngine.h index c8bd68bd6..bac43bdc4 100644 --- a/src/searchEngine.h +++ b/src/searchEngine.h @@ -56,6 +56,7 @@ class SearchEngine : public QWidget, public Ui::search_engine{ QStringList enabled_engines; QTimer *searchTimeout; SearchTab *currentSearchTab; + QPushButton *closeTab_button; QList all_tab; // To store all tabs public: SearchEngine(bittorrent *BTSession, QSystemTrayIcon *myTrayIcon, bool systrayIntegration); @@ -69,7 +70,7 @@ class SearchEngine : public QWidget, public Ui::search_engine{ void tab_changed(int);//to prevent the use of the download button when the tab is empty void on_search_button_clicked(); void on_stop_search_button_clicked(); - void on_closeTab_button_clicked(); + void closeTab_button_clicked(); void appendSearchResult(QString line); void searchFinished(int exitcode,QProcess::ExitStatus); void readSearchOutput();