mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-24 10:16:00 +03:00
- Added "Skip file checking and start seeding immediately" option to torrent addition dialog (patch by Stephanos Antaris).
- Updated French translation
This commit is contained in:
parent
5d1ed7a564
commit
7f12bbb783
61 changed files with 6142 additions and 3375 deletions
6
AUTHORS
6
AUTHORS
|
@ -2,10 +2,10 @@ Author:
|
||||||
* Christophe Dumez <chris@qbittorrent.org>
|
* Christophe Dumez <chris@qbittorrent.org>
|
||||||
|
|
||||||
Contributors:
|
Contributors:
|
||||||
* Arnaud Demaizière <arnaud@qbittorrent.org>
|
|
||||||
* Ishan Arora <ishan@qbittorrent.org>
|
|
||||||
* Grigis Gaëtan <cipher16@gmail.com>
|
|
||||||
* Stefanos Antaris <santaris@csd.auth.gr>
|
* Stefanos Antaris <santaris@csd.auth.gr>
|
||||||
|
* Ishan Arora <ishan@qbittorrent.org>
|
||||||
|
* Arnaud Demaizière <arnaud@qbittorrent.org>
|
||||||
|
* Grigis Gaëtan <cipher16@gmail.com>
|
||||||
|
|
||||||
Code from other projects:
|
Code from other projects:
|
||||||
* files src/ico.cpp src/ico.h
|
* files src/ico.cpp src/ico.h
|
||||||
|
|
|
@ -11,6 +11,7 @@
|
||||||
- FEATURE: Tracker connections are now also subject to IP filtering
|
- FEATURE: Tracker connections are now also subject to IP filtering
|
||||||
- FEATURE: Include DHT traffic in the rate limiter
|
- FEATURE: Include DHT traffic in the rate limiter
|
||||||
- FEATURE: Support for bitcomet padding files
|
- FEATURE: Support for bitcomet padding files
|
||||||
|
- FEATURE: Option to skip file checking and start seeding immediately in torrent addition dialog (Stephanos Antaris)
|
||||||
- FEATURE: Dropped dependency on libcurl
|
- FEATURE: Dropped dependency on libcurl
|
||||||
- FEATURE: Dropped Qt 4.3 support (Qt >= 4.4 is required)
|
- FEATURE: Dropped Qt 4.3 support (Qt >= 4.4 is required)
|
||||||
|
|
||||||
|
|
|
@ -52,10 +52,10 @@ class about : public QDialog, private Ui::AboutDlg{
|
||||||
lb_name->setText(QString::fromUtf8("<b><h1>")+tr("qBittorrent")+QString::fromUtf8(" "VERSION"</h1></b>"));
|
lb_name->setText(QString::fromUtf8("<b><h1>")+tr("qBittorrent")+QString::fromUtf8(" "VERSION"</h1></b>"));
|
||||||
// Thanks
|
// Thanks
|
||||||
te_thanks->append(QString::fromUtf8("<a name='top'></a>"));
|
te_thanks->append(QString::fromUtf8("<a name='top'></a>"));
|
||||||
te_thanks->append(QString::fromUtf8("<ul><li>I would like to thank sourceforge.net for hosting qBittorrent project.</li>"));
|
te_thanks->append(QString::fromUtf8("<ul><li>I would first like to thank sourceforge.net for hosting qBittorrent project and for their support.</li>"));
|
||||||
te_thanks->append(QString::fromUtf8("<li>I am happy that Ishan Arora and Arnaud Demaizière are contributing to the project as developers. Their help is greatly appreciated</li>"));
|
te_thanks->append(QString::fromUtf8("<li>I am pleased that people from all over the world are contributing to qBittorrent: Ishan Arora (India), Arnaud Demaizière (France) and Stephanos Antaris (Greece). Their help is greatly appreciated</li>"));
|
||||||
te_thanks->append(QString::fromUtf8("<li>I also want to thank Jeffery Fernandez (jeffery@qbittorrent.org), project consultant, RPM packager, for his help and support.</li>"));
|
te_thanks->append(QString::fromUtf8("<li>I also want to thank Jeffery Fernandez (jeffery@qbittorrent.org), project consultant, for his help and support since the beginning of this project.</li>"));
|
||||||
te_thanks->append(QString::fromUtf8("<li>I am grateful to Peter Koeleman (peter@qbittorrent.org) who is helping port qBittorrent to Windows.</li>"));
|
te_thanks->append(QString::fromUtf8("<li>I am grateful to Peter Koeleman (peter@qbittorrent.org) for working on qBittorrent port to Windows.</li>"));
|
||||||
te_thanks->append(QString::fromUtf8("<li>Thanks a lot to our graphist Mateusz Toboła (tobejodok@qbittorrent.org) for his great work.</li></ul><br><br>"));
|
te_thanks->append(QString::fromUtf8("<li>Thanks a lot to our graphist Mateusz Toboła (tobejodok@qbittorrent.org) for his great work.</li></ul><br><br>"));
|
||||||
te_thanks->scrollToAnchor(QString::fromUtf8("top"));
|
te_thanks->scrollToAnchor(QString::fromUtf8("top"));
|
||||||
// Translation
|
// Translation
|
||||||
|
|
|
@ -207,6 +207,13 @@
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QCheckBox" name="addInSeed">
|
||||||
|
<property name="text">
|
||||||
|
<string>Skip file checking and start seeding immediately</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QCheckBox" name="addInPause">
|
<widget class="QCheckBox" name="addInPause">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
|
|
|
@ -581,6 +581,14 @@ QTorrentHandle bittorrent::addTorrent(QString path, bool fromScanDir, QString fr
|
||||||
} else {
|
} else {
|
||||||
p.save_path = defaultTempPath.toLocal8Bit().data();
|
p.save_path = defaultTempPath.toLocal8Bit().data();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Skip checking and directly start seeding (new in libtorrent v0.15)
|
||||||
|
if(TorrentTempData::isSeedingMode(hash)){
|
||||||
|
p.seed_mode=true;
|
||||||
|
} else {
|
||||||
|
p.seed_mode=false;
|
||||||
|
}
|
||||||
|
|
||||||
// TODO: Remove in v1.6.0: For backward compatibility only
|
// TODO: Remove in v1.6.0: For backward compatibility only
|
||||||
if(QFile::exists(misc::qBittorrentPath()+"BT_backup"+QDir::separator()+hash+".finished")) {
|
if(QFile::exists(misc::qBittorrentPath()+"BT_backup"+QDir::separator()+hash+".finished")) {
|
||||||
p.save_path = savePath.toLocal8Bit().data();
|
p.save_path = savePath.toLocal8Bit().data();
|
||||||
|
|
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
|
@ -3191,6 +3191,10 @@ Changelog:
|
||||||
<source>Expand all</source>
|
<source>Expand all</source>
|
||||||
<translation>Alles uitklappen</translation>
|
<translation>Alles uitklappen</translation>
|
||||||
</message>
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Skip file checking and start seeding immediately</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>authentication</name>
|
<name>authentication</name>
|
||||||
|
@ -3603,6 +3607,101 @@ Changelog:
|
||||||
<translation>Typ op zijn minst één URL.</translation>
|
<translation>Typ op zijn minst één URL.</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>downloadThread</name>
|
||||||
|
<message>
|
||||||
|
<source>I/O Error</source>
|
||||||
|
<translation type="unfinished">I/O Fout</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote host name was not found (invalid hostname)</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The operation was canceled</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote server closed the connection prematurely, before the entire reply was received and processed</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The connection to the remote server timed out</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>SSL/TLS handshake failed</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote server refused the connection</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The connection to the proxy server was refused</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The proxy server closed the connection prematurely</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The proxy host name was not found</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The connection to the proxy timed out or the proxy did not reply in time to the request sent</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The proxy requires authentication in order to honour the request but did not accept any credentials offered</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The access to the remote content was denied (401)</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The operation requested on the remote content is not permitted</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote content was not found at the server (404)</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote server requires authentication to serve the content but the credentials provided were not accepted</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The Network Access API cannot honor the request because the protocol is not known</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The requested operation is invalid for this protocol</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>An unknown network-related error was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>An unknown proxy-related error was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>An unknown error related to the remote content was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>A breakdown in protocol was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Unknown error</source>
|
||||||
|
<translation type="unfinished">Onbekende fout</translation>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>downloading</name>
|
<name>downloading</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -4703,23 +4802,23 @@ selecteer alstublieft een er van:</translation>
|
||||||
<name>subDownloadThread</name>
|
<name>subDownloadThread</name>
|
||||||
<message>
|
<message>
|
||||||
<source>Host is unreachable</source>
|
<source>Host is unreachable</source>
|
||||||
<translation>Host is onbereikbaar</translation>
|
<translation type="obsolete">Host is onbereikbaar</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>File was not found (404)</source>
|
<source>File was not found (404)</source>
|
||||||
<translation>Bestand niet gevonden (404)</translation>
|
<translation type="obsolete">Bestand niet gevonden (404)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Connection was denied</source>
|
<source>Connection was denied</source>
|
||||||
<translation>Verbinding niet toegestaan</translation>
|
<translation type="obsolete">Verbinding niet toegestaan</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Url is invalid</source>
|
<source>Url is invalid</source>
|
||||||
<translation>Url is ongeldig</translation>
|
<translation type="obsolete">Url is ongeldig</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>I/O Error</source>
|
<source>I/O Error</source>
|
||||||
<translation>I/O Fout</translation>
|
<translation type="obsolete">I/O Fout</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Connection forbidden (403)</source>
|
<source>Connection forbidden (403)</source>
|
||||||
|
@ -4735,23 +4834,23 @@ selecteer alstublieft een er van:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Connection failure</source>
|
<source>Connection failure</source>
|
||||||
<translation>Verbindingsfout</translation>
|
<translation type="obsolete">Verbindingsfout</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Connection was timed out</source>
|
<source>Connection was timed out</source>
|
||||||
<translation>Verbinding verlopen</translation>
|
<translation type="obsolete">Verbinding verlopen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Incorrect network interface</source>
|
<source>Incorrect network interface</source>
|
||||||
<translation>Verkeerde netwerkinterface</translation>
|
<translation type="obsolete">Verkeerde netwerkinterface</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Unknown error</source>
|
<source>Unknown error</source>
|
||||||
<translation>Onbekende fout</translation>
|
<translation type="obsolete">Onbekende fout</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Could not resolve proxy</source>
|
<source>Could not resolve proxy</source>
|
||||||
<translation>Kon proxy niet herleiden</translation>
|
<translation type="obsolete">Kon proxy niet herleiden</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
|
|
Binary file not shown.
|
@ -3286,6 +3286,10 @@ Zmiany:
|
||||||
<source>Expand all</source>
|
<source>Expand all</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Skip file checking and start seeding immediately</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>authentication</name>
|
<name>authentication</name>
|
||||||
|
@ -3710,6 +3714,101 @@ Zmiany:
|
||||||
<translation>Proszę podać przynajmniej jeden adres URL.</translation>
|
<translation>Proszę podać przynajmniej jeden adres URL.</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>downloadThread</name>
|
||||||
|
<message>
|
||||||
|
<source>I/O Error</source>
|
||||||
|
<translation type="unfinished">Błąd We/Wy</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote host name was not found (invalid hostname)</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The operation was canceled</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote server closed the connection prematurely, before the entire reply was received and processed</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The connection to the remote server timed out</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>SSL/TLS handshake failed</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote server refused the connection</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The connection to the proxy server was refused</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The proxy server closed the connection prematurely</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The proxy host name was not found</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The connection to the proxy timed out or the proxy did not reply in time to the request sent</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The proxy requires authentication in order to honour the request but did not accept any credentials offered</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The access to the remote content was denied (401)</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The operation requested on the remote content is not permitted</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote content was not found at the server (404)</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote server requires authentication to serve the content but the credentials provided were not accepted</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The Network Access API cannot honor the request because the protocol is not known</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The requested operation is invalid for this protocol</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>An unknown network-related error was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>An unknown proxy-related error was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>An unknown error related to the remote content was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>A breakdown in protocol was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Unknown error</source>
|
||||||
|
<translation type="unfinished">Nieznany błąd</translation>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>downloading</name>
|
<name>downloading</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -4816,23 +4915,23 @@ Jednak tamte wtyczki były wyłączone.</translation>
|
||||||
<name>subDownloadThread</name>
|
<name>subDownloadThread</name>
|
||||||
<message>
|
<message>
|
||||||
<source>Host is unreachable</source>
|
<source>Host is unreachable</source>
|
||||||
<translation>Host jest niedostępny</translation>
|
<translation type="obsolete">Host jest niedostępny</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>File was not found (404)</source>
|
<source>File was not found (404)</source>
|
||||||
<translation>Nie znaleziono pliku (404)</translation>
|
<translation type="obsolete">Nie znaleziono pliku (404)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Connection was denied</source>
|
<source>Connection was denied</source>
|
||||||
<translation>Połączenie odrzucone</translation>
|
<translation type="obsolete">Połączenie odrzucone</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Url is invalid</source>
|
<source>Url is invalid</source>
|
||||||
<translation>Błędny URL</translation>
|
<translation type="obsolete">Błędny URL</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>I/O Error</source>
|
<source>I/O Error</source>
|
||||||
<translation type="unfinished">Błąd We/Wy</translation>
|
<translation type="obsolete">Błąd We/Wy</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Connection forbidden (403)</source>
|
<source>Connection forbidden (403)</source>
|
||||||
|
@ -4848,23 +4947,23 @@ Jednak tamte wtyczki były wyłączone.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Connection failure</source>
|
<source>Connection failure</source>
|
||||||
<translation>Brak połączenia</translation>
|
<translation type="obsolete">Brak połączenia</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Connection was timed out</source>
|
<source>Connection was timed out</source>
|
||||||
<translation>Upłynął czas połączenia</translation>
|
<translation type="obsolete">Upłynął czas połączenia</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Incorrect network interface</source>
|
<source>Incorrect network interface</source>
|
||||||
<translation>Niepoprawny interfejs sieci</translation>
|
<translation type="obsolete">Niepoprawny interfejs sieci</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Unknown error</source>
|
<source>Unknown error</source>
|
||||||
<translation>Nieznany błąd</translation>
|
<translation type="obsolete">Nieznany błąd</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Could not resolve proxy</source>
|
<source>Could not resolve proxy</source>
|
||||||
<translation>Nie można określić proxy</translation>
|
<translation type="obsolete">Nie można określić proxy</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
|
|
Binary file not shown.
|
@ -3198,6 +3198,10 @@ Log de mudanças:</translation>
|
||||||
<source>Download in sequential order (slower but good for previewing)</source>
|
<source>Download in sequential order (slower but good for previewing)</source>
|
||||||
<translation>Baixar em ordem de sequência (mais lento porém melhor para visualizar)</translation>
|
<translation>Baixar em ordem de sequência (mais lento porém melhor para visualizar)</translation>
|
||||||
</message>
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Skip file checking and start seeding immediately</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>authentication</name>
|
<name>authentication</name>
|
||||||
|
@ -3622,6 +3626,101 @@ Log de mudanças:</translation>
|
||||||
<translation>Por favor digite uma URL.</translation>
|
<translation>Por favor digite uma URL.</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>downloadThread</name>
|
||||||
|
<message>
|
||||||
|
<source>I/O Error</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote host name was not found (invalid hostname)</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The operation was canceled</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote server closed the connection prematurely, before the entire reply was received and processed</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The connection to the remote server timed out</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>SSL/TLS handshake failed</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote server refused the connection</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The connection to the proxy server was refused</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The proxy server closed the connection prematurely</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The proxy host name was not found</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The connection to the proxy timed out or the proxy did not reply in time to the request sent</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The proxy requires authentication in order to honour the request but did not accept any credentials offered</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The access to the remote content was denied (401)</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The operation requested on the remote content is not permitted</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote content was not found at the server (404)</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote server requires authentication to serve the content but the credentials provided were not accepted</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The Network Access API cannot honor the request because the protocol is not known</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The requested operation is invalid for this protocol</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>An unknown network-related error was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>An unknown proxy-related error was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>An unknown error related to the remote content was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>A breakdown in protocol was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Unknown error</source>
|
||||||
|
<translation type="unfinished">Erro desconhecido</translation>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>downloading</name>
|
<name>downloading</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -4683,19 +4782,19 @@ Portanto os plugins foram desabilitados.</translation>
|
||||||
<name>subDownloadThread</name>
|
<name>subDownloadThread</name>
|
||||||
<message>
|
<message>
|
||||||
<source>Host is unreachable</source>
|
<source>Host is unreachable</source>
|
||||||
<translation>O host é inalcançável</translation>
|
<translation type="obsolete">O host é inalcançável</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>File was not found (404)</source>
|
<source>File was not found (404)</source>
|
||||||
<translation>Arquivo não encontrado (404)</translation>
|
<translation type="obsolete">Arquivo não encontrado (404)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Connection was denied</source>
|
<source>Connection was denied</source>
|
||||||
<translation>Conexão foi negada</translation>
|
<translation type="obsolete">Conexão foi negada</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Url is invalid</source>
|
<source>Url is invalid</source>
|
||||||
<translation>Url é inválida</translation>
|
<translation type="obsolete">Url é inválida</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Connection forbidden (403)</source>
|
<source>Connection forbidden (403)</source>
|
||||||
|
@ -4711,27 +4810,27 @@ Portanto os plugins foram desabilitados.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Connection failure</source>
|
<source>Connection failure</source>
|
||||||
<translation>Conexão falhou</translation>
|
<translation type="obsolete">Conexão falhou</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Connection was timed out</source>
|
<source>Connection was timed out</source>
|
||||||
<translation>Conexão esgotou o tempo</translation>
|
<translation type="obsolete">Conexão esgotou o tempo</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Incorrect network interface</source>
|
<source>Incorrect network interface</source>
|
||||||
<translation>Relação da rede incorreta</translation>
|
<translation type="obsolete">Relação da rede incorreta</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Unknown error</source>
|
<source>Unknown error</source>
|
||||||
<translation>Erro desconhecido</translation>
|
<translation type="obsolete">Erro desconhecido</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Could not resolve proxy</source>
|
<source>Could not resolve proxy</source>
|
||||||
<translation>Não pude resolver proxy</translation>
|
<translation type="obsolete">Não pude resolver proxy</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>I/O Error</source>
|
<source>I/O Error</source>
|
||||||
<translation>Erro de entrada e saída</translation>
|
<translation type="obsolete">Erro de entrada e saída</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
|
|
Binary file not shown.
|
@ -3198,6 +3198,10 @@ Log de mudanças:</translation>
|
||||||
<source>Download in sequential order (slower but good for previewing)</source>
|
<source>Download in sequential order (slower but good for previewing)</source>
|
||||||
<translation>Baixar em ordem de sequência (mais lento porém melhor para visualizar)</translation>
|
<translation>Baixar em ordem de sequência (mais lento porém melhor para visualizar)</translation>
|
||||||
</message>
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Skip file checking and start seeding immediately</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>authentication</name>
|
<name>authentication</name>
|
||||||
|
@ -3622,6 +3626,101 @@ Log de mudanças:</translation>
|
||||||
<translation>Por favor digite uma URL.</translation>
|
<translation>Por favor digite uma URL.</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>downloadThread</name>
|
||||||
|
<message>
|
||||||
|
<source>I/O Error</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote host name was not found (invalid hostname)</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The operation was canceled</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote server closed the connection prematurely, before the entire reply was received and processed</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The connection to the remote server timed out</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>SSL/TLS handshake failed</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote server refused the connection</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The connection to the proxy server was refused</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The proxy server closed the connection prematurely</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The proxy host name was not found</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The connection to the proxy timed out or the proxy did not reply in time to the request sent</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The proxy requires authentication in order to honour the request but did not accept any credentials offered</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The access to the remote content was denied (401)</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The operation requested on the remote content is not permitted</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote content was not found at the server (404)</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote server requires authentication to serve the content but the credentials provided were not accepted</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The Network Access API cannot honor the request because the protocol is not known</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The requested operation is invalid for this protocol</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>An unknown network-related error was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>An unknown proxy-related error was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>An unknown error related to the remote content was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>A breakdown in protocol was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Unknown error</source>
|
||||||
|
<translation type="unfinished">Erro desconhecido</translation>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>downloading</name>
|
<name>downloading</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -4683,19 +4782,19 @@ Portanto os plugins foram desabilitados.</translation>
|
||||||
<name>subDownloadThread</name>
|
<name>subDownloadThread</name>
|
||||||
<message>
|
<message>
|
||||||
<source>Host is unreachable</source>
|
<source>Host is unreachable</source>
|
||||||
<translation>O host é inalcançável</translation>
|
<translation type="obsolete">O host é inalcançável</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>File was not found (404)</source>
|
<source>File was not found (404)</source>
|
||||||
<translation>Arquivo não encontrado (404)</translation>
|
<translation type="obsolete">Arquivo não encontrado (404)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Connection was denied</source>
|
<source>Connection was denied</source>
|
||||||
<translation>Conexão foi negada</translation>
|
<translation type="obsolete">Conexão foi negada</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Url is invalid</source>
|
<source>Url is invalid</source>
|
||||||
<translation>Url é inválida</translation>
|
<translation type="obsolete">Url é inválida</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Connection forbidden (403)</source>
|
<source>Connection forbidden (403)</source>
|
||||||
|
@ -4711,27 +4810,27 @@ Portanto os plugins foram desabilitados.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Connection failure</source>
|
<source>Connection failure</source>
|
||||||
<translation>Conexão falhou</translation>
|
<translation type="obsolete">Conexão falhou</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Connection was timed out</source>
|
<source>Connection was timed out</source>
|
||||||
<translation>Conexão esgotou o tempo</translation>
|
<translation type="obsolete">Conexão esgotou o tempo</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Incorrect network interface</source>
|
<source>Incorrect network interface</source>
|
||||||
<translation>Relação da rede incorreta</translation>
|
<translation type="obsolete">Relação da rede incorreta</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Unknown error</source>
|
<source>Unknown error</source>
|
||||||
<translation>Erro desconhecido</translation>
|
<translation type="obsolete">Erro desconhecido</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Could not resolve proxy</source>
|
<source>Could not resolve proxy</source>
|
||||||
<translation>Não pude resolver proxy</translation>
|
<translation type="obsolete">Não pude resolver proxy</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>I/O Error</source>
|
<source>I/O Error</source>
|
||||||
<translation>Erro de entrada e saída</translation>
|
<translation type="obsolete">Erro de entrada e saída</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
|
|
Binary file not shown.
|
@ -3027,6 +3027,10 @@ Changelog:
|
||||||
<source>Download in sequential order (slower but good for previewing)</source>
|
<source>Download in sequential order (slower but good for previewing)</source>
|
||||||
<translation>Descarcă în ordine secvențială (încet dar bine pentru preview)</translation>
|
<translation>Descarcă în ordine secvențială (încet dar bine pentru preview)</translation>
|
||||||
</message>
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Skip file checking and start seeding immediately</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>authentication</name>
|
<name>authentication</name>
|
||||||
|
@ -3451,6 +3455,101 @@ Changelog:
|
||||||
<translation>Vă rugăm să introduceţi cel puţin un URL.</translation>
|
<translation>Vă rugăm să introduceţi cel puţin un URL.</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>downloadThread</name>
|
||||||
|
<message>
|
||||||
|
<source>I/O Error</source>
|
||||||
|
<translation type="unfinished">Eroare de intrare/eşire</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote host name was not found (invalid hostname)</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The operation was canceled</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote server closed the connection prematurely, before the entire reply was received and processed</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The connection to the remote server timed out</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>SSL/TLS handshake failed</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote server refused the connection</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The connection to the proxy server was refused</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The proxy server closed the connection prematurely</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The proxy host name was not found</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The connection to the proxy timed out or the proxy did not reply in time to the request sent</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The proxy requires authentication in order to honour the request but did not accept any credentials offered</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The access to the remote content was denied (401)</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The operation requested on the remote content is not permitted</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote content was not found at the server (404)</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote server requires authentication to serve the content but the credentials provided were not accepted</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The Network Access API cannot honor the request because the protocol is not known</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The requested operation is invalid for this protocol</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>An unknown network-related error was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>An unknown proxy-related error was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>An unknown error related to the remote content was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>A breakdown in protocol was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Unknown error</source>
|
||||||
|
<translation type="unfinished">Eroare necunoscută</translation>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>downloading</name>
|
<name>downloading</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -4520,19 +4619,19 @@ Numai acele adăugate de dvs. pot fi dezinstalate.
|
||||||
<name>subDownloadThread</name>
|
<name>subDownloadThread</name>
|
||||||
<message>
|
<message>
|
||||||
<source>Host is unreachable</source>
|
<source>Host is unreachable</source>
|
||||||
<translation>Calculatorul nu poate fi accesat</translation>
|
<translation type="obsolete">Calculatorul nu poate fi accesat</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>File was not found (404)</source>
|
<source>File was not found (404)</source>
|
||||||
<translation>Fişierul nu a fost găsit(404)</translation>
|
<translation type="obsolete">Fişierul nu a fost găsit(404)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Connection was denied</source>
|
<source>Connection was denied</source>
|
||||||
<translation>Conectarea a fost interzisă</translation>
|
<translation type="obsolete">Conectarea a fost interzisă</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Url is invalid</source>
|
<source>Url is invalid</source>
|
||||||
<translation>Adresa URL nu este validă</translation>
|
<translation type="obsolete">Adresa URL nu este validă</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Connection forbidden (403)</source>
|
<source>Connection forbidden (403)</source>
|
||||||
|
@ -4548,27 +4647,27 @@ Numai acele adăugate de dvs. pot fi dezinstalate.
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Connection failure</source>
|
<source>Connection failure</source>
|
||||||
<translation>Conectarea eşuată</translation>
|
<translation type="obsolete">Conectarea eşuată</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Connection was timed out</source>
|
<source>Connection was timed out</source>
|
||||||
<translation>Timpul de conectare expirat</translation>
|
<translation type="obsolete">Timpul de conectare expirat</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Incorrect network interface</source>
|
<source>Incorrect network interface</source>
|
||||||
<translation>Interfaţa de reţea incorectă</translation>
|
<translation type="obsolete">Interfaţa de reţea incorectă</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Unknown error</source>
|
<source>Unknown error</source>
|
||||||
<translation>Eroare necunoscută</translation>
|
<translation type="obsolete">Eroare necunoscută</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Could not resolve proxy</source>
|
<source>Could not resolve proxy</source>
|
||||||
<translation>Proxy nu a putut fi rezolvata</translation>
|
<translation type="obsolete">Proxy nu a putut fi rezolvata</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>I/O Error</source>
|
<source>I/O Error</source>
|
||||||
<translation>Eroare de intrare/eşire</translation>
|
<translation type="obsolete">Eroare de intrare/eşire</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
|
|
Binary file not shown.
|
@ -3216,6 +3216,10 @@ Changelog:
|
||||||
<source>Download in sequential order (slower but good for previewing)</source>
|
<source>Download in sequential order (slower but good for previewing)</source>
|
||||||
<translation>Загружать последовательно (медленнее но удобнее для предпросмотра)</translation>
|
<translation>Загружать последовательно (медленнее но удобнее для предпросмотра)</translation>
|
||||||
</message>
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Skip file checking and start seeding immediately</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>authentication</name>
|
<name>authentication</name>
|
||||||
|
@ -3632,6 +3636,101 @@ Changelog:
|
||||||
<translation>Пожалуста введите минимум один URL.</translation>
|
<translation>Пожалуста введите минимум один URL.</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>downloadThread</name>
|
||||||
|
<message>
|
||||||
|
<source>I/O Error</source>
|
||||||
|
<translation type="unfinished">Ошибка ввода/вывода</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote host name was not found (invalid hostname)</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The operation was canceled</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote server closed the connection prematurely, before the entire reply was received and processed</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The connection to the remote server timed out</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>SSL/TLS handshake failed</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote server refused the connection</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The connection to the proxy server was refused</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The proxy server closed the connection prematurely</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The proxy host name was not found</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The connection to the proxy timed out or the proxy did not reply in time to the request sent</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The proxy requires authentication in order to honour the request but did not accept any credentials offered</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The access to the remote content was denied (401)</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The operation requested on the remote content is not permitted</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote content was not found at the server (404)</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote server requires authentication to serve the content but the credentials provided were not accepted</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The Network Access API cannot honor the request because the protocol is not known</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The requested operation is invalid for this protocol</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>An unknown network-related error was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>An unknown proxy-related error was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>An unknown error related to the remote content was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>A breakdown in protocol was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Unknown error</source>
|
||||||
|
<translation type="unfinished">Неизвестная ошибка</translation>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>downloading</name>
|
<name>downloading</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -4730,19 +4829,19 @@ However, those plugins were disabled.</source>
|
||||||
<name>subDownloadThread</name>
|
<name>subDownloadThread</name>
|
||||||
<message>
|
<message>
|
||||||
<source>Host is unreachable</source>
|
<source>Host is unreachable</source>
|
||||||
<translation>Хост недоступен</translation>
|
<translation type="obsolete">Хост недоступен</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>File was not found (404)</source>
|
<source>File was not found (404)</source>
|
||||||
<translation>Файл не был найден (404)</translation>
|
<translation type="obsolete">Файл не был найден (404)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Connection was denied</source>
|
<source>Connection was denied</source>
|
||||||
<translation>Подключение было отклонено</translation>
|
<translation type="obsolete">Подключение было отклонено</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Url is invalid</source>
|
<source>Url is invalid</source>
|
||||||
<translation>URL некорректен</translation>
|
<translation type="obsolete">URL некорректен</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Connection forbidden (403)</source>
|
<source>Connection forbidden (403)</source>
|
||||||
|
@ -4758,27 +4857,27 @@ However, those plugins were disabled.</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Connection failure</source>
|
<source>Connection failure</source>
|
||||||
<translation>Соединение не установлено</translation>
|
<translation type="obsolete">Соединение не установлено</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Connection was timed out</source>
|
<source>Connection was timed out</source>
|
||||||
<translation>Тайм-аут соединения</translation>
|
<translation type="obsolete">Тайм-аут соединения</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Incorrect network interface</source>
|
<source>Incorrect network interface</source>
|
||||||
<translation>Неправильный интерфейс сети</translation>
|
<translation type="obsolete">Неправильный интерфейс сети</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Unknown error</source>
|
<source>Unknown error</source>
|
||||||
<translation>Неизвестная ошибка</translation>
|
<translation type="obsolete">Неизвестная ошибка</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Could not resolve proxy</source>
|
<source>Could not resolve proxy</source>
|
||||||
<translation>Не удалось соединиться с Прокси</translation>
|
<translation type="obsolete">Не удалось соединиться с Прокси</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>I/O Error</source>
|
<source>I/O Error</source>
|
||||||
<translation>Ошибка ввода/вывода</translation>
|
<translation type="obsolete">Ошибка ввода/вывода</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
|
|
Binary file not shown.
|
@ -3134,6 +3134,10 @@ Záznam zmien:</translation>
|
||||||
<source>Download in sequential order (slower but good for previewing)</source>
|
<source>Download in sequential order (slower but good for previewing)</source>
|
||||||
<translation>Sťahovať v postupnom poradí (pomalšie, ale lepšie pre náhľady)</translation>
|
<translation>Sťahovať v postupnom poradí (pomalšie, ale lepšie pre náhľady)</translation>
|
||||||
</message>
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Skip file checking and start seeding immediately</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>authentication</name>
|
<name>authentication</name>
|
||||||
|
@ -3562,6 +3566,101 @@ Záznam zmien:</translation>
|
||||||
<translation>Prosím, napíšte aspoň jedno URL.</translation>
|
<translation>Prosím, napíšte aspoň jedno URL.</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>downloadThread</name>
|
||||||
|
<message>
|
||||||
|
<source>I/O Error</source>
|
||||||
|
<translation type="unfinished">V/V Chyba</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote host name was not found (invalid hostname)</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The operation was canceled</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote server closed the connection prematurely, before the entire reply was received and processed</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The connection to the remote server timed out</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>SSL/TLS handshake failed</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote server refused the connection</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The connection to the proxy server was refused</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The proxy server closed the connection prematurely</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The proxy host name was not found</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The connection to the proxy timed out or the proxy did not reply in time to the request sent</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The proxy requires authentication in order to honour the request but did not accept any credentials offered</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The access to the remote content was denied (401)</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The operation requested on the remote content is not permitted</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote content was not found at the server (404)</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote server requires authentication to serve the content but the credentials provided were not accepted</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The Network Access API cannot honor the request because the protocol is not known</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The requested operation is invalid for this protocol</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>An unknown network-related error was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>An unknown proxy-related error was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>An unknown error related to the remote content was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>A breakdown in protocol was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Unknown error</source>
|
||||||
|
<translation type="unfinished">Neznáma chyba</translation>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>downloading</name>
|
<name>downloading</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -4699,19 +4798,19 @@ Tieto moduly však boli vypnuté.</translation>
|
||||||
<name>subDownloadThread</name>
|
<name>subDownloadThread</name>
|
||||||
<message>
|
<message>
|
||||||
<source>Host is unreachable</source>
|
<source>Host is unreachable</source>
|
||||||
<translation>Hostiteľ je nedostupný</translation>
|
<translation type="obsolete">Hostiteľ je nedostupný</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>File was not found (404)</source>
|
<source>File was not found (404)</source>
|
||||||
<translation>Súbor nebol nájdený (404)</translation>
|
<translation type="obsolete">Súbor nebol nájdený (404)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Connection was denied</source>
|
<source>Connection was denied</source>
|
||||||
<translation>Spojenie bolo odmietnuté</translation>
|
<translation type="obsolete">Spojenie bolo odmietnuté</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Url is invalid</source>
|
<source>Url is invalid</source>
|
||||||
<translation>URL je neplatné</translation>
|
<translation type="obsolete">URL je neplatné</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Connection forbidden (403)</source>
|
<source>Connection forbidden (403)</source>
|
||||||
|
@ -4727,27 +4826,27 @@ Tieto moduly však boli vypnuté.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Connection failure</source>
|
<source>Connection failure</source>
|
||||||
<translation>Chyba spojenia</translation>
|
<translation type="obsolete">Chyba spojenia</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Connection was timed out</source>
|
<source>Connection was timed out</source>
|
||||||
<translation>Časový limit spojenia vypršal</translation>
|
<translation type="obsolete">Časový limit spojenia vypršal</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Incorrect network interface</source>
|
<source>Incorrect network interface</source>
|
||||||
<translation>Nesprávne sieťové rozhranie</translation>
|
<translation type="obsolete">Nesprávne sieťové rozhranie</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Unknown error</source>
|
<source>Unknown error</source>
|
||||||
<translation>Neznáma chyba</translation>
|
<translation type="obsolete">Neznáma chyba</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Could not resolve proxy</source>
|
<source>Could not resolve proxy</source>
|
||||||
<translation>Nebolo možné preložiť adresu proxy</translation>
|
<translation type="obsolete">Nebolo možné preložiť adresu proxy</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>I/O Error</source>
|
<source>I/O Error</source>
|
||||||
<translation>V/V Chyba</translation>
|
<translation type="obsolete">V/V Chyba</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
|
|
Binary file not shown.
|
@ -1870,6 +1870,10 @@ p, li { white-space: pre-wrap; }
|
||||||
<source>Download in sequential order (slower but good for previewing)</source>
|
<source>Download in sequential order (slower but good for previewing)</source>
|
||||||
<translation>Hämta i sekventiell ordning (långsammare men bra för förhandsvisning)</translation>
|
<translation>Hämta i sekventiell ordning (långsammare men bra för förhandsvisning)</translation>
|
||||||
</message>
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Skip file checking and start seeding immediately</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>authentication</name>
|
<name>authentication</name>
|
||||||
|
@ -2210,6 +2214,101 @@ p, li { white-space: pre-wrap; }
|
||||||
<translation>Ange åtminstone en url.</translation>
|
<translation>Ange åtminstone en url.</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>downloadThread</name>
|
||||||
|
<message>
|
||||||
|
<source>I/O Error</source>
|
||||||
|
<translation type="unfinished">In/Ut-fel</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote host name was not found (invalid hostname)</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The operation was canceled</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote server closed the connection prematurely, before the entire reply was received and processed</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The connection to the remote server timed out</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>SSL/TLS handshake failed</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote server refused the connection</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The connection to the proxy server was refused</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The proxy server closed the connection prematurely</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The proxy host name was not found</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The connection to the proxy timed out or the proxy did not reply in time to the request sent</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The proxy requires authentication in order to honour the request but did not accept any credentials offered</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The access to the remote content was denied (401)</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The operation requested on the remote content is not permitted</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote content was not found at the server (404)</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote server requires authentication to serve the content but the credentials provided were not accepted</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The Network Access API cannot honor the request because the protocol is not known</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The requested operation is invalid for this protocol</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>An unknown network-related error was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>An unknown proxy-related error was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>An unknown error related to the remote content was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>A breakdown in protocol was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Unknown error</source>
|
||||||
|
<translation type="unfinished">Okänt fel</translation>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>downloading</name>
|
<name>downloading</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -2952,43 +3051,43 @@ Dock har dessa insticksmoduler blivit inaktiverade.</translation>
|
||||||
<name>subDownloadThread</name>
|
<name>subDownloadThread</name>
|
||||||
<message>
|
<message>
|
||||||
<source>Host is unreachable</source>
|
<source>Host is unreachable</source>
|
||||||
<translation>Värden är inte nåbar</translation>
|
<translation type="obsolete">Värden är inte nåbar</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>File was not found (404)</source>
|
<source>File was not found (404)</source>
|
||||||
<translation>Filen kunde inte hittas (404)</translation>
|
<translation type="obsolete">Filen kunde inte hittas (404)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Connection was denied</source>
|
<source>Connection was denied</source>
|
||||||
<translation>Anslutningen nekades</translation>
|
<translation type="obsolete">Anslutningen nekades</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Url is invalid</source>
|
<source>Url is invalid</source>
|
||||||
<translation>Url:en är ogiltig</translation>
|
<translation type="obsolete">Url:en är ogiltig</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Connection failure</source>
|
<source>Connection failure</source>
|
||||||
<translation>Anslutningsfel</translation>
|
<translation type="obsolete">Anslutningsfel</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Connection was timed out</source>
|
<source>Connection was timed out</source>
|
||||||
<translation>Tidsgränsen för anslutningen överstegs</translation>
|
<translation type="obsolete">Tidsgränsen för anslutningen överstegs</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Incorrect network interface</source>
|
<source>Incorrect network interface</source>
|
||||||
<translation>Felaktigt nätverksgränssnitt</translation>
|
<translation type="obsolete">Felaktigt nätverksgränssnitt</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Unknown error</source>
|
<source>Unknown error</source>
|
||||||
<translation>Okänt fel</translation>
|
<translation type="obsolete">Okänt fel</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Could not resolve proxy</source>
|
<source>Could not resolve proxy</source>
|
||||||
<translation>Kunde inte slå upp proxy</translation>
|
<translation type="obsolete">Kunde inte slå upp proxy</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>I/O Error</source>
|
<source>I/O Error</source>
|
||||||
<translation>In/Ut-fel</translation>
|
<translation type="obsolete">In/Ut-fel</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
|
|
Binary file not shown.
|
@ -3197,6 +3197,10 @@ Changelog:
|
||||||
<source>Download in sequential order (slower but good for previewing)</source>
|
<source>Download in sequential order (slower but good for previewing)</source>
|
||||||
<translation>Doğru düzende indir (yavaş ama önizleme için iyi)</translation>
|
<translation>Doğru düzende indir (yavaş ama önizleme için iyi)</translation>
|
||||||
</message>
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Skip file checking and start seeding immediately</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>authentication</name>
|
<name>authentication</name>
|
||||||
|
@ -3609,6 +3613,101 @@ Changelog:
|
||||||
<translation>Lütfen en az bir adres girin.</translation>
|
<translation>Lütfen en az bir adres girin.</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>downloadThread</name>
|
||||||
|
<message>
|
||||||
|
<source>I/O Error</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote host name was not found (invalid hostname)</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The operation was canceled</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote server closed the connection prematurely, before the entire reply was received and processed</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The connection to the remote server timed out</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>SSL/TLS handshake failed</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote server refused the connection</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The connection to the proxy server was refused</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The proxy server closed the connection prematurely</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The proxy host name was not found</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The connection to the proxy timed out or the proxy did not reply in time to the request sent</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The proxy requires authentication in order to honour the request but did not accept any credentials offered</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The access to the remote content was denied (401)</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The operation requested on the remote content is not permitted</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote content was not found at the server (404)</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote server requires authentication to serve the content but the credentials provided were not accepted</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The Network Access API cannot honor the request because the protocol is not known</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The requested operation is invalid for this protocol</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>An unknown network-related error was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>An unknown proxy-related error was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>An unknown error related to the remote content was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>A breakdown in protocol was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Unknown error</source>
|
||||||
|
<translation type="unfinished">Bilinmeyen hata</translation>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>downloading</name>
|
<name>downloading</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -4683,19 +4782,19 @@ Bununla birlikte, o eklentiler devre dışı.</translation>
|
||||||
<name>subDownloadThread</name>
|
<name>subDownloadThread</name>
|
||||||
<message>
|
<message>
|
||||||
<source>Host is unreachable</source>
|
<source>Host is unreachable</source>
|
||||||
<translation>Sunucuya erişilemiyor</translation>
|
<translation type="obsolete">Sunucuya erişilemiyor</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>File was not found (404)</source>
|
<source>File was not found (404)</source>
|
||||||
<translation>Dosya bulunamadı (404)</translation>
|
<translation type="obsolete">Dosya bulunamadı (404)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Connection was denied</source>
|
<source>Connection was denied</source>
|
||||||
<translation>Bağlantı reddedildi</translation>
|
<translation type="obsolete">Bağlantı reddedildi</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Url is invalid</source>
|
<source>Url is invalid</source>
|
||||||
<translation>Adres geçersiz</translation>
|
<translation type="obsolete">Adres geçersiz</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Connection forbidden (403)</source>
|
<source>Connection forbidden (403)</source>
|
||||||
|
@ -4711,27 +4810,27 @@ Bununla birlikte, o eklentiler devre dışı.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Connection failure</source>
|
<source>Connection failure</source>
|
||||||
<translation>Bağlantı hatası</translation>
|
<translation type="obsolete">Bağlantı hatası</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Connection was timed out</source>
|
<source>Connection was timed out</source>
|
||||||
<translation>Bağlantı zaman aşımına uğradı</translation>
|
<translation type="obsolete">Bağlantı zaman aşımına uğradı</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Incorrect network interface</source>
|
<source>Incorrect network interface</source>
|
||||||
<translation>Geçersiz ağ arayüzü</translation>
|
<translation type="obsolete">Geçersiz ağ arayüzü</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Unknown error</source>
|
<source>Unknown error</source>
|
||||||
<translation>Bilinmeyen hata</translation>
|
<translation type="obsolete">Bilinmeyen hata</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Could not resolve proxy</source>
|
<source>Could not resolve proxy</source>
|
||||||
<translation>Vekil çözümlenemedi</translation>
|
<translation type="obsolete">Vekil çözümlenemedi</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>I/O Error</source>
|
<source>I/O Error</source>
|
||||||
<translation>Girdi/Çıktı Hatası</translation>
|
<translation type="obsolete">Girdi/Çıktı Hatası</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
|
|
Binary file not shown.
|
@ -3147,6 +3147,10 @@ Changelog:
|
||||||
<source>Download in sequential order (slower but good for previewing)</source>
|
<source>Download in sequential order (slower but good for previewing)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Skip file checking and start seeding immediately</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>authentication</name>
|
<name>authentication</name>
|
||||||
|
@ -3571,6 +3575,101 @@ Changelog:
|
||||||
<translation>Буд-ласка, введіть хоча б один URL.</translation>
|
<translation>Буд-ласка, введіть хоча б один URL.</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>downloadThread</name>
|
||||||
|
<message>
|
||||||
|
<source>I/O Error</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote host name was not found (invalid hostname)</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The operation was canceled</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote server closed the connection prematurely, before the entire reply was received and processed</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The connection to the remote server timed out</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>SSL/TLS handshake failed</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote server refused the connection</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The connection to the proxy server was refused</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The proxy server closed the connection prematurely</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The proxy host name was not found</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The connection to the proxy timed out or the proxy did not reply in time to the request sent</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The proxy requires authentication in order to honour the request but did not accept any credentials offered</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The access to the remote content was denied (401)</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The operation requested on the remote content is not permitted</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote content was not found at the server (404)</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote server requires authentication to serve the content but the credentials provided were not accepted</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The Network Access API cannot honor the request because the protocol is not known</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The requested operation is invalid for this protocol</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>An unknown network-related error was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>An unknown proxy-related error was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>An unknown error related to the remote content was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>A breakdown in protocol was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Unknown error</source>
|
||||||
|
<translation type="unfinished">Невідома помилка</translation>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>downloading</name>
|
<name>downloading</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -4647,19 +4746,19 @@ However, those plugins were disabled.</source>
|
||||||
<name>subDownloadThread</name>
|
<name>subDownloadThread</name>
|
||||||
<message>
|
<message>
|
||||||
<source>Host is unreachable</source>
|
<source>Host is unreachable</source>
|
||||||
<translation>Хост недоступний</translation>
|
<translation type="obsolete">Хост недоступний</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>File was not found (404)</source>
|
<source>File was not found (404)</source>
|
||||||
<translation>Файл не знайдено (404)</translation>
|
<translation type="obsolete">Файл не знайдено (404)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Connection was denied</source>
|
<source>Connection was denied</source>
|
||||||
<translation>Відмовлено у з'єднанні</translation>
|
<translation type="obsolete">Відмовлено у з'єднанні</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Url is invalid</source>
|
<source>Url is invalid</source>
|
||||||
<translation>Неправильний URL</translation>
|
<translation type="obsolete">Неправильний URL</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Connection forbidden (403)</source>
|
<source>Connection forbidden (403)</source>
|
||||||
|
@ -4675,27 +4774,19 @@ However, those plugins were disabled.</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Connection failure</source>
|
<source>Connection failure</source>
|
||||||
<translation>Відмовлено у з'єднанні</translation>
|
<translation type="obsolete">Відмовлено у з'єднанні</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Connection was timed out</source>
|
<source>Connection was timed out</source>
|
||||||
<translation>Вичерпано час на з'єднання</translation>
|
<translation type="obsolete">Вичерпано час на з'єднання</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Incorrect network interface</source>
|
<source>Incorrect network interface</source>
|
||||||
<translation>Неправильний мережевий інтерфейс</translation>
|
<translation type="obsolete">Неправильний мережевий інтерфейс</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Unknown error</source>
|
<source>Unknown error</source>
|
||||||
<translation>Невідома помилка</translation>
|
<translation type="obsolete">Невідома помилка</translation>
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<source>Could not resolve proxy</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<source>I/O Error</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
|
|
Binary file not shown.
|
@ -3379,6 +3379,10 @@ previewing)</source>
|
||||||
<source>Download in sequential order (slower but good for previewing)</source>
|
<source>Download in sequential order (slower but good for previewing)</source>
|
||||||
<translation>按顺序下载(速度有所减慢但利于预览)</translation>
|
<translation>按顺序下载(速度有所减慢但利于预览)</translation>
|
||||||
</message>
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Skip file checking and start seeding immediately</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>authentication</name>
|
<name>authentication</name>
|
||||||
|
@ -3804,6 +3808,101 @@ enabled)</source>
|
||||||
<translation>请至少输入一个URL.</translation>
|
<translation>请至少输入一个URL.</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>downloadThread</name>
|
||||||
|
<message>
|
||||||
|
<source>I/O Error</source>
|
||||||
|
<translation type="unfinished">输入/输出错误</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote host name was not found (invalid hostname)</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The operation was canceled</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote server closed the connection prematurely, before the entire reply was received and processed</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The connection to the remote server timed out</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>SSL/TLS handshake failed</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote server refused the connection</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The connection to the proxy server was refused</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The proxy server closed the connection prematurely</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The proxy host name was not found</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The connection to the proxy timed out or the proxy did not reply in time to the request sent</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The proxy requires authentication in order to honour the request but did not accept any credentials offered</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The access to the remote content was denied (401)</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The operation requested on the remote content is not permitted</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote content was not found at the server (404)</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote server requires authentication to serve the content but the credentials provided were not accepted</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The Network Access API cannot honor the request because the protocol is not known</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The requested operation is invalid for this protocol</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>An unknown network-related error was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>An unknown proxy-related error was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>An unknown error related to the remote content was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>A breakdown in protocol was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Unknown error</source>
|
||||||
|
<translation type="unfinished">未知错误</translation>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>downloading</name>
|
<name>downloading</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -4973,19 +5072,19 @@ network.</source>
|
||||||
<name>subDownloadThread</name>
|
<name>subDownloadThread</name>
|
||||||
<message>
|
<message>
|
||||||
<source>Host is unreachable</source>
|
<source>Host is unreachable</source>
|
||||||
<translation>无法连接到主机</translation>
|
<translation type="obsolete">无法连接到主机</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>File was not found (404)</source>
|
<source>File was not found (404)</source>
|
||||||
<translation>文件未找到(404)</translation>
|
<translation type="obsolete">文件未找到(404)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Connection was denied</source>
|
<source>Connection was denied</source>
|
||||||
<translation>连接被拒绝</translation>
|
<translation type="obsolete">连接被拒绝</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Url is invalid</source>
|
<source>Url is invalid</source>
|
||||||
<translation>网址无效</translation>
|
<translation type="obsolete">网址无效</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Connection forbidden (403)</source>
|
<source>Connection forbidden (403)</source>
|
||||||
|
@ -5001,27 +5100,27 @@ network.</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Connection failure</source>
|
<source>Connection failure</source>
|
||||||
<translation>连接失败</translation>
|
<translation type="obsolete">连接失败</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Connection was timed out</source>
|
<source>Connection was timed out</source>
|
||||||
<translation>连接超时</translation>
|
<translation type="obsolete">连接超时</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Incorrect network interface</source>
|
<source>Incorrect network interface</source>
|
||||||
<translation>不正确的网络关联</translation>
|
<translation type="obsolete">不正确的网络关联</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Unknown error</source>
|
<source>Unknown error</source>
|
||||||
<translation>未知错误</translation>
|
<translation type="obsolete">未知错误</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Could not resolve proxy</source>
|
<source>Could not resolve proxy</source>
|
||||||
<translation>无法联系到代理服务器</translation>
|
<translation type="obsolete">无法联系到代理服务器</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>I/O Error</source>
|
<source>I/O Error</source>
|
||||||
<translation>输入/输出错误</translation>
|
<translation type="obsolete">输入/输出错误</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
|
|
Binary file not shown.
|
@ -1965,6 +1965,10 @@ p, li { white-space: pre-wrap; }
|
||||||
<source>Download in sequential order (slower but good for previewing)</source>
|
<source>Download in sequential order (slower but good for previewing)</source>
|
||||||
<translation>按照順序下載 (較慢但較好預覽)</translation>
|
<translation>按照順序下載 (較慢但較好預覽)</translation>
|
||||||
</message>
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Skip file checking and start seeding immediately</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>authentication</name>
|
<name>authentication</name>
|
||||||
|
@ -2305,6 +2309,101 @@ p, li { white-space: pre-wrap; }
|
||||||
<translation>請輸入至少一個 URL。</translation>
|
<translation>請輸入至少一個 URL。</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>downloadThread</name>
|
||||||
|
<message>
|
||||||
|
<source>I/O Error</source>
|
||||||
|
<translation type="unfinished">I/O 錯誤</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote host name was not found (invalid hostname)</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The operation was canceled</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote server closed the connection prematurely, before the entire reply was received and processed</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The connection to the remote server timed out</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>SSL/TLS handshake failed</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote server refused the connection</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The connection to the proxy server was refused</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The proxy server closed the connection prematurely</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The proxy host name was not found</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The connection to the proxy timed out or the proxy did not reply in time to the request sent</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The proxy requires authentication in order to honour the request but did not accept any credentials offered</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The access to the remote content was denied (401)</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The operation requested on the remote content is not permitted</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote content was not found at the server (404)</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The remote server requires authentication to serve the content but the credentials provided were not accepted</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The Network Access API cannot honor the request because the protocol is not known</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>The requested operation is invalid for this protocol</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>An unknown network-related error was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>An unknown proxy-related error was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>An unknown error related to the remote content was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>A breakdown in protocol was detected</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Unknown error</source>
|
||||||
|
<translation type="unfinished">未知的錯誤</translation>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>downloading</name>
|
<name>downloading</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -3067,43 +3166,43 @@ However, those plugins were disabled.</source>
|
||||||
<name>subDownloadThread</name>
|
<name>subDownloadThread</name>
|
||||||
<message>
|
<message>
|
||||||
<source>Host is unreachable</source>
|
<source>Host is unreachable</source>
|
||||||
<translation>無法連線到主機</translation>
|
<translation type="obsolete">無法連線到主機</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>File was not found (404)</source>
|
<source>File was not found (404)</source>
|
||||||
<translation>找不到檔案 (404)</translation>
|
<translation type="obsolete">找不到檔案 (404)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Connection was denied</source>
|
<source>Connection was denied</source>
|
||||||
<translation>連線被拒絕</translation>
|
<translation type="obsolete">連線被拒絕</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Url is invalid</source>
|
<source>Url is invalid</source>
|
||||||
<translation>URL 是無效的</translation>
|
<translation type="obsolete">URL 是無效的</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Connection failure</source>
|
<source>Connection failure</source>
|
||||||
<translation>連線失敗</translation>
|
<translation type="obsolete">連線失敗</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Connection was timed out</source>
|
<source>Connection was timed out</source>
|
||||||
<translation>連線逾時</translation>
|
<translation type="obsolete">連線逾時</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Incorrect network interface</source>
|
<source>Incorrect network interface</source>
|
||||||
<translation>錯誤的網路介面</translation>
|
<translation type="obsolete">錯誤的網路介面</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Unknown error</source>
|
<source>Unknown error</source>
|
||||||
<translation>未知的錯誤</translation>
|
<translation type="obsolete">未知的錯誤</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Could not resolve proxy</source>
|
<source>Could not resolve proxy</source>
|
||||||
<translation>無法解析代理伺服器</translation>
|
<translation type="obsolete">無法解析代理伺服器</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>I/O Error</source>
|
<source>I/O Error</source>
|
||||||
<translation>I/O 錯誤</translation>
|
<translation type="obsolete">I/O 錯誤</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
|
|
|
@ -95,7 +95,6 @@ QT += network \
|
||||||
xml
|
xml
|
||||||
DEFINES += QT_NO_CAST_TO_ASCII
|
DEFINES += QT_NO_CAST_TO_ASCII
|
||||||
|
|
||||||
# QT_NO_CAST_FROM_ASCII
|
|
||||||
# Windows
|
# Windows
|
||||||
# usually built as static
|
# usually built as static
|
||||||
# win32:LIBS += -ltorrent -lboost_system
|
# win32:LIBS += -ltorrent -lboost_system
|
||||||
|
|
|
@ -444,6 +444,8 @@ public slots:
|
||||||
settings.setValue(QString::fromUtf8("LastDirTorrentAdd"), savePathTxt->text());
|
settings.setValue(QString::fromUtf8("LastDirTorrentAdd"), savePathTxt->text());
|
||||||
// Create .incremental file if necessary
|
// Create .incremental file if necessary
|
||||||
TorrentTempData::setSequential(hash, checkIncrementalDL->isChecked());
|
TorrentTempData::setSequential(hash, checkIncrementalDL->isChecked());
|
||||||
|
// Skip file checking and directly start seeding
|
||||||
|
TorrentTempData::setSeedingMode(hash, addInSeed->isChecked());
|
||||||
// Check if there is at least one selected file
|
// Check if there is at least one selected file
|
||||||
if(allFiltered()){
|
if(allFiltered()){
|
||||||
QMessageBox::warning(0, tr("Invalid file selection"), tr("You must select at least one file in the torrent"));
|
QMessageBox::warning(0, tr("Invalid file selection"), tr("You must select at least one file in the torrent"));
|
||||||
|
|
|
@ -99,6 +99,25 @@ public:
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void setSeedingMode(QString hash,bool seed){
|
||||||
|
QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent-resume"));
|
||||||
|
QHash<QString, QVariant> all_data = settings.value("torrents-tmp", QHash<QString, QVariant>()).toHash();
|
||||||
|
QHash<QString, QVariant> data = all_data[hash].toHash();
|
||||||
|
data["seeding"] = seed;
|
||||||
|
all_data[hash] = data;
|
||||||
|
settings.setValue("torrents-tmp", all_data);
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool isSeedingMode(QString hash){
|
||||||
|
QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent-resume"));
|
||||||
|
QHash<QString, QVariant> all_data = settings.value("torrents-tmp", QHash<QString, QVariant>()).toHash();
|
||||||
|
QHash<QString, QVariant> data = all_data[hash].toHash();
|
||||||
|
if(data.contains("seeding"))
|
||||||
|
return data["seeding"].toBool();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
static QString getSavePath(QString hash) {
|
static QString getSavePath(QString hash) {
|
||||||
QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent-resume"));
|
QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent-resume"));
|
||||||
QHash<QString, QVariant> all_data = settings.value("torrents-tmp", QHash<QString, QVariant>()).toHash();
|
QHash<QString, QVariant> all_data = settings.value("torrents-tmp", QHash<QString, QVariant>()).toHash();
|
||||||
|
|
Loading…
Reference in a new issue