mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-19 15:07:22 -06:00
Compare commits
66 Commits
release-3.
...
release-3.
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
55259ff3ba | ||
|
|
da5b49fe5a | ||
|
|
89bc0fb3e3 | ||
|
|
c86bfe53d0 | ||
|
|
dd177c03e6 | ||
|
|
6615d4987b | ||
|
|
c6e0facc0b | ||
|
|
c6845781c7 | ||
|
|
5decf71772 | ||
|
|
b7f313a35c | ||
|
|
8c14c7926f | ||
|
|
ca6ec01f1f | ||
|
|
2c42ab7544 | ||
|
|
2dbbfc1031 | ||
|
|
3762401cd9 | ||
|
|
65c0f3f041 | ||
|
|
7ab877c95e | ||
|
|
7b658a52dd | ||
|
|
3705cb8067 | ||
|
|
8b4be9bef6 | ||
|
|
38bef752dc | ||
|
|
a61a84d419 | ||
|
|
553abb6442 | ||
|
|
14419c190e | ||
|
|
4e6ab18446 | ||
|
|
fdeec686bf | ||
|
|
25e4f562e7 | ||
|
|
d86baf1ed8 | ||
|
|
8112405498 | ||
|
|
7f73eca01d | ||
|
|
9951017f8b | ||
|
|
57bbaeab06 | ||
|
|
52fefd3dd6 | ||
|
|
c1cddd2f7a | ||
|
|
caabe526ca | ||
|
|
19475f5abb | ||
|
|
dca36a4817 | ||
|
|
e38ef96c94 | ||
|
|
43aff3885d | ||
|
|
4b4d52d8d3 | ||
|
|
735247f41f | ||
|
|
422d0c9210 | ||
|
|
6ea90c9741 | ||
|
|
c2bbb5b71a | ||
|
|
a2656670f7 | ||
|
|
ae2781b4c8 | ||
|
|
65a81f4fca | ||
|
|
e025b2aa10 | ||
|
|
9399f06db9 | ||
|
|
2e6370084a | ||
|
|
adc478a8dc | ||
|
|
247c9a85e2 | ||
|
|
40fc98d354 | ||
|
|
5797d86c05 | ||
|
|
62de16c56e | ||
|
|
d89f2b0783 | ||
|
|
d6b2131a91 | ||
|
|
b085fc12d0 | ||
|
|
0da431b7a3 | ||
|
|
3e18308301 | ||
|
|
47c7ffba99 | ||
|
|
42b1dffbb9 | ||
|
|
73ebe7e1fb | ||
|
|
c9c3589946 | ||
|
|
62596ab533 | ||
|
|
0be1c661aa |
10
Changelog
10
Changelog
@@ -1,3 +1,13 @@
|
|||||||
|
* Sat Mar 16 2013 - Christophe Dumez <chris@qbittorrent.org> - v3.0.9
|
||||||
|
- BUGFIX: Raise qBittorrent windows when another instance is launched
|
||||||
|
- BUGFIX: Show human readable names for network interfaces in preferences (Windows)
|
||||||
|
- BUGFIX: Fix torrent creator bug when saving non-latin path (Windows)
|
||||||
|
- BUGFIX: Enable 'copy magnet uri' for torrents without metadata too
|
||||||
|
- BUGFIX: Fix a few JSON parser issues (Gelmir)
|
||||||
|
- BUGFIX: Add support for gzipped encoded HTTP responses (daimor)
|
||||||
|
- BUGFIX: Fix possibly missing "Add torrent" icon (Driim)
|
||||||
|
- OTHER: Add search plugin for Legit Torrents
|
||||||
|
|
||||||
* Sun Jan 20 2013 - Christophe Dumez <chris@qbittorrent.org> - v3.0.8
|
* Sun Jan 20 2013 - Christophe Dumez <chris@qbittorrent.org> - v3.0.8
|
||||||
- BUGFIX: Fix support for --no-splash command line argument
|
- BUGFIX: Fix support for --no-splash command line argument
|
||||||
- BUGFIX: Fix compilation error with libtorrent v0.15
|
- BUGFIX: Fix compilation error with libtorrent v0.15
|
||||||
|
|||||||
@@ -19,6 +19,8 @@ LIBS += -lboost_system-mt
|
|||||||
#LIBS += -lboost_filesystem-mt
|
#LIBS += -lboost_filesystem-mt
|
||||||
# Carbon
|
# Carbon
|
||||||
LIBS += -framework Carbon -framework IOKit
|
LIBS += -framework Carbon -framework IOKit
|
||||||
|
# Zlib
|
||||||
|
LIBS += -lz
|
||||||
|
|
||||||
document_icon.path = Contents/Resources
|
document_icon.path = Contents/Resources
|
||||||
document_icon.files = mac/qBitTorrentDocument.icns
|
document_icon.files = mac/qBitTorrentDocument.icns
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ LIBS += -ltorrent-rasterbar \
|
|||||||
-lboost_thread \
|
-lboost_thread \
|
||||||
-lboost_system \
|
-lboost_system \
|
||||||
-lboost_filesystem \
|
-lboost_filesystem \
|
||||||
-lssl -lcrypto -lidn -lpthread
|
-lssl -lcrypto -lidn -lpthread -lz
|
||||||
|
|
||||||
RC_FILE = qbittorrent_os2.rc
|
RC_FILE = qbittorrent_os2.rc
|
||||||
|
|
||||||
|
|||||||
@@ -323,7 +323,7 @@ void AddNewTorrentDialog::updateDiskSpaceLabel()
|
|||||||
void AddNewTorrentDialog::onSavePathChanged(int index)
|
void AddNewTorrentDialog::onSavePathChanged(int index)
|
||||||
{
|
{
|
||||||
static int old_index = 0;
|
static int old_index = 0;
|
||||||
static QDir defaultSaveDir(ui->save_path_combo->itemData(0).toString());
|
Preferences pref;
|
||||||
|
|
||||||
if (index == (ui->save_path_combo->count() - 1)) {
|
if (index == (ui->save_path_combo->count() - 1)) {
|
||||||
disconnect(ui->save_path_combo, SIGNAL(currentIndexChanged(int)), this, SLOT(onSavePathChanged(int)));
|
disconnect(ui->save_path_combo, SIGNAL(currentIndexChanged(int)), this, SLOT(onSavePathChanged(int)));
|
||||||
@@ -370,7 +370,7 @@ void AddNewTorrentDialog::onSavePathChanged(int index)
|
|||||||
}
|
}
|
||||||
// Toggle default save path setting checkbox visibility
|
// Toggle default save path setting checkbox visibility
|
||||||
ui->default_save_path_cb->setChecked(false);
|
ui->default_save_path_cb->setChecked(false);
|
||||||
ui->default_save_path_cb->setVisible(QDir(ui->save_path_combo->itemData(ui->save_path_combo->currentIndex()).toString()) != defaultSaveDir);
|
ui->default_save_path_cb->setVisible(QDir(ui->save_path_combo->itemData(ui->save_path_combo->currentIndex()).toString()) != pref.getSavePath());
|
||||||
relayout();
|
relayout();
|
||||||
// Remember index
|
// Remember index
|
||||||
old_index = ui->save_path_combo->currentIndex();
|
old_index = ui->save_path_combo->currentIndex();
|
||||||
@@ -394,7 +394,7 @@ void AddNewTorrentDialog::renameSelectedFile()
|
|||||||
bool ok;
|
bool ok;
|
||||||
const QString new_name_last = QInputDialog::getText(this, tr("Rename the file"),
|
const QString new_name_last = QInputDialog::getText(this, tr("Rename the file"),
|
||||||
tr("New name:"), QLineEdit::Normal,
|
tr("New name:"), QLineEdit::Normal,
|
||||||
index.data().toString(), &ok);
|
index.data().toString(), &ok).trimmed();
|
||||||
if (ok && !new_name_last.isEmpty()) {
|
if (ok && !new_name_last.isEmpty()) {
|
||||||
if (!fsutils::isValidFileSystemName(new_name_last)) {
|
if (!fsutils::isValidFileSystemName(new_name_last)) {
|
||||||
QMessageBox::warning(this, tr("The file could not be renamed"),
|
QMessageBox::warning(this, tr("The file could not be renamed"),
|
||||||
|
|||||||
@@ -50,6 +50,56 @@ DownloadThread::DownloadThread(QObject* parent) : QObject(parent) {
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QByteArray DownloadThread::gUncompress(Bytef *inData, size_t len) {
|
||||||
|
if (len <= 4) {
|
||||||
|
qWarning("gUncompress: Input data is truncated");
|
||||||
|
return QByteArray();
|
||||||
|
}
|
||||||
|
|
||||||
|
QByteArray result;
|
||||||
|
z_stream strm;
|
||||||
|
static const int CHUNK_SIZE = 1024;
|
||||||
|
char out[CHUNK_SIZE];
|
||||||
|
|
||||||
|
/* allocate inflate state */
|
||||||
|
strm.zalloc = Z_NULL;
|
||||||
|
strm.zfree = Z_NULL;
|
||||||
|
strm.opaque = Z_NULL;
|
||||||
|
strm.avail_in = len;
|
||||||
|
strm.next_in = inData;
|
||||||
|
|
||||||
|
const int windowBits = 15;
|
||||||
|
const int ENABLE_ZLIB_GZIP = 32;
|
||||||
|
|
||||||
|
int ret = inflateInit2(&strm, windowBits|ENABLE_ZLIB_GZIP); // gzip decoding
|
||||||
|
if (ret != Z_OK)
|
||||||
|
return QByteArray();
|
||||||
|
|
||||||
|
// run inflate()
|
||||||
|
do {
|
||||||
|
strm.avail_out = CHUNK_SIZE;
|
||||||
|
strm.next_out = reinterpret_cast<unsigned char*>(out);
|
||||||
|
|
||||||
|
ret = inflate(&strm, Z_NO_FLUSH);
|
||||||
|
Q_ASSERT(ret != Z_STREAM_ERROR); // state not clobbered
|
||||||
|
|
||||||
|
switch (ret) {
|
||||||
|
case Z_NEED_DICT:
|
||||||
|
case Z_DATA_ERROR:
|
||||||
|
case Z_MEM_ERROR:
|
||||||
|
(void) inflateEnd(&strm);
|
||||||
|
|
||||||
|
return QByteArray();
|
||||||
|
}
|
||||||
|
|
||||||
|
result.append(out, CHUNK_SIZE - strm.avail_out);
|
||||||
|
} while (!strm.avail_out);
|
||||||
|
|
||||||
|
// clean up and return
|
||||||
|
inflateEnd(&strm);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
void DownloadThread::processDlFinished(QNetworkReply* reply) {
|
void DownloadThread::processDlFinished(QNetworkReply* reply) {
|
||||||
QString url = reply->url().toString();
|
QString url = reply->url().toString();
|
||||||
qDebug("Download finished: %s", qPrintable(url));
|
qDebug("Download finished: %s", qPrintable(url));
|
||||||
@@ -72,7 +122,8 @@ void DownloadThread::processDlFinished(QNetworkReply* reply) {
|
|||||||
const QString newUrlString = newUrl.toString();
|
const QString newUrlString = newUrl.toString();
|
||||||
qDebug("Redirecting from %s to %s", qPrintable(url), qPrintable(newUrlString));
|
qDebug("Redirecting from %s to %s", qPrintable(url), qPrintable(newUrlString));
|
||||||
m_redirectMapping.insert(newUrlString, url);
|
m_redirectMapping.insert(newUrlString, url);
|
||||||
downloadUrl(newUrlString);
|
// redirecting with first cookies
|
||||||
|
downloadUrl(newUrlString, m_networkManager.cookieJar()->cookiesForUrl(url));
|
||||||
reply->deleteLater();
|
reply->deleteLater();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -87,8 +138,12 @@ void DownloadThread::processDlFinished(QNetworkReply* reply) {
|
|||||||
QString filePath = tmpfile->fileName();
|
QString filePath = tmpfile->fileName();
|
||||||
qDebug("Temporary filename is: %s", qPrintable(filePath));
|
qDebug("Temporary filename is: %s", qPrintable(filePath));
|
||||||
if (reply->isOpen() || reply->open(QIODevice::ReadOnly)) {
|
if (reply->isOpen() || reply->open(QIODevice::ReadOnly)) {
|
||||||
// TODO: Support GZIP compression
|
QByteArray replyData = reply->readAll();
|
||||||
tmpfile->write(reply->readAll());
|
if (reply->rawHeader("Content-Encoding") == "gzip") {
|
||||||
|
// uncompress gzip reply
|
||||||
|
replyData = gUncompress(reinterpret_cast<unsigned char*>(replyData.data()), replyData.length());
|
||||||
|
}
|
||||||
|
tmpfile->write(replyData);
|
||||||
tmpfile->close();
|
tmpfile->close();
|
||||||
// XXX: tmpfile needs to be deleted on Windows before using the file
|
// XXX: tmpfile needs to be deleted on Windows before using the file
|
||||||
// or it will complain that the file is used by another process.
|
// or it will complain that the file is used by another process.
|
||||||
@@ -136,6 +191,8 @@ QNetworkReply* DownloadThread::downloadUrl(const QString &url, const QList<QNetw
|
|||||||
qDebug("%s=%s", m_networkManager.cookieJar()->cookiesForUrl(url).at(i).name().data(), m_networkManager.cookieJar()->cookiesForUrl(url).at(i).value().data());
|
qDebug("%s=%s", m_networkManager.cookieJar()->cookiesForUrl(url).at(i).name().data(), m_networkManager.cookieJar()->cookiesForUrl(url).at(i).value().data());
|
||||||
qDebug("Domain: %s, Path: %s", qPrintable(m_networkManager.cookieJar()->cookiesForUrl(url).at(i).domain()), qPrintable(m_networkManager.cookieJar()->cookiesForUrl(url).at(i).path()));
|
qDebug("Domain: %s, Path: %s", qPrintable(m_networkManager.cookieJar()->cookiesForUrl(url).at(i).domain()), qPrintable(m_networkManager.cookieJar()->cookiesForUrl(url).at(i).path()));
|
||||||
}
|
}
|
||||||
|
// accept gzip
|
||||||
|
request.setRawHeader("Accept-Encoding", "gzip");
|
||||||
return m_networkManager.get(request);
|
return m_networkManager.get(request);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -36,6 +36,7 @@
|
|||||||
#include <QObject>
|
#include <QObject>
|
||||||
#include <QHash>
|
#include <QHash>
|
||||||
#include <QSslError>
|
#include <QSslError>
|
||||||
|
#include <zlib.h>
|
||||||
|
|
||||||
QT_BEGIN_NAMESPACE
|
QT_BEGIN_NAMESPACE
|
||||||
class QNetworkAccessManager;
|
class QNetworkAccessManager;
|
||||||
@@ -62,6 +63,7 @@ private slots:
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
static QByteArray gUncompress(Bytef *inData, size_t len);
|
||||||
QString errorCodeToString(QNetworkReply::NetworkError status);
|
QString errorCodeToString(QNetworkReply::NetworkError status);
|
||||||
void applyProxySettings();
|
void applyProxySettings();
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@@ -42,12 +42,12 @@ p, li { white-space: pre-wrap; }
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../about.ui" line="183"/>
|
<location filename="../about.ui" line="183"/>
|
||||||
<source>Country:</source>
|
<source>Country:</source>
|
||||||
<translation>Paese:</translation>
|
<translation>Nazione:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../about.ui" line="202"/>
|
<location filename="../about.ui" line="202"/>
|
||||||
<source>E-mail:</source>
|
<source>E-mail:</source>
|
||||||
<translation>E-mail:</translation>
|
<translation>Email:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../about.ui" line="276"/>
|
<location filename="../about.ui" line="276"/>
|
||||||
@@ -57,7 +57,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../about.ui" line="288"/>
|
<location filename="../about.ui" line="288"/>
|
||||||
<source>This version of qBittorrent was built against the following libraries:</source>
|
<source>This version of qBittorrent was built against the following libraries:</source>
|
||||||
<translation>Questa versione di qBittorrent è stata costruita con le seguenti librerie:</translation>
|
<translation>Questa versione di qBittorrent è stata sviluppata con le seguenti librerie:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../about.ui" line="307"/>
|
<location filename="../about.ui" line="307"/>
|
||||||
@@ -92,9 +92,9 @@ p, li { white-space: pre-wrap; }
|
|||||||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||||
p, li { white-space: pre-wrap; }
|
p, li { white-space: pre-wrap; }
|
||||||
</style></head><body style=" font-family:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;">
|
</style></head><body style=" font-family:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;">
|
||||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">An advanced BitTorrent client programmed in C++, based on Qt4 toolkit and libtorrent-rasterbar. <br /><br />Copyright ©2006-2012 Christophe Dumez<br /><br />Home Page: <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0000ff;">http://www.qbittorrent.org</span></a></p>
|
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Un client BitTorrent avanzato sviluppato in C++, basato sugli strumenti di sviluppo Qt4 e libtorrent-rasterbar. <br /><br />Copyright ©2006-2012 Christophe Dumez<br /><br />Home Page: <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0000ff;">http://www.qbittorrent.org</span></a></p>
|
||||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Bug Tracker: <a href="http://bugs.qbittorrent.org"><span style=" text-decoration: underline; color:#0000ff;">http://bugs.qbittorrent.org</span></a><br />Forum: <a href="http://forum.qbittorrent.org"><span style=" text-decoration: underline; color:#0000ff;">http://forum.qbittorrent.org</span></a></p>
|
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Bug tracker: <a href="http://bugs.qbittorrent.org"><span style=" text-decoration: underline; color:#0000ff;">http://bugs.qbittorrent.org</span></a><br />Forum: <a href="http://forum.qbittorrent.org"><span style=" text-decoration: underline; color:#0000ff;">http://forum.qbittorrent.org</span></a></p>
|
||||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">IRC: #qbittorrent on Freenode</p></body></html></translation>
|
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">IRC: #qbittorrent in Freenode</p></body></html></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../about.ui" line="190"/>
|
<location filename="../about.ui" line="190"/>
|
||||||
@@ -140,7 +140,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../about.ui" line="233"/>
|
<location filename="../about.ui" line="233"/>
|
||||||
<source>Thanks to</source>
|
<source>Thanks to</source>
|
||||||
<translation>Grazie a</translation>
|
<translation>Ringraziamenti</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
@@ -313,7 +313,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../addnewtorrentdialog.cpp" line="461"/>
|
<location filename="../addnewtorrentdialog.cpp" line="461"/>
|
||||||
<source>The folder could not be renamed</source>
|
<source>The folder could not be renamed</source>
|
||||||
<translation>La cartelal non può essere rinominata</translation>
|
<translation>La cartella non può essere rinominata</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../addnewtorrentdialog.cpp" line="520"/>
|
<location filename="../addnewtorrentdialog.cpp" line="520"/>
|
||||||
@@ -339,7 +339,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../preferences/advancedsettings.h" line="172"/>
|
<location filename="../preferences/advancedsettings.h" line="172"/>
|
||||||
<source>Disk write cache size</source>
|
<source>Disk write cache size</source>
|
||||||
<translation>Dimensione cache di scrittura su disco</translation>
|
<translation>Dimensione cache scrittura su disco</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../preferences/advancedsettings.h" line="161"/>
|
<location filename="../preferences/advancedsettings.h" line="161"/>
|
||||||
@@ -415,12 +415,12 @@ p, li { white-space: pre-wrap; }
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../preferences/advancedsettings.h" line="200"/>
|
<location filename="../preferences/advancedsettings.h" line="200"/>
|
||||||
<source>Resolve peer host names</source>
|
<source>Resolve peer host names</source>
|
||||||
<translation>Risolvi gli host name dei peer</translation>
|
<translation>Risolvi i nomi host dei peer</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../preferences/advancedsettings.h" line="205"/>
|
<location filename="../preferences/advancedsettings.h" line="205"/>
|
||||||
<source>Maximum number of half-open connections [0: Disabled]</source>
|
<source>Maximum number of half-open connections [0: Disabled]</source>
|
||||||
<translation>Massimo numero di connesioni semi aperte [0: Disabilitato]</translation>
|
<translation>Massimo numero di connessioni semi aperte [0: Disabilitato]</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../preferences/advancedsettings.h" line="208"/>
|
<location filename="../preferences/advancedsettings.h" line="208"/>
|
||||||
@@ -441,7 +441,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../preferences/advancedsettings.h" line="231"/>
|
<location filename="../preferences/advancedsettings.h" line="231"/>
|
||||||
<source>IP Address to report to trackers (requires restart)</source>
|
<source>IP Address to report to trackers (requires restart)</source>
|
||||||
<translation>Indirizzo Ip da riportare ai tracker</translation>
|
<translation>Indirizzo IP da riportare ai tracker (richiede riavvio)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../preferences/advancedsettings.h" line="234"/>
|
<location filename="../preferences/advancedsettings.h" line="234"/>
|
||||||
@@ -474,12 +474,12 @@ p, li { white-space: pre-wrap; }
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../preferences/advancedsettings.h" line="237"/>
|
<location filename="../preferences/advancedsettings.h" line="237"/>
|
||||||
<source>Enable embedded tracker</source>
|
<source>Enable embedded tracker</source>
|
||||||
<translation>Abilita i tracker connessi</translation>
|
<translation>Abilita tracker incorporato</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../preferences/advancedsettings.h" line="242"/>
|
<location filename="../preferences/advancedsettings.h" line="242"/>
|
||||||
<source>Embedded tracker port</source>
|
<source>Embedded tracker port</source>
|
||||||
<translation>Porte tracker collegate</translation>
|
<translation>Porta tracker incorporato</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
@@ -599,7 +599,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../rss/automatedrssdownloader.cpp" line="346"/>
|
<location filename="../rss/automatedrssdownloader.cpp" line="346"/>
|
||||||
<source>Destination directory</source>
|
<source>Destination directory</source>
|
||||||
<translation>Cartella di destinazione</translation>
|
<translation>Cartella destinazione</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../rss/automatedrssdownloader.cpp" line="354"/>
|
<location filename="../rss/automatedrssdownloader.cpp" line="354"/>
|
||||||
@@ -793,7 +793,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<source>'%1' was removed from transfer list and hard disk.</source>
|
<source>'%1' was removed from transfer list and hard disk.</source>
|
||||||
<comment>'xxx.avi' was removed...</comment>
|
<comment>'xxx.avi' was removed...</comment>
|
||||||
<translatorcomment>'xxx.avi' è stato rimosso...</translatorcomment>
|
<translatorcomment>'xxx.avi' è stato rimosso...</translatorcomment>
|
||||||
<translation type="obsolete">'%1' è stato rimosso dall'elenco dei trasferimenti e dal disco.</translation>
|
<translation type="obsolete">'%1' è stato rimosso dall'elenco dei trasferimenti e dal disco fisso.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>'%1' was removed from transfer list.</source>
|
<source>'%1' was removed from transfer list.</source>
|
||||||
@@ -803,7 +803,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>'%1' is not a valid magnet URI.</source>
|
<source>'%1' is not a valid magnet URI.</source>
|
||||||
<translation type="obsolete">'%1' non è un URI magnetico valido.</translation>
|
<translation type="obsolete">'%1' non è un URL magnet valido.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>'%1' is already in download list.</source>
|
<source>'%1' is already in download list.</source>
|
||||||
@@ -1329,7 +1329,7 @@ Si consiglia di controllare questa informazione nelle preferenze del tuo browser
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Choose save path</source>
|
<source>Choose save path</source>
|
||||||
<translation type="obsolete">Scegli una cartella di salvataggio</translation>
|
<translation type="obsolete">Scegli una cartella per il salvataggio</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Filter testing error</source>
|
<source>Filter testing error</source>
|
||||||
@@ -1470,8 +1470,8 @@ Si consiglia di controllare questa informazione nelle preferenze del tuo browser
|
|||||||
<message>
|
<message>
|
||||||
<source>qBittorrent is not the default application to open torrent files or Magnet links.
|
<source>qBittorrent is not the default application to open torrent files or Magnet links.
|
||||||
Do you want to associate qBittorrent to torrent files and Magnet links?</source>
|
Do you want to associate qBittorrent to torrent files and Magnet links?</source>
|
||||||
<translation type="obsolete">qBittorrent non è l'applicazione predefinita per l'apertura di torrent e magnet links.
|
<translation type="obsolete">qBittorrent non è l'applicazione predefinita per l'apertura di file torrent e collegamenti magnet.
|
||||||
Vuoi associare qBittorrent ai file .torrent e ai magnet links?</translation>
|
Vuoi associare qBittorrent ai file .torrent e ai collegamenti magnet?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Password update</source>
|
<source>Password update</source>
|
||||||
@@ -1928,12 +1928,12 @@ Chiudere qBittorrent?</translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../webui/httpserver.cpp" line="113"/>
|
<location filename="../webui/httpserver.cpp" line="113"/>
|
||||||
<source>Download Torrents from their URL or Magnet link</source>
|
<source>Download Torrents from their URL or Magnet link</source>
|
||||||
<translation>Scarica torrent da indirizzo web o link magnetico</translation>
|
<translation>Scarica torrent da URL o da collegamento magnet</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../webui/httpserver.cpp" line="114"/>
|
<location filename="../webui/httpserver.cpp" line="114"/>
|
||||||
<source>Only one link per line</source>
|
<source>Only one link per line</source>
|
||||||
<translation>Solo un link per riga</translation>
|
<translation>Solo un collegamento per riga</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../webui/httpserver.cpp" line="115"/>
|
<location filename="../webui/httpserver.cpp" line="115"/>
|
||||||
@@ -1958,7 +1958,7 @@ Chiudere qBittorrent?</translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../webui/httpserver.cpp" line="119"/>
|
<location filename="../webui/httpserver.cpp" line="119"/>
|
||||||
<source>Are you sure you want to delete the selected torrents from the transfer list and hard disk?</source>
|
<source>Are you sure you want to delete the selected torrents from the transfer list and hard disk?</source>
|
||||||
<translation>Eliminare i torrent selezionati dall'elenco dei trasferimenti e dal disco?</translation>
|
<translation>Eliminare i torrent selezionati dall'elenco dei trasferimenti e dal disco fisso?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../webui/httpserver.cpp" line="120"/>
|
<location filename="../webui/httpserver.cpp" line="120"/>
|
||||||
@@ -2039,7 +2039,7 @@ Chiudere qBittorrent?</translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../webui/httpserver.cpp" line="135"/>
|
<location filename="../webui/httpserver.cpp" line="135"/>
|
||||||
<source>The following parameters are supported:</source>
|
<source>The following parameters are supported:</source>
|
||||||
<translation>I seguenti parametri sono supportati:</translation>
|
<translation>Sono supportati:i seguenti parametri</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../webui/httpserver.cpp" line="136"/>
|
<location filename="../webui/httpserver.cpp" line="136"/>
|
||||||
@@ -2081,7 +2081,7 @@ Non verranno emessi avvisi.</translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="111"/>
|
<location filename="../main.cpp" line="111"/>
|
||||||
<source>Cancel</source>
|
<source>Cancel</source>
|
||||||
<translation>Cancella</translation>
|
<translation>Anuulla</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="112"/>
|
<location filename="../main.cpp" line="112"/>
|
||||||
@@ -2152,7 +2152,7 @@ Non verranno emessi avvisi.</translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.ui" line="190"/>
|
<location filename="../mainwindow.ui" line="190"/>
|
||||||
<source>Torrent &creator</source>
|
<source>Torrent &creator</source>
|
||||||
<translation>Creatore &Torrent</translation>
|
<translation>Crea &Torrent</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.ui" line="200"/>
|
<location filename="../mainwindow.ui" line="200"/>
|
||||||
@@ -2177,7 +2177,7 @@ Non verranno emessi avvisi.</translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.ui" line="171"/>
|
<location filename="../mainwindow.ui" line="171"/>
|
||||||
<source>&Delete</source>
|
<source>&Delete</source>
|
||||||
<translation>&Cancella</translation>
|
<translation>&Elimina</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.ui" line="322"/>
|
<location filename="../mainwindow.ui" line="322"/>
|
||||||
@@ -2218,7 +2218,7 @@ Non verranno emessi avvisi.</translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.ui" line="185"/>
|
<location filename="../mainwindow.ui" line="185"/>
|
||||||
<source>Add &link to torrent...</source>
|
<source>Add &link to torrent...</source>
|
||||||
<translation>Aggiungi &link al torrent...</translation>
|
<translation>Aggiungi co&llegamento al torrent...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.ui" line="195"/>
|
<location filename="../mainwindow.ui" line="195"/>
|
||||||
@@ -2228,28 +2228,28 @@ Non verranno emessi avvisi.</translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.ui" line="210"/>
|
<location filename="../mainwindow.ui" line="210"/>
|
||||||
<source>&Documentation</source>
|
<source>&Documentation</source>
|
||||||
<translation>&Documentazione</translation>
|
<translation>Gui&da in linea</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.ui" line="215"/>
|
<location filename="../mainwindow.ui" line="215"/>
|
||||||
<source>Set global download limit...</source>
|
<source>Set global download limit...</source>
|
||||||
<translation>Imposta limiti di download globali...</translation>
|
<translation>Imposta limite globale di download...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.ui" line="220"/>
|
<location filename="../mainwindow.ui" line="220"/>
|
||||||
<source>Set global upload limit...</source>
|
<source>Set global upload limit...</source>
|
||||||
<translation>Imposta limiti di upload globali...</translation>
|
<translation>Imposta limite globale di upload...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.ui" line="330"/>
|
<location filename="../mainwindow.ui" line="330"/>
|
||||||
<source>Execution &Log</source>
|
<source>Execution &Log</source>
|
||||||
<translation>&Log di esecuzione</translation>
|
<translation>&Registro attività</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.ui" line="333"/>
|
<location filename="../mainwindow.ui" line="333"/>
|
||||||
<location filename="../mainwindow.cpp" line="1365"/>
|
<location filename="../mainwindow.cpp" line="1365"/>
|
||||||
<source>Execution Log</source>
|
<source>Execution Log</source>
|
||||||
<translation>Log di esecuzione</translation>
|
<translation>Registro attività</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.ui" line="341"/>
|
<location filename="../mainwindow.ui" line="341"/>
|
||||||
@@ -2405,8 +2405,8 @@ Non verranno emessi avvisi.</translation>
|
|||||||
<location filename="../mainwindow.cpp" line="301"/>
|
<location filename="../mainwindow.cpp" line="301"/>
|
||||||
<source>qBittorrent is not the default application to open torrent files or Magnet links.
|
<source>qBittorrent is not the default application to open torrent files or Magnet links.
|
||||||
Do you want to associate qBittorrent to torrent files and Magnet links?</source>
|
Do you want to associate qBittorrent to torrent files and Magnet links?</source>
|
||||||
<translation>qBittorrent non è l'applicazione predefinita per l'apertura di torrent e magnet links.
|
<translation>qBittorrent non è l'applicazione predefinita per l'apertura di file torrent o collegamenti magnet.
|
||||||
Vuoi associare qBittorrent ai file .torrent e ai magnet links?</translation>
|
Vuoi associare qBittorrent ai file .torrent e ai collegamenti magnet?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="402"/>
|
<location filename="../mainwindow.cpp" line="402"/>
|
||||||
@@ -2921,27 +2921,27 @@ Aggiornare qBittorrent alla versione %1?</translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../preferences/options.ui" line="1424"/>
|
<location filename="../preferences/options.ui" line="1424"/>
|
||||||
<source>Global Rate Limits</source>
|
<source>Global Rate Limits</source>
|
||||||
<translation>Limiti Frequenza Globale</translation>
|
<translation>Limiti globali velocità</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../preferences/options.ui" line="1542"/>
|
<location filename="../preferences/options.ui" line="1542"/>
|
||||||
<source>Apply rate limit to uTP connections</source>
|
<source>Apply rate limit to uTP connections</source>
|
||||||
<translation>Applica limiti di frequenza alle connessioni uTP</translation>
|
<translation>Applica limiti velocità alle connessioni uTP</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../preferences/options.ui" line="1549"/>
|
<location filename="../preferences/options.ui" line="1549"/>
|
||||||
<source>Apply rate limit to transport overhead</source>
|
<source>Apply rate limit to transport overhead</source>
|
||||||
<translation>Applica limiti di frequenza ai trasporti sovraccarico</translation>
|
<translation>Applica limiti di velocità al sovreccaarico di trasferimento</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../preferences/options.ui" line="1562"/>
|
<location filename="../preferences/options.ui" line="1562"/>
|
||||||
<source>Alternative Global Rate Limits</source>
|
<source>Alternative Global Rate Limits</source>
|
||||||
<translation>Limiti di Frequenza Globale alternativi</translation>
|
<translation>Limiti globale di velocità alternativi</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../preferences/options.ui" line="1668"/>
|
<location filename="../preferences/options.ui" line="1668"/>
|
||||||
<source>Schedule the use of alternative rate limits</source>
|
<source>Schedule the use of alternative rate limits</source>
|
||||||
<translation>Organizza l'uso di limti di frequenza alternativi</translation>
|
<translation>Organizza l'uso di limti di velocità alternativi</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../preferences/options.ui" line="1928"/>
|
<location filename="../preferences/options.ui" line="1928"/>
|
||||||
@@ -2999,7 +2999,7 @@ Aggiornare qBittorrent alla versione %1?</translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../preferences/options.ui" line="274"/>
|
<location filename="../preferences/options.ui" line="274"/>
|
||||||
<source>Action on double-click</source>
|
<source>Action on double-click</source>
|
||||||
<translation>Azioni con il doppio click</translation>
|
<translation>Azioni con il doppio clic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../preferences/options.ui" line="283"/>
|
<location filename="../preferences/options.ui" line="283"/>
|
||||||
@@ -3029,7 +3029,7 @@ Aggiornare qBittorrent alla versione %1?</translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../preferences/options.ui" line="356"/>
|
<location filename="../preferences/options.ui" line="356"/>
|
||||||
<source>Show splash screen on start up</source>
|
<source>Show splash screen on start up</source>
|
||||||
<translation>Visualizza schermata di avvio in fase di start up</translation>
|
<translation>Visualizza schermata di avvio all'esecuzione del programma</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../preferences/options.ui" line="366"/>
|
<location filename="../preferences/options.ui" line="366"/>
|
||||||
@@ -3192,7 +3192,7 @@ Aggiornare qBittorrent alla versione %1?</translation>
|
|||||||
<location filename="../preferences/options.ui" line="79"/>
|
<location filename="../preferences/options.ui" line="79"/>
|
||||||
<location filename="../preferences/options.ui" line="82"/>
|
<location filename="../preferences/options.ui" line="82"/>
|
||||||
<source>Behavior</source>
|
<source>Behavior</source>
|
||||||
<translation>Comportamento</translation>
|
<translation>Generale</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../preferences/options.ui" line="115"/>
|
<location filename="../preferences/options.ui" line="115"/>
|
||||||
@@ -3207,7 +3207,7 @@ Aggiornare qBittorrent alla versione %1?</translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../preferences/options.ui" line="196"/>
|
<location filename="../preferences/options.ui" line="196"/>
|
||||||
<source>User Interface Language:</source>
|
<source>User Interface Language:</source>
|
||||||
<translation>Lingua di interfaccia d'uso:</translation>
|
<translation>Lingua interfaccia utente:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../preferences/options.ui" line="252"/>
|
<location filename="../preferences/options.ui" line="252"/>
|
||||||
@@ -3233,7 +3233,7 @@ Aggiornare qBittorrent alla versione %1?</translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../preferences/options.ui" line="455"/>
|
<location filename="../preferences/options.ui" line="455"/>
|
||||||
<source>Use qBittorrent for magnet links</source>
|
<source>Use qBittorrent for magnet links</source>
|
||||||
<translation>Usa qBittorrent per link magnetici</translation>
|
<translation>Usa qBittorrent per collegamenti magnet</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../preferences/options.ui" line="681"/>
|
<location filename="../preferences/options.ui" line="681"/>
|
||||||
@@ -3293,7 +3293,7 @@ Aggiornare qBittorrent alla versione %1?</translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../preferences/options.ui" line="373"/>
|
<location filename="../preferences/options.ui" line="373"/>
|
||||||
<source>Ask for program exit confirmation</source>
|
<source>Ask for program exit confirmation</source>
|
||||||
<translation>Chiedi per la conferma di chiusura del programma</translation>
|
<translation>Chiedi conferma per la chiusura del programma</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../preferences/options.ui" line="383"/>
|
<location filename="../preferences/options.ui" line="383"/>
|
||||||
@@ -3313,17 +3313,17 @@ Aggiornare qBittorrent alla versione %1?</translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../preferences/options.ui" line="561"/>
|
<location filename="../preferences/options.ui" line="561"/>
|
||||||
<source>Hard Disk</source>
|
<source>Hard Disk</source>
|
||||||
<translation>Disco Rigido</translation>
|
<translation>Disco fisso</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../preferences/options.ui" line="570"/>
|
<location filename="../preferences/options.ui" line="570"/>
|
||||||
<source>Save files to location:</source>
|
<source>Save files to location:</source>
|
||||||
<translation>Salva file nella posizione:</translation>
|
<translation>Salva file nel percorso:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../preferences/options.ui" line="618"/>
|
<location filename="../preferences/options.ui" line="618"/>
|
||||||
<source>Append the label of the torrent to the save path</source>
|
<source>Append the label of the torrent to the save path</source>
|
||||||
<translation>Aggiungere l'etichetta del torrent per salvare il percorso</translation>
|
<translation>Aggiungi l'etichetta del torrent per salvare il percorso</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../preferences/options.ui" line="628"/>
|
<location filename="../preferences/options.ui" line="628"/>
|
||||||
@@ -3333,7 +3333,7 @@ Aggiornare qBittorrent alla versione %1?</translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../preferences/options.ui" line="635"/>
|
<location filename="../preferences/options.ui" line="635"/>
|
||||||
<source>Keep incomplete torrents in:</source>
|
<source>Keep incomplete torrents in:</source>
|
||||||
<translation>Tieni torrent incompleti in:</translation>
|
<translation>Salva torrent incompleti in:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Append .!qB extension to incomplete files' names</source>
|
<source>Append .!qB extension to incomplete files' names</source>
|
||||||
@@ -3357,7 +3357,7 @@ Aggiornare qBittorrent alla versione %1?</translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../preferences/options.ui" line="854"/>
|
<location filename="../preferences/options.ui" line="854"/>
|
||||||
<source>Destination email:</source>
|
<source>Destination email:</source>
|
||||||
<translation>Destinazione e-mail:</translation>
|
<translation>Email destinazione:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../preferences/options.ui" line="864"/>
|
<location filename="../preferences/options.ui" line="864"/>
|
||||||
@@ -3367,7 +3367,7 @@ Aggiornare qBittorrent alla versione %1?</translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../preferences/options.ui" line="925"/>
|
<location filename="../preferences/options.ui" line="925"/>
|
||||||
<source>Run an external program on torrent completion</source>
|
<source>Run an external program on torrent completion</source>
|
||||||
<translation>Avvia </translation>
|
<translation>Esegui un programma esterno a download completato</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Use %f to pass the torrent path in parameters</source>
|
<source>Use %f to pass the torrent path in parameters</source>
|
||||||
@@ -3376,7 +3376,7 @@ Aggiornare qBittorrent alla versione %1?</translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../preferences/options.ui" line="1032"/>
|
<location filename="../preferences/options.ui" line="1032"/>
|
||||||
<source>Use UPnP / NAT-PMP port forwarding from my router</source>
|
<source>Use UPnP / NAT-PMP port forwarding from my router</source>
|
||||||
<translation>Usa port forwarding di UPnP / NAT-PMP dal mio router</translation>
|
<translation>Usa port forwarding UPnP / NAT-PMP del router</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Proxy server</source>
|
<source>Proxy server</source>
|
||||||
@@ -3469,12 +3469,12 @@ Aggiornare qBittorrent alla versione %1?</translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../preferences/options.ui" line="2142"/>
|
<location filename="../preferences/options.ui" line="2142"/>
|
||||||
<source>Share Ratio Limiting</source>
|
<source>Share Ratio Limiting</source>
|
||||||
<translation>Limitazione Rapporto di Condivisione</translation>
|
<translation>Limita rapporto di condivisione</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../preferences/options.ui" line="2299"/>
|
<location filename="../preferences/options.ui" line="2299"/>
|
||||||
<source>Use UPnP / NAT-PMP to forward the port from my router</source>
|
<source>Use UPnP / NAT-PMP to forward the port from my router</source>
|
||||||
<translation>Usa UPnP /NAT-PMP per inoltrare la porta dal mio router</translation>
|
<translation>Usa UPnP /NAT-PMP per inoltrare la porta del router</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../preferences/options.ui" line="2309"/>
|
<location filename="../preferences/options.ui" line="2309"/>
|
||||||
@@ -3611,7 +3611,7 @@ Aggiornare qBittorrent alla versione %1?</translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../preferences/options.ui" line="2250"/>
|
<location filename="../preferences/options.ui" line="2250"/>
|
||||||
<source>Enable Web User Interface (Remote control)</source>
|
<source>Enable Web User Interface (Remote control)</source>
|
||||||
<translation>Abilita l'interfaccia utente internet (Controllo remoto)</translation>
|
<translation>Abilita interfaccia utente internet (controllo remoto)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../preferences/options.ui" line="1193"/>
|
<location filename="../preferences/options.ui" line="1193"/>
|
||||||
@@ -3712,7 +3712,7 @@ Aggiornare qBittorrent alla versione %1?</translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../properties/proptabbar.cpp" line="45"/>
|
<location filename="../properties/proptabbar.cpp" line="45"/>
|
||||||
<source>General</source>
|
<source>General</source>
|
||||||
<translation>Generali</translation>
|
<translation>Generale</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../properties/proptabbar.cpp" line="50"/>
|
<location filename="../properties/proptabbar.cpp" line="50"/>
|
||||||
@@ -3727,7 +3727,7 @@ Aggiornare qBittorrent alla versione %1?</translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../properties/proptabbar.cpp" line="58"/>
|
<location filename="../properties/proptabbar.cpp" line="58"/>
|
||||||
<source>HTTP Sources</source>
|
<source>HTTP Sources</source>
|
||||||
<translation>Codici HTTP</translation>
|
<translation>Sorgenti HTTP</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../properties/proptabbar.cpp" line="62"/>
|
<location filename="../properties/proptabbar.cpp" line="62"/>
|
||||||
@@ -3748,7 +3748,7 @@ Aggiornare qBittorrent alla versione %1?</translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../properties/propertieswidget.ui" line="346"/>
|
<location filename="../properties/propertieswidget.ui" line="346"/>
|
||||||
<source>Save path:</source>
|
<source>Save path:</source>
|
||||||
<translation>Directory di salvataggio:</translation>
|
<translation>Cartella salvataggio:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../properties/propertieswidget.ui" line="438"/>
|
<location filename="../properties/propertieswidget.ui" line="438"/>
|
||||||
@@ -3998,15 +3998,15 @@ Aggiornare qBittorrent alla versione %1?</translation>
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Choose save path</source>
|
<source>Choose save path</source>
|
||||||
<translation type="obsolete">Scegli una cartella di salvataggio</translation>
|
<translation type="obsolete">Scegli una cartella per il salvataggio</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Save path creation error</source>
|
<source>Save path creation error</source>
|
||||||
<translation type="obsolete">Errore nella creazione della directory di salvataggio</translation>
|
<translation type="obsolete">Errore nella creazione della cartella di salvataggio</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Could not create the save path</source>
|
<source>Could not create the save path</source>
|
||||||
<translation type="obsolete">Impossibile creare la directory di salvataggio</translation>
|
<translation type="obsolete">Impossibile creare la cartella di salvataggio</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
@@ -4148,7 +4148,7 @@ Aggiornare qBittorrent alla versione %1?</translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../qtlibtorrent/qbtsession.cpp" line="898"/>
|
<location filename="../qtlibtorrent/qbtsession.cpp" line="898"/>
|
||||||
<source>'%1' is not a valid magnet URI.</source>
|
<source>'%1' is not a valid magnet URI.</source>
|
||||||
<translation>'%1' non è un URI magnetico valido.</translation>
|
<translation>'%1' non è un URL magnet valido.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../qtlibtorrent/qbtsession.cpp" line="914"/>
|
<location filename="../qtlibtorrent/qbtsession.cpp" line="914"/>
|
||||||
@@ -4929,7 +4929,7 @@ Per favore installalo manualmente.</translation>
|
|||||||
<location filename="../statusbar.h" line="67"/>
|
<location filename="../statusbar.h" line="67"/>
|
||||||
<location filename="../statusbar.h" line="180"/>
|
<location filename="../statusbar.h" line="180"/>
|
||||||
<source>Connection status:</source>
|
<source>Connection status:</source>
|
||||||
<translation>Stato della connessione:</translation>
|
<translation>Stato connessione:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../statusbar.h" line="67"/>
|
<location filename="../statusbar.h" line="67"/>
|
||||||
@@ -4956,18 +4956,18 @@ Per favore installalo manualmente.</translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../statusbar.h" line="150"/>
|
<location filename="../statusbar.h" line="150"/>
|
||||||
<source>qBittorrent needs to be restarted</source>
|
<source>qBittorrent needs to be restarted</source>
|
||||||
<translation>qBittorrent ha bisogno di essere riavviato</translation>
|
<translation>E' necessario riavviare qBittorrent</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../statusbar.h" line="160"/>
|
<location filename="../statusbar.h" line="160"/>
|
||||||
<source>qBittorrent was just updated and needs to be restarted for the changes to be effective.</source>
|
<source>qBittorrent was just updated and needs to be restarted for the changes to be effective.</source>
|
||||||
<translation>qBittorrent è stato appena aggiornato e ha bisogno di riavviarsi per rendere effettive le modifiche.</translation>
|
<translation>qBittorrent è stato appena aggiornato e deve essere riavviato per rendere effettive le modifiche.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../statusbar.h" line="172"/>
|
<location filename="../statusbar.h" line="172"/>
|
||||||
<location filename="../statusbar.h" line="177"/>
|
<location filename="../statusbar.h" line="177"/>
|
||||||
<source>Connection Status:</source>
|
<source>Connection Status:</source>
|
||||||
<translation>Stato della connessione:</translation>
|
<translation>Stato connessione:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../statusbar.h" line="172"/>
|
<location filename="../statusbar.h" line="172"/>
|
||||||
@@ -5149,7 +5149,7 @@ Per favore installalo manualmente.</translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../torrentimportdlg.ui" line="53"/>
|
<location filename="../torrentimportdlg.ui" line="53"/>
|
||||||
<source>This assistant will help you share with qBittorrent a torrent that you have already downloaded.</source>
|
<source>This assistant will help you share with qBittorrent a torrent that you have already downloaded.</source>
|
||||||
<translation>Questo assistente ti aiuterà a condividere un torrent che hai appena scaricato con qBittorrent.</translation>
|
<translation>L'assistente ti aiuterà a condividere un torrent che hai appena scaricato con qBittorrent.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../torrentimportdlg.ui" line="65"/>
|
<location filename="../torrentimportdlg.ui" line="65"/>
|
||||||
@@ -5170,7 +5170,7 @@ Per favore installalo manualmente.</translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../torrentimportdlg.ui" line="121"/>
|
<location filename="../torrentimportdlg.ui" line="121"/>
|
||||||
<source>Skip the data checking stage and start seeding immediately</source>
|
<source>Skip the data checking stage and start seeding immediately</source>
|
||||||
<translation>Salta la fase di verifica dei dati e iniziare immediatamente il seeding</translation>
|
<translation>Salta la fase di verifica dei dati e inizia immediatamente il seeding</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../torrentimportdlg.ui" line="131"/>
|
<location filename="../torrentimportdlg.ui" line="131"/>
|
||||||
@@ -5197,7 +5197,7 @@ Per favore installalo manualmente.</translation>
|
|||||||
<location filename="../torrentimportdlg.cpp" line="95"/>
|
<location filename="../torrentimportdlg.cpp" line="95"/>
|
||||||
<source>Please provide the location of %1</source>
|
<source>Please provide the location of %1</source>
|
||||||
<comment>%1 is a file name</comment>
|
<comment>%1 is a file name</comment>
|
||||||
<translation>Fornire la posizione di %1</translation>
|
<translation>Indica il percorso di %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../torrentimportdlg.cpp" line="130"/>
|
<location filename="../torrentimportdlg.cpp" line="130"/>
|
||||||
@@ -5233,13 +5233,13 @@ Per favore installalo manualmente.</translation>
|
|||||||
<location filename="../qtlibtorrent/torrentmodel.cpp" line="249"/>
|
<location filename="../qtlibtorrent/torrentmodel.cpp" line="249"/>
|
||||||
<source>Done</source>
|
<source>Done</source>
|
||||||
<comment>% Done</comment>
|
<comment>% Done</comment>
|
||||||
<translation>% Completo</translation>
|
<translation>% completo</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../qtlibtorrent/torrentmodel.cpp" line="250"/>
|
<location filename="../qtlibtorrent/torrentmodel.cpp" line="250"/>
|
||||||
<source>Status</source>
|
<source>Status</source>
|
||||||
<comment>Torrent status (e.g. downloading, seeding, paused)</comment>
|
<comment>Torrent status (e.g. downloading, seeding, paused)</comment>
|
||||||
<translation>Status</translation>
|
<translation>Stato</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../qtlibtorrent/torrentmodel.cpp" line="251"/>
|
<location filename="../qtlibtorrent/torrentmodel.cpp" line="251"/>
|
||||||
@@ -5275,7 +5275,7 @@ Per favore installalo manualmente.</translation>
|
|||||||
<location filename="../qtlibtorrent/torrentmodel.cpp" line="256"/>
|
<location filename="../qtlibtorrent/torrentmodel.cpp" line="256"/>
|
||||||
<source>ETA</source>
|
<source>ETA</source>
|
||||||
<comment>i.e: Estimated Time of Arrival / Time left</comment>
|
<comment>i.e: Estimated Time of Arrival / Time left</comment>
|
||||||
<translation>ETA</translation>
|
<translation>Tempo stimato</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../qtlibtorrent/torrentmodel.cpp" line="257"/>
|
<location filename="../qtlibtorrent/torrentmodel.cpp" line="257"/>
|
||||||
@@ -5321,7 +5321,7 @@ Per favore installalo manualmente.</translation>
|
|||||||
<location filename="../qtlibtorrent/torrentmodel.cpp" line="264"/>
|
<location filename="../qtlibtorrent/torrentmodel.cpp" line="264"/>
|
||||||
<source>Amount left</source>
|
<source>Amount left</source>
|
||||||
<comment>Amount of data left to download (e.g. in MB)</comment>
|
<comment>Amount of data left to download (e.g. in MB)</comment>
|
||||||
<translation>Quantità rimanente</translation>
|
<translation>Dati da scaricare</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../qtlibtorrent/torrentmodel.cpp" line="265"/>
|
<location filename="../qtlibtorrent/torrentmodel.cpp" line="265"/>
|
||||||
@@ -5340,7 +5340,7 @@ Per favore installalo manualmente.</translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../properties/trackerlist.cpp" line="62"/>
|
<location filename="../properties/trackerlist.cpp" line="62"/>
|
||||||
<source>Status</source>
|
<source>Status</source>
|
||||||
<translation>Status</translation>
|
<translation>Stato</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../properties/trackerlist.cpp" line="63"/>
|
<location filename="../properties/trackerlist.cpp" line="63"/>
|
||||||
@@ -5499,7 +5499,7 @@ Per favore installalo manualmente.</translation>
|
|||||||
<location filename="../transferlistdelegate.h" line="113"/>
|
<location filename="../transferlistdelegate.h" line="113"/>
|
||||||
<source>Checking</source>
|
<source>Checking</source>
|
||||||
<comment>Torrent local data is being checked</comment>
|
<comment>Torrent local data is being checked</comment>
|
||||||
<translation>Controllo in corso</translation>
|
<translation>Controllo...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../transferlistdelegate.h" line="127"/>
|
<location filename="../transferlistdelegate.h" line="127"/>
|
||||||
@@ -5715,15 +5715,15 @@ Per favore installalo manualmente.</translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../transferlistwidget.cpp" line="232"/>
|
<location filename="../transferlistwidget.cpp" line="232"/>
|
||||||
<source>Choose save path</source>
|
<source>Choose save path</source>
|
||||||
<translation>Scegli una cartella di salvataggio</translation>
|
<translation>Scegli una cartella per il salvataggio</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Save path creation error</source>
|
<source>Save path creation error</source>
|
||||||
<translation type="obsolete">Errore nella creazione della directory di salvataggio</translation>
|
<translation type="obsolete">Errore nella creazione della cartella di salvataggio</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Could not create the save path</source>
|
<source>Could not create the save path</source>
|
||||||
<translation type="obsolete">Impossibile creare la directory di salvataggio</translation>
|
<translation type="obsolete">Impossibile creare la cartella di salvataggio</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../transferlistwidget.cpp" line="454"/>
|
<location filename="../transferlistwidget.cpp" line="454"/>
|
||||||
@@ -5781,7 +5781,7 @@ Per favore installalo manualmente.</translation>
|
|||||||
<location filename="../transferlistwidget.cpp" line="651"/>
|
<location filename="../transferlistwidget.cpp" line="651"/>
|
||||||
<source>Delete</source>
|
<source>Delete</source>
|
||||||
<comment>Delete the torrent</comment>
|
<comment>Delete the torrent</comment>
|
||||||
<translation>Cancella</translation>
|
<translation>Elimina</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../transferlistwidget.cpp" line="653"/>
|
<location filename="../transferlistwidget.cpp" line="653"/>
|
||||||
@@ -5840,7 +5840,7 @@ Per favore installalo manualmente.</translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../transferlistwidget.cpp" line="671"/>
|
<location filename="../transferlistwidget.cpp" line="671"/>
|
||||||
<source>Set location...</source>
|
<source>Set location...</source>
|
||||||
<translation>Seleziona locazione...</translation>
|
<translation>Imposta percorso...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../transferlistwidget.cpp" line="673"/>
|
<location filename="../transferlistwidget.cpp" line="673"/>
|
||||||
@@ -5850,7 +5850,7 @@ Per favore installalo manualmente.</translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../transferlistwidget.cpp" line="675"/>
|
<location filename="../transferlistwidget.cpp" line="675"/>
|
||||||
<source>Copy magnet link</source>
|
<source>Copy magnet link</source>
|
||||||
<translation>Copia link magnetico</translation>
|
<translation>Copia collegamento magnet</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../transferlistwidget.cpp" line="677"/>
|
<location filename="../transferlistwidget.cpp" line="677"/>
|
||||||
@@ -5992,7 +5992,7 @@ Per favore installalo manualmente.</translation>
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Save path:</source>
|
<source>Save path:</source>
|
||||||
<translation type="obsolete">Directory di salvataggio:</translation>
|
<translation type="obsolete">Cartella di salvataggio:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>...</source>
|
<source>...</source>
|
||||||
@@ -6036,7 +6036,7 @@ Per favore installalo manualmente.</translation>
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Skip file checking and start seeding immediately</source>
|
<source>Skip file checking and start seeding immediately</source>
|
||||||
<translation type="obsolete">Salta il controllo file e inizia subito la distribuzione</translation>
|
<translation type="obsolete">Salta il controllo file e inizia subito la condivisione</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Do not download</source>
|
<source>Do not download</source>
|
||||||
@@ -6111,7 +6111,7 @@ Per favore installalo manualmente.</translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../confirmdeletiondlg.ui" line="20"/>
|
<location filename="../confirmdeletiondlg.ui" line="20"/>
|
||||||
<source>Deletion confirmation - qBittorrent</source>
|
<source>Deletion confirmation - qBittorrent</source>
|
||||||
<translation>Conferma di cancellazione - qBittorrent</translation>
|
<translation>Conferma di eliminazione - qBittorrent</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../confirmdeletiondlg.ui" line="47"/>
|
<location filename="../confirmdeletiondlg.ui" line="47"/>
|
||||||
@@ -6126,7 +6126,7 @@ Per favore installalo manualmente.</translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../confirmdeletiondlg.ui" line="94"/>
|
<location filename="../confirmdeletiondlg.ui" line="94"/>
|
||||||
<source>Also delete the files on the hard disk</source>
|
<source>Also delete the files on the hard disk</source>
|
||||||
<translation>Elimina anche il relativo file nell'hard disk</translation>
|
<translation>Elimina anche il relativo file dal disco fisso</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
@@ -6333,12 +6333,12 @@ Per favore installalo manualmente.</translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../downloadfromurldlg.ui" line="28"/>
|
<location filename="../downloadfromurldlg.ui" line="28"/>
|
||||||
<source>Add torrent links</source>
|
<source>Add torrent links</source>
|
||||||
<translation>Aggiungi link torrent</translation>
|
<translation>Aggiungi collegamento torrent</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadfromurldlg.ui" line="55"/>
|
<location filename="../downloadfromurldlg.ui" line="55"/>
|
||||||
<source>Both HTTP and Magnet links are supported</source>
|
<source>Both HTTP and Magnet links are supported</source>
|
||||||
<translation>Sono supportati sia HTTP che Magnet Link</translation>
|
<translation>Sono supportati collegamenti HTTP e magnet</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadfromurldlg.ui" line="77"/>
|
<location filename="../downloadfromurldlg.ui" line="77"/>
|
||||||
@@ -6842,7 +6842,7 @@ Comunque, quei plugin sono stati disabilitati.</translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../preferences/options_imp.cpp" line="1062"/>
|
<location filename="../preferences/options_imp.cpp" line="1062"/>
|
||||||
<source>Failed to add Scan Folder '%1': %2</source>
|
<source>Failed to add Scan Folder '%1': %2</source>
|
||||||
<translation>Impossibile aggiungere amalisi cartella '%1: %2</translation>
|
<translation>Impossibile aggiungere cartella da analizzare '%1: %2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../preferences/options_imp.cpp" line="1085"/>
|
<location filename="../preferences/options_imp.cpp" line="1085"/>
|
||||||
@@ -6939,7 +6939,7 @@ Comunque, quei plugin sono stati disabilitati.</translation>
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../searchengine/pluginsource.ui" line="42"/>
|
<location filename="../searchengine/pluginsource.ui" line="42"/>
|
||||||
<source>Web link</source>
|
<source>Web link</source>
|
||||||
<translation>Link</translation>
|
<translation>Collegamento web</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
@@ -7039,11 +7039,11 @@ Comunque, quei plugin sono stati disabilitati.</translation>
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Unable to decode magnet link:</source>
|
<source>Unable to decode magnet link:</source>
|
||||||
<translation type="obsolete">Impossibile decifrare il link magnetico:</translation>
|
<translation type="obsolete">Impossibile decifrare il collegamento magnet:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Magnet Link</source>
|
<source>Magnet Link</source>
|
||||||
<translation type="obsolete">Link magnetico</translation>
|
<translation type="obsolete">Collegamento magnet</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Rename...</source>
|
<source>Rename...</source>
|
||||||
@@ -7085,19 +7085,19 @@ Comunque, quei plugin sono stati disabilitati.</translation>
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Empty save path</source>
|
<source>Empty save path</source>
|
||||||
<translation type="obsolete">Directory di salvataggio vuota</translation>
|
<translation type="obsolete">Cartella di salvataggio vuota</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Please enter a save path</source>
|
<source>Please enter a save path</source>
|
||||||
<translation type="obsolete">Inserire per favore una directory di salvataggio</translation>
|
<translation type="obsolete">Inserire per favore una cartella di salvataggio</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Save path creation error</source>
|
<source>Save path creation error</source>
|
||||||
<translation type="obsolete">Errore nella creazione della directory di salvataggio</translation>
|
<translation type="obsolete">Errore nella creazione della cartella di salvataggio</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Could not create the save path</source>
|
<source>Could not create the save path</source>
|
||||||
<translation type="obsolete">Impossibile creare la directory di salvataggio</translation>
|
<translation type="obsolete">Impossibile creare la cartella di salvataggio</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Invalid label name</source>
|
<source>Invalid label name</source>
|
||||||
|
|||||||
@@ -45,7 +45,7 @@
|
|||||||
<key>CFBundlePackageType</key>
|
<key>CFBundlePackageType</key>
|
||||||
<string>APPL</string>
|
<string>APPL</string>
|
||||||
<key>CFBundleShortVersionString</key>
|
<key>CFBundleShortVersionString</key>
|
||||||
<string>3.0.6</string>
|
<string>3.0.9</string>
|
||||||
<key>CFBundleSignature</key>
|
<key>CFBundleSignature</key>
|
||||||
<string>qBit</string>
|
<string>qBit</string>
|
||||||
<key>CFBundleExecutable</key>
|
<key>CFBundleExecutable</key>
|
||||||
|
|||||||
28
src/main.cpp
28
src/main.cpp
@@ -65,6 +65,12 @@ Q_IMPORT_PLUGIN(qico)
|
|||||||
#include "stacktrace.h"
|
#include "stacktrace.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef STACKTRACE_WIN
|
||||||
|
#include <signal.h>
|
||||||
|
#include "stacktrace_win.h"
|
||||||
|
#include "stacktrace_win_dlg.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include "misc.h"
|
#include "misc.h"
|
||||||
#include "preferences.h"
|
#include "preferences.h"
|
||||||
@@ -125,7 +131,7 @@ public:
|
|||||||
|
|
||||||
#include "main.moc"
|
#include "main.moc"
|
||||||
|
|
||||||
#if defined(Q_WS_X11) || defined(Q_WS_MAC)
|
#if defined(Q_WS_X11) || defined(Q_WS_MAC) || defined(STACKTRACE_WIN)
|
||||||
void sigintHandler(int) {
|
void sigintHandler(int) {
|
||||||
signal(SIGINT, 0);
|
signal(SIGINT, 0);
|
||||||
qDebug("Catching SIGINT, exiting cleanly");
|
qDebug("Catching SIGINT, exiting cleanly");
|
||||||
@@ -140,19 +146,35 @@ void sigtermHandler(int) {
|
|||||||
void sigsegvHandler(int) {
|
void sigsegvHandler(int) {
|
||||||
signal(SIGABRT, 0);
|
signal(SIGABRT, 0);
|
||||||
signal(SIGSEGV, 0);
|
signal(SIGSEGV, 0);
|
||||||
|
#ifndef Q_OS_WIN
|
||||||
std::cerr << "\n\n*************************************************************\n";
|
std::cerr << "\n\n*************************************************************\n";
|
||||||
std::cerr << "Catching SIGSEGV, please report a bug at http://bug.qbittorrent.org\nand provide the following backtrace:\n";
|
std::cerr << "Catching SIGSEGV, please report a bug at http://bug.qbittorrent.org\nand provide the following backtrace:\n";
|
||||||
std::cerr << "qBittorrent version: " << VERSION << std::endl;
|
std::cerr << "qBittorrent version: " << VERSION << std::endl;
|
||||||
print_stacktrace();
|
print_stacktrace();
|
||||||
|
#else
|
||||||
|
#ifdef STACKTRACE_WIN
|
||||||
|
StraceDlg dlg;
|
||||||
|
dlg.setStacktraceString(straceWin::getBacktrace());
|
||||||
|
dlg.exec();
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
raise(SIGSEGV);
|
raise(SIGSEGV);
|
||||||
}
|
}
|
||||||
void sigabrtHandler(int) {
|
void sigabrtHandler(int) {
|
||||||
signal(SIGABRT, 0);
|
signal(SIGABRT, 0);
|
||||||
signal(SIGSEGV, 0);
|
signal(SIGSEGV, 0);
|
||||||
|
#ifndef Q_OS_WIN
|
||||||
std::cerr << "\n\n*************************************************************\n";
|
std::cerr << "\n\n*************************************************************\n";
|
||||||
std::cerr << "Catching SIGABRT, please report a bug at http://bug.qbittorrent.org\nand provide the following backtrace:\n";
|
std::cerr << "Catching SIGABRT, please report a bug at http://bug.qbittorrent.org\nand provide the following backtrace:\n";
|
||||||
std::cerr << "qBittorrent version: " << VERSION << std::endl;
|
std::cerr << "qBittorrent version: " << VERSION << std::endl;
|
||||||
print_stacktrace();
|
print_stacktrace();
|
||||||
|
#else
|
||||||
|
#ifdef STACKTRACE_WIN
|
||||||
|
StraceDlg dlg;
|
||||||
|
dlg.setStacktraceString(straceWin::getBacktrace());
|
||||||
|
dlg.exec();
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
raise(SIGABRT);
|
raise(SIGABRT);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
@@ -184,6 +206,8 @@ int main(int argc, char *argv[]) {
|
|||||||
qDebug("Passing program parameters to running instance...");
|
qDebug("Passing program parameters to running instance...");
|
||||||
qDebug("Message: %s", qPrintable(message));
|
qDebug("Message: %s", qPrintable(message));
|
||||||
app.sendMessage(message);
|
app.sendMessage(message);
|
||||||
|
} else { // Raise main window
|
||||||
|
app.sendMessage("qbt://show");
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@@ -291,7 +315,7 @@ int main(int argc, char *argv[]) {
|
|||||||
#ifndef DISABLE_GUI
|
#ifndef DISABLE_GUI
|
||||||
app.setQuitOnLastWindowClosed(false);
|
app.setQuitOnLastWindowClosed(false);
|
||||||
#endif
|
#endif
|
||||||
#if defined(Q_WS_X11) || defined(Q_WS_MAC)
|
#if defined(Q_WS_X11) || defined(Q_WS_MAC) || defined(STACKTRACE_WIN)
|
||||||
signal(SIGABRT, sigabrtHandler);
|
signal(SIGABRT, sigabrtHandler);
|
||||||
signal(SIGTERM, sigtermHandler);
|
signal(SIGTERM, sigtermHandler);
|
||||||
signal(SIGINT, sigintHandler);
|
signal(SIGINT, sigintHandler);
|
||||||
|
|||||||
@@ -109,9 +109,9 @@ MainWindow::MainWindow(QWidget *parent, const QStringList& torrentCmdLine) : QMa
|
|||||||
if (Preferences().useSystemIconTheme())
|
if (Preferences().useSystemIconTheme())
|
||||||
setWindowIcon(QIcon::fromTheme("qbittorrent", QIcon(QString::fromUtf8(":/Icons/skin/qbittorrent32.png"))));
|
setWindowIcon(QIcon::fromTheme("qbittorrent", QIcon(QString::fromUtf8(":/Icons/skin/qbittorrent32.png"))));
|
||||||
else
|
else
|
||||||
#else
|
|
||||||
setWindowIcon(QIcon(QString::fromUtf8(":/Icons/skin/qbittorrent32.png")));
|
|
||||||
#endif
|
#endif
|
||||||
|
setWindowIcon(QIcon(QString::fromUtf8(":/Icons/skin/qbittorrent32.png")));
|
||||||
|
|
||||||
actionOpen->setIcon(IconProvider::instance()->getIcon("list-add"));
|
actionOpen->setIcon(IconProvider::instance()->getIcon("list-add"));
|
||||||
actionDownload_from_URL->setIcon(IconProvider::instance()->getIcon("insert-link"));
|
actionDownload_from_URL->setIcon(IconProvider::instance()->getIcon("insert-link"));
|
||||||
actionSet_upload_limit->setIcon(QIcon(QString::fromUtf8(":/Icons/skin/seeding.png")));
|
actionSet_upload_limit->setIcon(QIcon(QString::fromUtf8(":/Icons/skin/seeding.png")));
|
||||||
@@ -960,6 +960,16 @@ void MainWindow::processParams(const QStringList& params) {
|
|||||||
if (misc::isUrl(param)) {
|
if (misc::isUrl(param)) {
|
||||||
QBtSession::instance()->downloadFromUrl(param);
|
QBtSession::instance()->downloadFromUrl(param);
|
||||||
}else{
|
}else{
|
||||||
|
if(param.startsWith("qbt://show")) {
|
||||||
|
if(ui_locked) {
|
||||||
|
if(!unlockUI())
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
show();
|
||||||
|
activateWindow();
|
||||||
|
raise();
|
||||||
|
return; // Do not process more params
|
||||||
|
}
|
||||||
if (param.startsWith("bc://bt/", Qt::CaseInsensitive)) {
|
if (param.startsWith("bc://bt/", Qt::CaseInsensitive)) {
|
||||||
qDebug("Converting bc link to magnet link");
|
qDebug("Converting bc link to magnet link");
|
||||||
param = misc::bcLinkToMagnet(param);
|
param = misc::bcLinkToMagnet(param);
|
||||||
@@ -984,19 +994,16 @@ void MainWindow::addTorrent(QString path) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::processDownloadedFiles(QString path, QString url) {
|
void MainWindow::processDownloadedFiles(QString path, QString url) {
|
||||||
QIniSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent"));
|
Preferences pref;
|
||||||
const bool useTorrentAdditionDialog = settings.value(QString::fromUtf8("Preferences/Downloads/AdditionDialog"), true).toBool();
|
if (pref.useAdditionDialog())
|
||||||
if (useTorrentAdditionDialog)
|
|
||||||
AddNewTorrentDialog::showTorrent(path, url);
|
AddNewTorrentDialog::showTorrent(path, url);
|
||||||
else
|
else
|
||||||
QBtSession::instance()->addTorrent(path, false, url);
|
QBtSession::instance()->addTorrent(path, false, url);
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::processNewMagnetLink(const QString& link)
|
void MainWindow::processNewMagnetLink(const QString& link) {
|
||||||
{
|
Preferences pref;
|
||||||
QIniSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent"));
|
if (pref.useAdditionDialog())
|
||||||
const bool useTorrentAdditionDialog = settings.value(QString::fromUtf8("Preferences/Downloads/AdditionDialog"), true).toBool();
|
|
||||||
if (useTorrentAdditionDialog)
|
|
||||||
AddNewTorrentDialog::showMagnet(link);
|
AddNewTorrentDialog::showMagnet(link);
|
||||||
else
|
else
|
||||||
QBtSession::instance()->addMagnetUri(link);
|
QBtSession::instance()->addMagnetUri(link);
|
||||||
|
|||||||
@@ -89,8 +89,10 @@ public slots:
|
|||||||
if (combo_iface.currentIndex() == 0) {
|
if (combo_iface.currentIndex() == 0) {
|
||||||
// All interfaces (default)
|
// All interfaces (default)
|
||||||
pref.setNetworkInterface(QString::null);
|
pref.setNetworkInterface(QString::null);
|
||||||
|
pref.setNetworkInterfaceName(QString::null);
|
||||||
} else {
|
} else {
|
||||||
pref.setNetworkInterface(combo_iface.currentText());
|
pref.setNetworkInterface(combo_iface.itemData(combo_iface.currentIndex()).toString());
|
||||||
|
pref.setNetworkInterfaceName(combo_iface.currentText());
|
||||||
}
|
}
|
||||||
// Network address
|
// Network address
|
||||||
QHostAddress addr(txt_network_address.text().trimmed());
|
QHostAddress addr(txt_network_address.text().trimmed());
|
||||||
@@ -213,7 +215,7 @@ private slots:
|
|||||||
int i = 1;
|
int i = 1;
|
||||||
foreach (const QNetworkInterface& iface, QNetworkInterface::allInterfaces()) {
|
foreach (const QNetworkInterface& iface, QNetworkInterface::allInterfaces()) {
|
||||||
if (iface.flags() & QNetworkInterface::IsLoopBack) continue;
|
if (iface.flags() & QNetworkInterface::IsLoopBack) continue;
|
||||||
combo_iface.addItem(iface.name());
|
combo_iface.addItem(iface.humanReadableName(),iface.name());
|
||||||
if (!current_iface.isEmpty() && iface.name() == current_iface) {
|
if (!current_iface.isEmpty() && iface.name() == current_iface) {
|
||||||
combo_iface.setCurrentIndex(i);
|
combo_iface.setCurrentIndex(i);
|
||||||
interface_exists = true;
|
interface_exists = true;
|
||||||
@@ -222,7 +224,7 @@ private slots:
|
|||||||
}
|
}
|
||||||
// Saved interface does not exist, show it anyway
|
// Saved interface does not exist, show it anyway
|
||||||
if (!interface_exists) {
|
if (!interface_exists) {
|
||||||
combo_iface.addItem(current_iface);
|
combo_iface.addItem(pref.getNetworkInterfaceName(),current_iface);
|
||||||
combo_iface.setCurrentIndex(i);
|
combo_iface.setCurrentIndex(i);
|
||||||
}
|
}
|
||||||
setRow(NETWORK_IFACE, tr("Network Interface (requires restart)"), &combo_iface);
|
setRow(NETWORK_IFACE, tr("Network Interface (requires restart)"), &combo_iface);
|
||||||
|
|||||||
@@ -1010,6 +1010,14 @@ public:
|
|||||||
return value(QString::fromUtf8("Preferences/Connection/Interface"), QString()).toString();
|
return value(QString::fromUtf8("Preferences/Connection/Interface"), QString()).toString();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void setNetworkInterfaceName(const QString& iface) {
|
||||||
|
setValue(QString::fromUtf8("Preferences/Connection/InterfaceName"), iface);
|
||||||
|
}
|
||||||
|
|
||||||
|
QString getNetworkInterfaceName() const {
|
||||||
|
return value(QString::fromUtf8("Preferences/Connection/InterfaceName"), QString()).toString();
|
||||||
|
}
|
||||||
|
|
||||||
void setNetworkAddress(const QString& addr) {
|
void setNetworkAddress(const QString& addr) {
|
||||||
setValue(QString::fromUtf8("Preferences/Connection/InetAddress"), addr);
|
setValue(QString::fromUtf8("Preferences/Connection/InetAddress"), addr);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -39,6 +39,7 @@
|
|||||||
#include "misc.h"
|
#include "misc.h"
|
||||||
#include "previewlistdelegate.h"
|
#include "previewlistdelegate.h"
|
||||||
#include "previewselect.h"
|
#include "previewselect.h"
|
||||||
|
#include "fs_utils.h"
|
||||||
|
|
||||||
PreviewSelect::PreviewSelect(QWidget* parent, QTorrentHandle h): QDialog(parent), h(h) {
|
PreviewSelect::PreviewSelect(QWidget* parent, QTorrentHandle h): QDialog(parent), h(h) {
|
||||||
setupUi(this);
|
setupUi(this);
|
||||||
@@ -58,7 +59,9 @@ PreviewSelect::PreviewSelect(QWidget* parent, QTorrentHandle h): QDialog(parent)
|
|||||||
unsigned int nbFiles = h.num_files();
|
unsigned int nbFiles = h.num_files();
|
||||||
for (unsigned int i=0; i<nbFiles; ++i) {
|
for (unsigned int i=0; i<nbFiles; ++i) {
|
||||||
QString fileName = h.filename_at(i);
|
QString fileName = h.filename_at(i);
|
||||||
QString extension = fileName.split(QString::fromUtf8(".")).last().toUpper();
|
if (fileName.endsWith(".!qB"))
|
||||||
|
fileName.chop(4);
|
||||||
|
QString extension = fsutils::fileExtension(fileName).toUpper();
|
||||||
if (misc::isPreviewable(extension)) {
|
if (misc::isPreviewable(extension)) {
|
||||||
int row = previewListModel->rowCount();
|
int row = previewListModel->rowCount();
|
||||||
previewListModel->insertRow(row);
|
previewListModel->insertRow(row);
|
||||||
|
|||||||
@@ -511,7 +511,7 @@ void PropertiesWidget::renameSelectedFile() {
|
|||||||
bool ok;
|
bool ok;
|
||||||
QString new_name_last = QInputDialog::getText(this, tr("Rename the file"),
|
QString new_name_last = QInputDialog::getText(this, tr("Rename the file"),
|
||||||
tr("New name:"), QLineEdit::Normal,
|
tr("New name:"), QLineEdit::Normal,
|
||||||
index.data().toString(), &ok);
|
index.data().toString(), &ok).trimmed();
|
||||||
if (ok && !new_name_last.isEmpty()) {
|
if (ok && !new_name_last.isEmpty()) {
|
||||||
if (!fsutils::isValidFileSystemName(new_name_last)) {
|
if (!fsutils::isValidFileSystemName(new_name_last)) {
|
||||||
QMessageBox::warning(this, tr("The file could not be renamed"),
|
QMessageBox::warning(this, tr("The file could not be renamed"),
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1732,7 +1732,10 @@ bool QBtSession::isFilePreviewPossible(const QString &hash) const {
|
|||||||
}
|
}
|
||||||
const unsigned int nbFiles = h.num_files();
|
const unsigned int nbFiles = h.num_files();
|
||||||
for (unsigned int i=0; i<nbFiles; ++i) {
|
for (unsigned int i=0; i<nbFiles; ++i) {
|
||||||
const QString extension = fsutils::fileExtension(h.filename_at(i));
|
QString filename = h.filename_at(i);
|
||||||
|
if (filename.endsWith(".!qB"))
|
||||||
|
filename.chop(4);
|
||||||
|
const QString extension = fsutils::fileExtension(filename);
|
||||||
if (misc::isPreviewable(extension))
|
if (misc::isPreviewable(extension))
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@@ -2670,14 +2673,14 @@ void QBtSession::addMagnetSkipAddDlg(const QString& uri, const QString& save_pat
|
|||||||
addMagnetUri(uri, false);
|
addMagnetUri(uri, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
void QBtSession::downloadUrlAndSkipDialog(QString url, QString save_path, QString label) {
|
void QBtSession::downloadUrlAndSkipDialog(QString url, QString save_path, QString label, const QList<QNetworkCookie>& cookies) {
|
||||||
//emit aboutToDownloadFromUrl(url);
|
//emit aboutToDownloadFromUrl(url);
|
||||||
const QUrl qurl = QUrl::fromEncoded(url.toUtf8());
|
const QUrl qurl = QUrl::fromEncoded(url.toUtf8());
|
||||||
if (!save_path.isEmpty() || !label.isEmpty())
|
if (!save_path.isEmpty() || !label.isEmpty())
|
||||||
savepathLabel_fromurl[qurl] = qMakePair(save_path, label);
|
savepathLabel_fromurl[qurl] = qMakePair(save_path, label);
|
||||||
url_skippingDlg << qurl;
|
url_skippingDlg << qurl;
|
||||||
// Launch downloader thread
|
// Launch downloader thread
|
||||||
downloader->downloadTorrentUrl(url);
|
downloader->downloadTorrentUrl(url, cookies);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Add to Bittorrent session the downloaded torrent file
|
// Add to Bittorrent session the downloaded torrent file
|
||||||
|
|||||||
@@ -126,7 +126,7 @@ public slots:
|
|||||||
void disableIPFilter();
|
void disableIPFilter();
|
||||||
void setQueueingEnabled(bool enable);
|
void setQueueingEnabled(bool enable);
|
||||||
void handleDownloadFailure(QString url, QString reason);
|
void handleDownloadFailure(QString url, QString reason);
|
||||||
void downloadUrlAndSkipDialog(QString url, QString save_path=QString(), QString label=QString());
|
void downloadUrlAndSkipDialog(QString url, QString save_path=QString(), QString label=QString(), const QList<QNetworkCookie>& cookies = QList<QNetworkCookie>());
|
||||||
// Session configuration - Setters
|
// Session configuration - Setters
|
||||||
void setListeningPort(int port);
|
void setListeningPort(int port);
|
||||||
void setMaxConnections(int maxConnec);
|
void setMaxConnections(int maxConnec);
|
||||||
|
|||||||
@@ -135,7 +135,7 @@ float QTorrentHandle::progress() const {
|
|||||||
|
|
||||||
bitfield QTorrentHandle::pieces() const {
|
bitfield QTorrentHandle::pieces() const {
|
||||||
#if LIBTORRENT_VERSION_MINOR > 15
|
#if LIBTORRENT_VERSION_MINOR > 15
|
||||||
return torrent_handle::status(0x0).pieces;
|
return torrent_handle::status(torrent_handle::query_pieces).pieces;
|
||||||
#else
|
#else
|
||||||
return torrent_handle::status().pieces;
|
return torrent_handle::status().pieces;
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -86,6 +86,12 @@ AutomatedRssDownloader::AutomatedRssDownloader(const QWeakPointer<RssManager>& m
|
|||||||
Q_ASSERT(ok);
|
Q_ASSERT(ok);
|
||||||
ok = connect(ui->lineNotContains, SIGNAL(textEdited(QString)), SLOT(updateMustNotLineValidity()));
|
ok = connect(ui->lineNotContains, SIGNAL(textEdited(QString)), SLOT(updateMustNotLineValidity()));
|
||||||
Q_ASSERT(ok);
|
Q_ASSERT(ok);
|
||||||
|
ok = connect(ui->checkRegex, SIGNAL(stateChanged(int)), SLOT(updateMatchingArticles()));
|
||||||
|
Q_ASSERT(ok);
|
||||||
|
ok = connect(ui->checkRegex, SIGNAL(stateChanged(int)), SLOT(updateMustLineValidity()));
|
||||||
|
Q_ASSERT(ok);
|
||||||
|
ok = connect(ui->checkRegex, SIGNAL(stateChanged(int)), SLOT(updateMustNotLineValidity()));
|
||||||
|
Q_ASSERT(ok);
|
||||||
updateRuleDefinitionBox();
|
updateRuleDefinitionBox();
|
||||||
updateFeedList();
|
updateFeedList();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -332,7 +332,7 @@ void RssFeed::downloadMatchingArticleTorrents() {
|
|||||||
if (torrent_url.startsWith("magnet:", Qt::CaseInsensitive))
|
if (torrent_url.startsWith("magnet:", Qt::CaseInsensitive))
|
||||||
QBtSession::instance()->addMagnetSkipAddDlg(torrent_url, matching_rule->savePath(), matching_rule->label());
|
QBtSession::instance()->addMagnetSkipAddDlg(torrent_url, matching_rule->savePath(), matching_rule->label());
|
||||||
else
|
else
|
||||||
QBtSession::instance()->downloadUrlAndSkipDialog(torrent_url, matching_rule->savePath(), matching_rule->label());
|
QBtSession::instance()->downloadUrlAndSkipDialog(torrent_url, matching_rule->savePath(), matching_rule->label(), feedCookies());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
BIN
src/searchengine/nova/engines/legittorrents.png
Normal file
BIN
src/searchengine/nova/engines/legittorrents.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 578 B |
109
src/searchengine/nova/engines/legittorrents.py
Normal file
109
src/searchengine/nova/engines/legittorrents.py
Normal file
@@ -0,0 +1,109 @@
|
|||||||
|
#VERSION: 1.01
|
||||||
|
#AUTHORS: Christophe Dumez (chris@qbittorrent.org)
|
||||||
|
|
||||||
|
# Redistribution and use in source and binary forms, with or without
|
||||||
|
# modification, are permitted provided that the following conditions are met:
|
||||||
|
#
|
||||||
|
# * Redistributions of source code must retain the above copyright notice,
|
||||||
|
# this list of conditions and the following disclaimer.
|
||||||
|
# * Redistributions in binary form must reproduce the above copyright
|
||||||
|
# notice, this list of conditions and the following disclaimer in the
|
||||||
|
# documentation and/or other materials provided with the distribution.
|
||||||
|
# * Neither the name of the author nor the names of its contributors may be
|
||||||
|
# used to endorse or promote products derived from this software without
|
||||||
|
# specific prior written permission.
|
||||||
|
#
|
||||||
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
||||||
|
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
# POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
|
|
||||||
|
from novaprinter import prettyPrinter
|
||||||
|
from helpers import retrieve_url, download_file
|
||||||
|
import sgmllib
|
||||||
|
import re
|
||||||
|
|
||||||
|
class legittorrents(object):
|
||||||
|
url = 'http://www.legittorrents.info'
|
||||||
|
name = 'legittorrents'
|
||||||
|
supported_categories = {'all': '', 'movies': '1', 'tv': '13', 'music': '2', 'games': '3', 'anime': '5', 'books': '6'}
|
||||||
|
|
||||||
|
def __init__(self):
|
||||||
|
self.results = []
|
||||||
|
self.parser = self.SimpleSGMLParser(self.results, self.url)
|
||||||
|
|
||||||
|
def download_torrent(self, info):
|
||||||
|
print download_file(info)
|
||||||
|
|
||||||
|
class SimpleSGMLParser(sgmllib.SGMLParser):
|
||||||
|
def __init__(self, results, url, *args):
|
||||||
|
sgmllib.SGMLParser.__init__(self)
|
||||||
|
self.url = url
|
||||||
|
self.td_counter = None
|
||||||
|
self.current_item = None
|
||||||
|
self.start_name = False
|
||||||
|
self.results = results
|
||||||
|
|
||||||
|
def start_a(self, attr):
|
||||||
|
params = dict(attr)
|
||||||
|
if params.has_key('href') and params['href'].startswith('download.php?'):
|
||||||
|
self.current_item['link'] = self.url + params['href'].strip()
|
||||||
|
elif params.has_key('href') and params['href'].startswith('index.php?page=torrent-details'):
|
||||||
|
self.current_item = {}
|
||||||
|
self.td_counter = 0
|
||||||
|
self.current_item['desc_link'] = self.url + params['href'].strip()
|
||||||
|
|
||||||
|
def handle_data(self, data):
|
||||||
|
if self.td_counter == 0:
|
||||||
|
if not self.current_item.has_key('name'):
|
||||||
|
self.current_item['name'] = data.strip()
|
||||||
|
elif self.td_counter == 3:
|
||||||
|
if not self.current_item.has_key('seeds'):
|
||||||
|
self.current_item['seeds'] = ''
|
||||||
|
self.current_item['seeds']+= data.strip()
|
||||||
|
elif self.td_counter == 4:
|
||||||
|
if not self.current_item.has_key('leech'):
|
||||||
|
self.current_item['leech'] = ''
|
||||||
|
self.current_item['leech']+= data.strip()
|
||||||
|
|
||||||
|
def start_td(self,attr):
|
||||||
|
if isinstance(self.td_counter,int):
|
||||||
|
self.td_counter += 1
|
||||||
|
if self.td_counter > 5:
|
||||||
|
self.td_counter = None
|
||||||
|
# Display item
|
||||||
|
if self.current_item:
|
||||||
|
self.current_item['engine_url'] = self.url
|
||||||
|
if not self.current_item['seeds'].isdigit():
|
||||||
|
self.current_item['seeds'] = 0
|
||||||
|
if not self.current_item['leech'].isdigit():
|
||||||
|
self.current_item['leech'] = 0
|
||||||
|
self.current_item['size'] = ''
|
||||||
|
prettyPrinter(self.current_item)
|
||||||
|
self.results.append('a')
|
||||||
|
|
||||||
|
def search(self, what, cat='all'):
|
||||||
|
ret = []
|
||||||
|
i = 1
|
||||||
|
while True and i<11:
|
||||||
|
results = []
|
||||||
|
parser = self.SimpleSGMLParser(results, self.url)
|
||||||
|
dat = retrieve_url(self.url+'/index.php?page=torrents&search=%s&category=%s&active=1&order=3&by=2&pages=%d'%(what, self.supported_categories[cat], i))
|
||||||
|
results_re = re.compile('(?s)<table width="100%" class="lista">.*')
|
||||||
|
for match in results_re.finditer(dat):
|
||||||
|
res_tab = match.group(0)
|
||||||
|
parser.feed(res_tab)
|
||||||
|
parser.close()
|
||||||
|
break
|
||||||
|
if len(results) <= 0:
|
||||||
|
break
|
||||||
|
i += 1
|
||||||
|
|
||||||
@@ -6,3 +6,4 @@ vertor: 1.3
|
|||||||
extratorrent: 1.1
|
extratorrent: 1.1
|
||||||
kickasstorrents: 1.23
|
kickasstorrents: 1.23
|
||||||
btdigg: 1.21
|
btdigg: 1.21
|
||||||
|
legittorrents: 1.01
|
||||||
|
|||||||
BIN
src/searchengine/nova3/engines/legittorrents.png
Normal file
BIN
src/searchengine/nova3/engines/legittorrents.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 578 B |
109
src/searchengine/nova3/engines/legittorrents.py
Normal file
109
src/searchengine/nova3/engines/legittorrents.py
Normal file
@@ -0,0 +1,109 @@
|
|||||||
|
#VERSION: 1.01
|
||||||
|
#AUTHORS: Christophe Dumez (chris@qbittorrent.org)
|
||||||
|
|
||||||
|
# Redistribution and use in source and binary forms, with or without
|
||||||
|
# modification, are permitted provided that the following conditions are met:
|
||||||
|
#
|
||||||
|
# * Redistributions of source code must retain the above copyright notice,
|
||||||
|
# this list of conditions and the following disclaimer.
|
||||||
|
# * Redistributions in binary form must reproduce the above copyright
|
||||||
|
# notice, this list of conditions and the following disclaimer in the
|
||||||
|
# documentation and/or other materials provided with the distribution.
|
||||||
|
# * Neither the name of the author nor the names of its contributors may be
|
||||||
|
# used to endorse or promote products derived from this software without
|
||||||
|
# specific prior written permission.
|
||||||
|
#
|
||||||
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
||||||
|
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
# POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
|
|
||||||
|
from novaprinter import prettyPrinter
|
||||||
|
from helpers import retrieve_url, download_file
|
||||||
|
import sgmllib
|
||||||
|
import re
|
||||||
|
|
||||||
|
class legittorrents(object):
|
||||||
|
url = 'http://www.legittorrents.info'
|
||||||
|
name = 'legittorrents'
|
||||||
|
supported_categories = {'all': '', 'movies': '1', 'tv': '13', 'music': '2', 'games': '3', 'anime': '5', 'books': '6'}
|
||||||
|
|
||||||
|
def __init__(self):
|
||||||
|
self.results = []
|
||||||
|
self.parser = self.SimpleSGMLParser(self.results, self.url)
|
||||||
|
|
||||||
|
def download_torrent(self, info):
|
||||||
|
print(download_file(info))
|
||||||
|
|
||||||
|
class SimpleSGMLParser(sgmllib.SGMLParser):
|
||||||
|
def __init__(self, results, url, *args):
|
||||||
|
sgmllib.SGMLParser.__init__(self)
|
||||||
|
self.url = url
|
||||||
|
self.td_counter = None
|
||||||
|
self.current_item = None
|
||||||
|
self.start_name = False
|
||||||
|
self.results = results
|
||||||
|
|
||||||
|
def start_a(self, attr):
|
||||||
|
params = dict(attr)
|
||||||
|
if 'href' in params and params['href'].startswith('download.php?'):
|
||||||
|
self.current_item['link'] = self.url + params['href'].strip()
|
||||||
|
elif 'href' in params and params['href'].startswith('index.php?page=torrent-details'):
|
||||||
|
self.current_item = {}
|
||||||
|
self.td_counter = 0
|
||||||
|
self.current_item['desc_link'] = self.url + params['href'].strip()
|
||||||
|
|
||||||
|
def handle_data(self, data):
|
||||||
|
if self.td_counter == 0:
|
||||||
|
if 'name' not in self.current_item:
|
||||||
|
self.current_item['name'] = data.strip()
|
||||||
|
elif self.td_counter == 3:
|
||||||
|
if 'seeds' not in self.current_item:
|
||||||
|
self.current_item['seeds'] = ''
|
||||||
|
self.current_item['seeds']+= data.strip()
|
||||||
|
elif self.td_counter == 4:
|
||||||
|
if 'leech' not in self.current_item:
|
||||||
|
self.current_item['leech'] = ''
|
||||||
|
self.current_item['leech']+= data.strip()
|
||||||
|
|
||||||
|
def start_td(self,attr):
|
||||||
|
if isinstance(self.td_counter,int):
|
||||||
|
self.td_counter += 1
|
||||||
|
if self.td_counter > 5:
|
||||||
|
self.td_counter = None
|
||||||
|
# Display item
|
||||||
|
if self.current_item:
|
||||||
|
self.current_item['engine_url'] = self.url
|
||||||
|
if not self.current_item['seeds'].isdigit():
|
||||||
|
self.current_item['seeds'] = 0
|
||||||
|
if not self.current_item['leech'].isdigit():
|
||||||
|
self.current_item['leech'] = 0
|
||||||
|
self.current_item['size'] = ''
|
||||||
|
prettyPrinter(self.current_item)
|
||||||
|
self.results.append('a')
|
||||||
|
|
||||||
|
def search(self, what, cat='all'):
|
||||||
|
ret = []
|
||||||
|
i = 1
|
||||||
|
while True and i<11:
|
||||||
|
results = []
|
||||||
|
parser = self.SimpleSGMLParser(results, self.url)
|
||||||
|
dat = retrieve_url(self.url+'/index.php?page=torrents&search=%s&category=%s&active=1&order=3&by=2&pages=%d'%(what, self.supported_categories[cat], i))
|
||||||
|
results_re = re.compile('(?s)<table width="100%" class="lista">.*')
|
||||||
|
for match in results_re.finditer(dat):
|
||||||
|
res_tab = match.group(0)
|
||||||
|
parser.feed(res_tab)
|
||||||
|
parser.close()
|
||||||
|
break
|
||||||
|
if len(results) <= 0:
|
||||||
|
break
|
||||||
|
i += 1
|
||||||
|
|
||||||
@@ -6,3 +6,4 @@ vertor: 1.3
|
|||||||
extratorrent: 1.1
|
extratorrent: 1.1
|
||||||
kickasstorrents: 1.23
|
kickasstorrents: 1.23
|
||||||
btdigg: 1.21
|
btdigg: 1.21
|
||||||
|
legittorrents: 1.01
|
||||||
|
|||||||
@@ -14,6 +14,8 @@
|
|||||||
<file>nova/engines/isohunt.py</file>
|
<file>nova/engines/isohunt.py</file>
|
||||||
<file>nova/engines/kickasstorrents.png</file>
|
<file>nova/engines/kickasstorrents.png</file>
|
||||||
<file>nova/engines/kickasstorrents.py</file>
|
<file>nova/engines/kickasstorrents.py</file>
|
||||||
|
<file>nova/engines/legittorrents.png</file>
|
||||||
|
<file>nova/engines/legittorrents.py</file>
|
||||||
<file>nova/engines/mininova.png</file>
|
<file>nova/engines/mininova.png</file>
|
||||||
<file>nova/engines/mininova.py</file>
|
<file>nova/engines/mininova.py</file>
|
||||||
<file>nova/engines/piratebay.png</file>
|
<file>nova/engines/piratebay.png</file>
|
||||||
@@ -36,6 +38,8 @@
|
|||||||
<file>nova3/engines/isohunt.py</file>
|
<file>nova3/engines/isohunt.py</file>
|
||||||
<file>nova3/engines/kickasstorrents.png</file>
|
<file>nova3/engines/kickasstorrents.png</file>
|
||||||
<file>nova3/engines/kickasstorrents.py</file>
|
<file>nova3/engines/kickasstorrents.py</file>
|
||||||
|
<file>nova3/engines/legittorrents.png</file>
|
||||||
|
<file>nova3/engines/legittorrents.py</file>
|
||||||
<file>nova3/engines/mininova.png</file>
|
<file>nova3/engines/mininova.png</file>
|
||||||
<file>nova3/engines/mininova.py</file>
|
<file>nova3/engines/mininova.py</file>
|
||||||
<file>nova3/engines/piratebay.png</file>
|
<file>nova3/engines/piratebay.png</file>
|
||||||
|
|||||||
221
src/stacktrace_win.h
Normal file
221
src/stacktrace_win.h
Normal file
@@ -0,0 +1,221 @@
|
|||||||
|
/***************************************************************************
|
||||||
|
* Copyright (C) 2005-09 by the Quassel Project *
|
||||||
|
* devel@quassel-irc.org *
|
||||||
|
* *
|
||||||
|
* This program is free software; you can redistribute it and/or modify *
|
||||||
|
* it under the terms of the GNU General Public License as published by *
|
||||||
|
* the Free Software Foundation; either version 2 of the License, or *
|
||||||
|
* (at your option) version 3. *
|
||||||
|
* *
|
||||||
|
* This program is distributed in the hope that it will be useful, *
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||||
|
* GNU General Public License for more details. *
|
||||||
|
* *
|
||||||
|
* You should have received a copy of the GNU General Public License *
|
||||||
|
* along with this program; if not, write to the *
|
||||||
|
* Free Software Foundation, Inc., *
|
||||||
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
||||||
|
***************************************************************************/
|
||||||
|
|
||||||
|
#include <windows.h>
|
||||||
|
#include <dbghelp.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
#include <QTextStream>
|
||||||
|
|
||||||
|
namespace straceWin{
|
||||||
|
void loadHelpStackFrame(IMAGEHLP_STACK_FRAME&, const STACKFRAME64&);
|
||||||
|
BOOL CALLBACK EnumSymbolsCB(PSYMBOL_INFO, ULONG, PVOID);
|
||||||
|
BOOL CALLBACK EnumModulesCB(LPCSTR, DWORD64, PVOID);
|
||||||
|
const QString getBacktrace();
|
||||||
|
struct EnumModulesContext;
|
||||||
|
}
|
||||||
|
|
||||||
|
void straceWin::loadHelpStackFrame(IMAGEHLP_STACK_FRAME &ihsf, const STACKFRAME64 &stackFrame) {
|
||||||
|
ZeroMemory(&ihsf, sizeof(IMAGEHLP_STACK_FRAME));
|
||||||
|
ihsf.InstructionOffset = stackFrame.AddrPC.Offset;
|
||||||
|
ihsf.FrameOffset = stackFrame.AddrFrame.Offset;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL CALLBACK straceWin::EnumSymbolsCB(PSYMBOL_INFO symInfo, ULONG size, PVOID user) {
|
||||||
|
QStringList *params = (QStringList *)user;
|
||||||
|
if(symInfo->Flags & SYMFLAG_PARAMETER) {
|
||||||
|
params->append(symInfo->Name);
|
||||||
|
}
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
struct straceWin::EnumModulesContext {
|
||||||
|
HANDLE hProcess;
|
||||||
|
QTextStream &stream;
|
||||||
|
EnumModulesContext(HANDLE hProcess, QTextStream &stream) : hProcess(hProcess), stream(stream) {}
|
||||||
|
};
|
||||||
|
|
||||||
|
BOOL CALLBACK straceWin::EnumModulesCB(LPCSTR ModuleName, DWORD64 BaseOfDll, PVOID UserContext) {
|
||||||
|
IMAGEHLP_MODULE64 mod;
|
||||||
|
EnumModulesContext *context = (EnumModulesContext *)UserContext;
|
||||||
|
mod.SizeOfStruct = sizeof(IMAGEHLP_MODULE64);
|
||||||
|
if(SymGetModuleInfo64(context->hProcess, BaseOfDll, &mod)) {
|
||||||
|
QString moduleBase = QString("0x%1").arg(BaseOfDll, 8, 16, QLatin1Char('0'));
|
||||||
|
QString line = QString("%1 %2 Image: %3")
|
||||||
|
.arg(mod.ModuleName, -14)
|
||||||
|
.arg(moduleBase, -13)
|
||||||
|
.arg(mod.LoadedImageName);
|
||||||
|
context->stream << line << '\n';
|
||||||
|
|
||||||
|
QString pdbName(mod.LoadedPdbName);
|
||||||
|
if(!pdbName.isEmpty()) {
|
||||||
|
QString line2 = QString("%1 %2")
|
||||||
|
.arg("", 35)
|
||||||
|
.arg(pdbName);
|
||||||
|
context->stream << line2 << '\n';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#if defined( _M_IX86 ) && defined(Q_CC_MSVC)
|
||||||
|
// Disable global optimization and ignore /GS waning caused by
|
||||||
|
// inline assembly.
|
||||||
|
// not needed with mingw cause we can tell mingw which registers we use
|
||||||
|
#pragma optimize("g", off)
|
||||||
|
#pragma warning(push)
|
||||||
|
#pragma warning(disable : 4748)
|
||||||
|
#endif
|
||||||
|
const QString straceWin::getBacktrace() {
|
||||||
|
DWORD MachineType;
|
||||||
|
CONTEXT Context;
|
||||||
|
STACKFRAME64 StackFrame;
|
||||||
|
|
||||||
|
#ifdef _M_IX86
|
||||||
|
ZeroMemory(&Context, sizeof(CONTEXT));
|
||||||
|
Context.ContextFlags = CONTEXT_CONTROL;
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef __MINGW32__
|
||||||
|
asm("Label:\n\t"
|
||||||
|
"movl %%ebp,%0;\n\t"
|
||||||
|
"movl %%esp,%1;\n\t"
|
||||||
|
"movl $Label,%%eax;\n\t"
|
||||||
|
"movl %%eax,%2;\n\t"
|
||||||
|
:"=r"(Context.Ebp),"=r"(Context.Esp),"=r"(Context.Eip)
|
||||||
|
://no input
|
||||||
|
:"eax");
|
||||||
|
#else
|
||||||
|
_asm {
|
||||||
|
Label:
|
||||||
|
mov [Context.Ebp], ebp;
|
||||||
|
mov [Context.Esp], esp;
|
||||||
|
mov eax, [Label];
|
||||||
|
mov [Context.Eip], eax;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
#else
|
||||||
|
RtlCaptureContext(&Context);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
ZeroMemory(&StackFrame, sizeof(STACKFRAME64));
|
||||||
|
#ifdef _M_IX86
|
||||||
|
MachineType = IMAGE_FILE_MACHINE_I386;
|
||||||
|
StackFrame.AddrPC.Offset = Context.Eip;
|
||||||
|
StackFrame.AddrPC.Mode = AddrModeFlat;
|
||||||
|
StackFrame.AddrFrame.Offset = Context.Ebp;
|
||||||
|
StackFrame.AddrFrame.Mode = AddrModeFlat;
|
||||||
|
StackFrame.AddrStack.Offset = Context.Esp;
|
||||||
|
StackFrame.AddrStack.Mode = AddrModeFlat;
|
||||||
|
#elif _M_X64
|
||||||
|
MachineType = IMAGE_FILE_MACHINE_AMD64;
|
||||||
|
StackFrame.AddrPC.Offset = Context.Rip;
|
||||||
|
StackFrame.AddrPC.Mode = AddrModeFlat;
|
||||||
|
StackFrame.AddrFrame.Offset = Context.Rsp;
|
||||||
|
StackFrame.AddrFrame.Mode = AddrModeFlat;
|
||||||
|
StackFrame.AddrStack.Offset = Context.Rsp;
|
||||||
|
StackFrame.AddrStack.Mode = AddrModeFlat;
|
||||||
|
#elif _M_IA64
|
||||||
|
MachineType = IMAGE_FILE_MACHINE_IA64;
|
||||||
|
StackFrame.AddrPC.Offset = Context.StIIP;
|
||||||
|
StackFrame.AddrPC.Mode = AddrModeFlat;
|
||||||
|
StackFrame.AddrFrame.Offset = Context.IntSp;
|
||||||
|
StackFrame.AddrFrame.Mode = AddrModeFlat;
|
||||||
|
StackFrame.AddrBStore.Offset= Context.RsBSP;
|
||||||
|
StackFrame.AddrBStore.Mode = AddrModeFlat;
|
||||||
|
StackFrame.AddrStack.Offset = Context.IntSp;
|
||||||
|
StackFrame.AddrStack.Mode = AddrModeFlat;
|
||||||
|
#else
|
||||||
|
#error "Unsupported platform"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
QString log;
|
||||||
|
QTextStream logStream(&log);
|
||||||
|
|
||||||
|
HANDLE hProcess = GetCurrentProcess();
|
||||||
|
HANDLE hThread = GetCurrentThread();
|
||||||
|
SymInitialize(hProcess, NULL, TRUE);
|
||||||
|
|
||||||
|
DWORD64 dwDisplacement;
|
||||||
|
|
||||||
|
ULONG64 buffer[(sizeof(SYMBOL_INFO) +
|
||||||
|
MAX_SYM_NAME*sizeof(TCHAR) +
|
||||||
|
sizeof(ULONG64) - 1) / sizeof(ULONG64)];
|
||||||
|
PSYMBOL_INFO pSymbol = (PSYMBOL_INFO)buffer;
|
||||||
|
pSymbol->SizeOfStruct = sizeof(SYMBOL_INFO);
|
||||||
|
pSymbol->MaxNameLen = MAX_SYM_NAME;
|
||||||
|
|
||||||
|
IMAGEHLP_MODULE64 mod;
|
||||||
|
mod.SizeOfStruct = sizeof(IMAGEHLP_MODULE64);
|
||||||
|
|
||||||
|
IMAGEHLP_STACK_FRAME ihsf;
|
||||||
|
ZeroMemory(&ihsf, sizeof(IMAGEHLP_STACK_FRAME));
|
||||||
|
|
||||||
|
int i = 0;
|
||||||
|
while(StackWalk64(MachineType, hProcess, hThread, &StackFrame, &Context, NULL, NULL, NULL, NULL)) {
|
||||||
|
if(i == 128)
|
||||||
|
break;
|
||||||
|
|
||||||
|
loadHelpStackFrame(ihsf, StackFrame);
|
||||||
|
if(StackFrame.AddrPC.Offset != 0) { // Valid frame.
|
||||||
|
|
||||||
|
QString fileName("???");
|
||||||
|
if(SymGetModuleInfo64(hProcess, ihsf.InstructionOffset, &mod)) {
|
||||||
|
fileName = QString(mod.ImageName);
|
||||||
|
int slashPos = fileName.lastIndexOf('\\');
|
||||||
|
if(slashPos != -1)
|
||||||
|
fileName = fileName.mid(slashPos + 1);
|
||||||
|
}
|
||||||
|
QString funcName;
|
||||||
|
if(SymFromAddr(hProcess, ihsf.InstructionOffset, &dwDisplacement, pSymbol)) {
|
||||||
|
funcName = QString(pSymbol->Name);
|
||||||
|
} else {
|
||||||
|
funcName = QString("0x%1").arg(ihsf.InstructionOffset, 8, 16, QLatin1Char('0'));
|
||||||
|
}
|
||||||
|
QStringList params;
|
||||||
|
SymSetContext(hProcess, &ihsf, NULL);
|
||||||
|
SymEnumSymbols(hProcess, 0, NULL, EnumSymbolsCB, (PVOID)¶ms);
|
||||||
|
|
||||||
|
QString insOffset = QString("0x%1").arg(ihsf.InstructionOffset, 8, 16, QLatin1Char('0'));
|
||||||
|
QString debugLine = QString("#%1 %2 %3 %4(%5)")
|
||||||
|
.arg(i, 3, 10)
|
||||||
|
.arg(fileName, -20)
|
||||||
|
.arg(insOffset, -11)
|
||||||
|
.arg(funcName)
|
||||||
|
.arg(params.join(", "));
|
||||||
|
logStream << debugLine << '\n';
|
||||||
|
i++;
|
||||||
|
} else {
|
||||||
|
break; // we're at the end.
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
logStream << "\n\nList of linked Modules:\n";
|
||||||
|
EnumModulesContext modulesContext(hProcess, logStream);
|
||||||
|
SymEnumerateModules64(hProcess, EnumModulesCB, (PVOID)&modulesContext);
|
||||||
|
return log;
|
||||||
|
}
|
||||||
|
#if defined(_M_IX86) && defined(Q_CC_MSVC)
|
||||||
|
#pragma warning(pop)
|
||||||
|
#pragma optimize("g", on)
|
||||||
|
#endif
|
||||||
49
src/stacktrace_win_dlg.h
Normal file
49
src/stacktrace_win_dlg.h
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
#ifndef STACKTRACE_WIN_DLG_H
|
||||||
|
#define STACKTRACE_WIN_DLG_H
|
||||||
|
|
||||||
|
#include <QTextStream>
|
||||||
|
#include <QClipboard>
|
||||||
|
#include "boost/version.hpp"
|
||||||
|
#include "libtorrent/version.hpp"
|
||||||
|
#include "ui_stacktrace_win_dlg.h"
|
||||||
|
|
||||||
|
class StraceDlg : public QDialog, private Ui::errorDialog {
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
|
public:
|
||||||
|
StraceDlg(QWidget *parent = 0): QDialog(parent) {
|
||||||
|
setupUi(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
~StraceDlg() {}
|
||||||
|
|
||||||
|
void setStacktraceString(const QString& trace) {
|
||||||
|
QString htmlStr;
|
||||||
|
QTextStream outStream(&htmlStr);
|
||||||
|
outStream << "<p align=center><b><font size=7 color=red>" <<
|
||||||
|
"qBittorrent has crashed" <<
|
||||||
|
"</font></b></p>" <<
|
||||||
|
"<font size=4>" <<
|
||||||
|
"<p>" <<
|
||||||
|
"Please report a bug at <a href=\"http://bugs.qbittorrent.org\">" <<
|
||||||
|
"http://bugs.qbittorrent.org</a>" <<
|
||||||
|
" and provide the following backtrace." <<
|
||||||
|
"</p>" <<
|
||||||
|
"</font>" <<
|
||||||
|
"<br/><hr><br/>" <<
|
||||||
|
"<p align=center><font size=4>qBittorrent version: " << VERSION <<
|
||||||
|
"<br/>Libtorrent version: " << LIBTORRENT_VERSION <<
|
||||||
|
"<br/>Qt version: " << QT_VERSION_STR <<
|
||||||
|
"<br/>Boost version: " << QString::number(BOOST_VERSION / 100000) << '.' <<
|
||||||
|
QString::number((BOOST_VERSION / 100) % 1000) << '.' <<
|
||||||
|
QString::number(BOOST_VERSION % 100) << "</font></p><br/>"
|
||||||
|
"<pre><code>" <<
|
||||||
|
trace <<
|
||||||
|
"</code></pre>" <<
|
||||||
|
"<br/><hr><br/><br/>";
|
||||||
|
|
||||||
|
errorText->setHtml(htmlStr);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
||||||
35
src/stacktrace_win_dlg.ui
Normal file
35
src/stacktrace_win_dlg.ui
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<ui version="4.0">
|
||||||
|
<class>errorDialog</class>
|
||||||
|
<widget class="QDialog" name="errorDialog">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>0</x>
|
||||||
|
<y>0</y>
|
||||||
|
<width>640</width>
|
||||||
|
<height>480</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="windowTitle">
|
||||||
|
<string>Crash info</string>
|
||||||
|
</property>
|
||||||
|
<layout class="QVBoxLayout" name="verticalLayout">
|
||||||
|
<item>
|
||||||
|
<widget class="QTextBrowser" name="errorText">
|
||||||
|
<property name="html">
|
||||||
|
<string notr="true"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||||
|
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||||
|
p, li { white-space: pre-wrap; }
|
||||||
|
</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;">
|
||||||
|
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><br /></p></body></html></string>
|
||||||
|
</property>
|
||||||
|
<property name="openExternalLinks">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
|
<resources/>
|
||||||
|
<connections/>
|
||||||
|
</ui>
|
||||||
@@ -141,7 +141,7 @@ void TorrentCreatorDlg::on_createButton_clicked() {
|
|||||||
connect(creatorThread, SIGNAL(creationSuccess(QString, QString)), this, SLOT(handleCreationSuccess(QString, QString)));
|
connect(creatorThread, SIGNAL(creationSuccess(QString, QString)), this, SLOT(handleCreationSuccess(QString, QString)));
|
||||||
connect(creatorThread, SIGNAL(creationFailure(QString)), this, SLOT(handleCreationFailure(QString)));
|
connect(creatorThread, SIGNAL(creationFailure(QString)), this, SLOT(handleCreationFailure(QString)));
|
||||||
connect(creatorThread, SIGNAL(updateProgress(int)), this, SLOT(updateProgressBar(int)));
|
connect(creatorThread, SIGNAL(updateProgress(int)), this, SLOT(updateProgressBar(int)));
|
||||||
creatorThread->create(input, destination, trackers, url_seeds, comment, check_private->isChecked(), getPieceSize());
|
creatorThread->create(input, QDir::toNativeSeparators(destination), trackers, url_seeds, comment, check_private->isChecked(), getPieceSize());
|
||||||
}
|
}
|
||||||
|
|
||||||
void TorrentCreatorDlg::handleCreationFailure(QString msg) {
|
void TorrentCreatorDlg::handleCreationFailure(QString msg) {
|
||||||
|
|||||||
@@ -129,7 +129,15 @@ void TorrentCreatorThread::run() {
|
|||||||
if (abort) return;
|
if (abort) return;
|
||||||
// create the torrent and print it to out
|
// create the torrent and print it to out
|
||||||
qDebug("Saving to %s", qPrintable(save_path));
|
qDebug("Saving to %s", qPrintable(save_path));
|
||||||
|
#ifdef _MSC_VER
|
||||||
|
wchar_t *wsave_path = new wchar_t[save_path.length()+1];
|
||||||
|
int len = save_path.toWCharArray(wsave_path);
|
||||||
|
wsave_path[len] = '\0';
|
||||||
|
std::ofstream outfile(wsave_path, std::ios_base::out|std::ios_base::binary);
|
||||||
|
delete[] wsave_path;
|
||||||
|
#else
|
||||||
std::ofstream outfile(save_path.toLocal8Bit().constData(), std::ios_base::out|std::ios_base::binary);
|
std::ofstream outfile(save_path.toLocal8Bit().constData(), std::ios_base::out|std::ios_base::binary);
|
||||||
|
#endif
|
||||||
if (outfile.fail())
|
if (outfile.fail())
|
||||||
throw std::exception();
|
throw std::exception();
|
||||||
bencode(std::ostream_iterator<char>(outfile), t.generate());
|
bencode(std::ostream_iterator<char>(outfile), t.generate());
|
||||||
|
|||||||
@@ -390,8 +390,8 @@ void TransferListWidget::copySelectedMagnetURIs() const {
|
|||||||
const QStringList hashes = getSelectedTorrentsHashes();
|
const QStringList hashes = getSelectedTorrentsHashes();
|
||||||
foreach (const QString &hash, hashes) {
|
foreach (const QString &hash, hashes) {
|
||||||
const QTorrentHandle h = BTSession->getTorrentHandle(hash);
|
const QTorrentHandle h = BTSession->getTorrentHandle(hash);
|
||||||
if (h.is_valid() && h.has_metadata())
|
if (h.is_valid())
|
||||||
magnet_uris << misc::toQString(make_magnet_uri(h.get_torrent_info()));
|
magnet_uris << misc::toQString(make_magnet_uri(h));
|
||||||
}
|
}
|
||||||
qApp->clipboard()->setText(magnet_uris.join("\n"));
|
qApp->clipboard()->setText(magnet_uris.join("\n"));
|
||||||
}
|
}
|
||||||
@@ -589,7 +589,7 @@ void TransferListWidget::askNewLabelForSelection() {
|
|||||||
bool invalid;
|
bool invalid;
|
||||||
do {
|
do {
|
||||||
invalid = false;
|
invalid = false;
|
||||||
const QString label = QInputDialog::getText(this, tr("New Label"), tr("Label:"), QLineEdit::Normal, "", &ok);
|
const QString label = QInputDialog::getText(this, tr("New Label"), tr("Label:"), QLineEdit::Normal, "", &ok).trimmed();
|
||||||
if (ok && !label.isEmpty()) {
|
if (ok && !label.isEmpty()) {
|
||||||
if (fsutils::isValidFileSystemName(label)) {
|
if (fsutils::isValidFileSystemName(label)) {
|
||||||
setSelectionLabel(label);
|
setSelectionLabel(label);
|
||||||
@@ -810,7 +810,6 @@ void TransferListWidget::displayListMenu(const QPoint&) {
|
|||||||
prioMenu->addAction(&actionBottomPriority);
|
prioMenu->addAction(&actionBottomPriority);
|
||||||
}
|
}
|
||||||
listMenu.addSeparator();
|
listMenu.addSeparator();
|
||||||
if (one_has_metadata)
|
|
||||||
listMenu.addAction(&actionCopy_magnet_link);
|
listMenu.addAction(&actionCopy_magnet_link);
|
||||||
// Call menu
|
// Call menu
|
||||||
QAction *act = 0;
|
QAction *act = 0;
|
||||||
|
|||||||
@@ -76,9 +76,7 @@ QString json::toJson(const QVariant& v) {
|
|||||||
result += "\\t";
|
result += "\\t";
|
||||||
break;
|
break;
|
||||||
case '\"':
|
case '\"':
|
||||||
case '\'':
|
|
||||||
case '\\':
|
case '\\':
|
||||||
case '&':
|
|
||||||
result += '\\';
|
result += '\\';
|
||||||
case '\0':
|
case '\0':
|
||||||
default:
|
default:
|
||||||
@@ -116,8 +114,11 @@ QVariantMap json::fromJson(const QString& json) {
|
|||||||
if (!tmp.isEmpty()) couples << tmp;
|
if (!tmp.isEmpty()) couples << tmp;
|
||||||
|
|
||||||
foreach (const QString &couple, couples) {
|
foreach (const QString &couple, couples) {
|
||||||
QStringList parts = couple.split(":");
|
QStringList parts;
|
||||||
if (parts.size() != 2) continue;
|
int jsonSep = couple.indexOf(":");
|
||||||
|
parts << couple.left(jsonSep);
|
||||||
|
parts << couple.mid(jsonSep + 1);
|
||||||
|
Q_ASSERT(parts.size() == 2);
|
||||||
QString key = parts.first();
|
QString key = parts.first();
|
||||||
if (key.startsWith("\"") && key.endsWith("\"")) {
|
if (key.startsWith("\"") && key.endsWith("\"")) {
|
||||||
key = key.mid(1, key.length()-2);
|
key = key.mid(1, key.length()-2);
|
||||||
@@ -132,6 +133,11 @@ QVariantMap json::fromJson(const QString& json) {
|
|||||||
if (list_val.startsWith("\"") && list_val.endsWith("\"")) {
|
if (list_val.startsWith("\"") && list_val.endsWith("\"")) {
|
||||||
varlist << list_val.mid(1, list_val.length()-2).replace("\\n", "\n");
|
varlist << list_val.mid(1, list_val.length()-2).replace("\\n", "\n");
|
||||||
} else {
|
} else {
|
||||||
|
if (list_val.compare("false", Qt::CaseInsensitive) == 0)
|
||||||
|
varlist << false;
|
||||||
|
else if (list_val.compare("true", Qt::CaseInsensitive) == 0)
|
||||||
|
varlist << true;
|
||||||
|
else
|
||||||
varlist << list_val.toInt();
|
varlist << list_val.toInt();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,42 +1,61 @@
|
|||||||
|
TRANSLATORS:
|
||||||
|
|
||||||
|
1. Use an editor that has NSIS syntax highlighting(eg Geany). This will
|
||||||
|
make your life easier.
|
||||||
|
2. Open the relevant .nsi file that exists in the folder named
|
||||||
|
"installer-translations"
|
||||||
|
3. Lines starting with ";" are considered comments. These include the
|
||||||
|
english message to help you with the translation.
|
||||||
|
4. Edit only the part inside the quotation marks(""). Unless you know
|
||||||
|
what you are doing.
|
||||||
|
5. Submit your changes: 1) as a pull request to the official git repo or
|
||||||
|
2) open an issue to the bugtracker and attach them or 3) via email or
|
||||||
|
4)the same way you provide the tranlations for qbt itself
|
||||||
|
|
||||||
|
PACKAGERS:
|
||||||
|
|
||||||
You will need NSIS and upx to make the installer.
|
You will need NSIS and upx to make the installer.
|
||||||
|
|
||||||
Open the qbittorrent.nsi file in an editor and change line that contains "!define PROG_VERSION "3.0.3"" to the version of qbittorrent you just built.
|
1. Open the options.nsi file in an editor and change line that contains
|
||||||
|
"!define PROG_VERSION "3.0.3"" to the version of qbittorrent you just built.
|
||||||
|
2. Extract the plugins found in the folder "nsis plugins" into the your
|
||||||
|
NSIS's Plugin directory(usually C:\Program Files\NSIS\Plugins).
|
||||||
|
Only the *.dll files are needed.
|
||||||
|
3. The script you need to compile is "qbittorrent.nsi". It includes all other necessary scripts.
|
||||||
|
4. The script expects the following file tree:
|
||||||
|
|
||||||
The installer script expects the following file tree:
|
The installer script expects the following file tree:
|
||||||
|
|
||||||
Root:
|
Root:
|
||||||
|
installer-translations
|
||||||
|
afrikaans.nsi
|
||||||
|
....
|
||||||
|
(all the .nsi files found here in every source release)
|
||||||
|
welsh.nsi
|
||||||
translations
|
translations
|
||||||
qt_ar.qm
|
qt_ar.qm
|
||||||
qt_bg.qm
|
...
|
||||||
qt_ca.qm
|
(all the .qm files found in src/qt-translations in every source release)
|
||||||
qt_cs.qm
|
|
||||||
qt_da.qm
|
|
||||||
qt_de.qm
|
|
||||||
qt_es.qm
|
|
||||||
qt_fi.qm
|
|
||||||
qt_fr.qm
|
|
||||||
qt_gl.qm
|
|
||||||
qt_he.qm
|
|
||||||
qt_hu.qm
|
|
||||||
qt_it.qm
|
|
||||||
qt_ja.qm
|
|
||||||
qt_ko.qm
|
|
||||||
qt_lt.qm
|
|
||||||
qt_nl.qm
|
|
||||||
qt_pl.qm
|
|
||||||
qt_pt.qm
|
|
||||||
qt_pt_BR.qm
|
|
||||||
qt_ru.qm
|
|
||||||
qt_sk.qm
|
|
||||||
qt_sv.qm
|
|
||||||
qt_tr.qm
|
|
||||||
qt_uk.qm
|
|
||||||
qt_zh_CN.qm
|
|
||||||
qt_zh_TW.qm
|
qt_zh_TW.qm
|
||||||
|
installer.nsi
|
||||||
license.txt
|
license.txt
|
||||||
|
options.nsi
|
||||||
qbittorrent.exe
|
qbittorrent.exe
|
||||||
qbittorrent.nsi
|
qbittorrent.nsi
|
||||||
qt.conf
|
qt.conf
|
||||||
|
translations.nsi
|
||||||
|
uninstaller.nsi
|
||||||
|
|
||||||
|
|
||||||
license.txt is a text file that contains the text rendered from src\gpl.html
|
5. "license.txt" is a text file that contains the text rendered
|
||||||
|
from src\gpl.html or the text contained in COPYING
|
||||||
|
6. "qbittorrent.exe" is the compiled binary file.
|
||||||
|
|
||||||
|
SCRIPT HACKERS:
|
||||||
|
|
||||||
|
If you add any new LangString variable to the scripts you NEED to provide
|
||||||
|
"translations" of it to all the .nsi files inside "installer-translations.
|
||||||
|
You can always leave the english string but you have to use all the LANG_<lang name>
|
||||||
|
for the given variable. Otherwise, if the user chooses a language that you
|
||||||
|
haven't provide a LANG_<lang name> for your variable then your string will be empty.
|
||||||
|
Don't worry though, NSIS throws warnings for this when compiling the scripts.
|
||||||
|
|||||||
47
src/windows/installer-translations/afrikaans.nsi
Normal file
47
src/windows/installer-translations/afrikaans.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_AFRIKAANS} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_AFRIKAANS} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_AFRIKAANS} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_AFRIKAANS} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_AFRIKAANS} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_AFRIKAANS} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_AFRIKAANS} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_AFRIKAANS} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_AFRIKAANS} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_AFRIKAANS} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_AFRIKAANS} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_AFRIKAANS} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_AFRIKAANS} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_AFRIKAANS} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_AFRIKAANS} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_AFRIKAANS} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_AFRIKAANS} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_AFRIKAANS} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_AFRIKAANS} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_AFRIKAANS} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/albanian.nsi
Normal file
47
src/windows/installer-translations/albanian.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_ALBANIAN} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_ALBANIAN} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_ALBANIAN} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_ALBANIAN} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_ALBANIAN} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_ALBANIAN} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_ALBANIAN} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_ALBANIAN} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_ALBANIAN} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_ALBANIAN} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_ALBANIAN} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_ALBANIAN} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_ALBANIAN} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_ALBANIAN} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_ALBANIAN} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_ALBANIAN} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_ALBANIAN} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_ALBANIAN} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_ALBANIAN} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_ALBANIAN} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/arabic.nsi
Normal file
47
src/windows/installer-translations/arabic.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_ARABIC} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_ARABIC} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_ARABIC} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_ARABIC} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_ARABIC} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_ARABIC} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_ARABIC} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_ARABIC} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_ARABIC} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_ARABIC} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_ARABIC} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_ARABIC} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_ARABIC} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_ARABIC} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_ARABIC} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_ARABIC} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_ARABIC} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_ARABIC} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_ARABIC} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_ARABIC} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/basque.nsi
Normal file
47
src/windows/installer-translations/basque.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_BASQUE} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_BASQUE} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_BASQUE} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_BASQUE} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_BASQUE} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_BASQUE} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_BASQUE} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_BASQUE} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_BASQUE} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_BASQUE} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_BASQUE} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_BASQUE} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_BASQUE} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_BASQUE} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_BASQUE} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_BASQUE} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_BASQUE} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_BASQUE} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_BASQUE} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_BASQUE} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/belarusian.nsi
Normal file
47
src/windows/installer-translations/belarusian.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_BELARUSIAN} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_BELARUSIAN} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_BELARUSIAN} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_BELARUSIAN} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_BELARUSIAN} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_BELARUSIAN} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_BELARUSIAN} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_BELARUSIAN} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_BELARUSIAN} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_BELARUSIAN} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_BELARUSIAN} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_BELARUSIAN} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_BELARUSIAN} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_BELARUSIAN} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_BELARUSIAN} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_BELARUSIAN} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_BELARUSIAN} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_BELARUSIAN} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_BELARUSIAN} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_BELARUSIAN} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/bosnian.nsi
Normal file
47
src/windows/installer-translations/bosnian.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_BOSNIAN} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_BOSNIAN} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_BOSNIAN} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_BOSNIAN} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_BOSNIAN} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_BOSNIAN} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_BOSNIAN} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_BOSNIAN} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_BOSNIAN} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_BOSNIAN} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_BOSNIAN} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_BOSNIAN} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_BOSNIAN} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_BOSNIAN} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_BOSNIAN} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_BOSNIAN} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_BOSNIAN} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_BOSNIAN} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_BOSNIAN} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_BOSNIAN} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/breton.nsi
Normal file
47
src/windows/installer-translations/breton.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_BRETON} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_BRETON} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_BRETON} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_BRETON} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_BRETON} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_BRETON} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_BRETON} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_BRETON} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_BRETON} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_BRETON} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_BRETON} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_BRETON} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_BRETON} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_BRETON} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_BRETON} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_BRETON} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_BRETON} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_BRETON} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_BRETON} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_BRETON} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/bulgarian.nsi
Normal file
47
src/windows/installer-translations/bulgarian.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_BULGARIAN} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_BULGARIAN} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_BULGARIAN} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_BULGARIAN} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_BULGARIAN} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_BULGARIAN} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_BULGARIAN} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_BULGARIAN} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_BULGARIAN} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_BULGARIAN} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_BULGARIAN} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_BULGARIAN} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_BULGARIAN} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_BULGARIAN} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_BULGARIAN} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_BULGARIAN} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_BULGARIAN} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_BULGARIAN} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_BULGARIAN} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_BULGARIAN} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/catalan.nsi
Normal file
47
src/windows/installer-translations/catalan.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_CATALAN} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_CATALAN} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_CATALAN} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_CATALAN} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_CATALAN} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_CATALAN} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_CATALAN} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_CATALAN} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_CATALAN} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_CATALAN} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_CATALAN} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_CATALAN} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_CATALAN} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_CATALAN} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_CATALAN} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_CATALAN} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_CATALAN} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_CATALAN} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_CATALAN} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_CATALAN} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/croatian.nsi
Normal file
47
src/windows/installer-translations/croatian.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_CROATIAN} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_CROATIAN} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_CROATIAN} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_CROATIAN} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_CROATIAN} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_CROATIAN} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_CROATIAN} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_CROATIAN} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_CROATIAN} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_CROATIAN} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_CROATIAN} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_CROATIAN} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_CROATIAN} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_CROATIAN} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_CROATIAN} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_CROATIAN} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_CROATIAN} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_CROATIAN} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_CROATIAN} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_CROATIAN} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/czech.nsi
Normal file
47
src/windows/installer-translations/czech.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_CZECH} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_CZECH} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_CZECH} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_CZECH} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_CZECH} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_CZECH} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_CZECH} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_CZECH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_CZECH} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_CZECH} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_CZECH} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_CZECH} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_CZECH} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_CZECH} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_CZECH} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_CZECH} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_CZECH} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_CZECH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_CZECH} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_CZECH} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/danish.nsi
Normal file
47
src/windows/installer-translations/danish.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_DANISH} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_DANISH} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_DANISH} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_DANISH} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_DANISH} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_DANISH} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_DANISH} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_DANISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_DANISH} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_DANISH} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_DANISH} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_DANISH} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_DANISH} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_DANISH} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_DANISH} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_DANISH} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_DANISH} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_DANISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_DANISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_DANISH} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/dutch.nsi
Normal file
47
src/windows/installer-translations/dutch.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_DUTCH} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_DUTCH} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_DUTCH} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_DUTCH} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_DUTCH} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_DUTCH} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_DUTCH} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_DUTCH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_DUTCH} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_DUTCH} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_DUTCH} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_DUTCH} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_DUTCH} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_DUTCH} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_DUTCH} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_DUTCH} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_DUTCH} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_DUTCH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_DUTCH} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_DUTCH} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/english.nsi
Normal file
47
src/windows/installer-translations/english.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/esperanto.nsi
Normal file
47
src/windows/installer-translations/esperanto.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_ESPERANTO} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_ESPERANTO} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_ESPERANTO} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_ESPERANTO} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_ESPERANTO} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_ESPERANTO} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_ESPERANTO} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_ESPERANTO} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_ESPERANTO} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_ESPERANTO} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_ESPERANTO} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_ESPERANTO} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_ESPERANTO} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_ESPERANTO} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_ESPERANTO} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_ESPERANTO} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_ESPERANTO} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_ESPERANTO} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_ESPERANTO} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_ESPERANTO} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/estonian.nsi
Normal file
47
src/windows/installer-translations/estonian.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_ESTONIAN} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_ESTONIAN} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_ESTONIAN} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_ESTONIAN} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_ESTONIAN} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_ESTONIAN} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_ESTONIAN} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_ESTONIAN} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_ESTONIAN} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_ESTONIAN} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_ESTONIAN} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_ESTONIAN} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_ESTONIAN} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_ESTONIAN} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_ESTONIAN} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_ESTONIAN} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_ESTONIAN} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_ESTONIAN} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_ESTONIAN} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_ESTONIAN} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/farsi.nsi
Normal file
47
src/windows/installer-translations/farsi.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_FARSI} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_FARSI} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_FARSI} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_FARSI} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_FARSI} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_FARSI} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_FARSI} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_FARSI} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_FARSI} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_FARSI} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_FARSI} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_FARSI} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_FARSI} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_FARSI} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_FARSI} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_FARSI} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_FARSI} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_FARSI} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_FARSI} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_FARSI} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/finnish.nsi
Normal file
47
src/windows/installer-translations/finnish.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_FINNISH} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_FINNISH} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_FINNISH} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_FINNISH} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_FINNISH} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_FINNISH} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_FINNISH} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_FINNISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_FINNISH} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_FINNISH} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_FINNISH} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_FINNISH} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_FINNISH} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_FINNISH} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_FINNISH} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_FINNISH} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_FINNISH} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_FINNISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_FINNISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_FINNISH} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/french.nsi
Normal file
47
src/windows/installer-translations/french.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_FRENCH} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_FRENCH} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_FRENCH} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_FRENCH} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_FRENCH} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_FRENCH} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_FRENCH} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_FRENCH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_FRENCH} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_FRENCH} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_FRENCH} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_FRENCH} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_FRENCH} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_FRENCH} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_FRENCH} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_FRENCH} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_FRENCH} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_FRENCH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_FRENCH} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_FRENCH} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/galician.nsi
Normal file
47
src/windows/installer-translations/galician.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_GALICIAN} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_GALICIAN} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_GALICIAN} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_GALICIAN} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_GALICIAN} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_GALICIAN} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_GALICIAN} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_GALICIAN} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_GALICIAN} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_GALICIAN} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_GALICIAN} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_GALICIAN} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_GALICIAN} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_GALICIAN} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_GALICIAN} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_GALICIAN} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_GALICIAN} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_GALICIAN} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_GALICIAN} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_GALICIAN} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/german.nsi
Normal file
47
src/windows/installer-translations/german.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_GERMAN} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_GERMAN} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_GERMAN} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_GERMAN} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_GERMAN} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_GERMAN} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_GERMAN} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_GERMAN} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_GERMAN} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_GERMAN} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_GERMAN} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_GERMAN} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_GERMAN} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_GERMAN} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_GERMAN} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_GERMAN} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_GERMAN} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_GERMAN} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_GERMAN} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_GERMAN} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/greek.nsi
Normal file
47
src/windows/installer-translations/greek.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_GREEK} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_GREEK} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_GREEK} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_GREEK} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_GREEK} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_GREEK} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_GREEK} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_GREEK} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_GREEK} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_GREEK} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_GREEK} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_GREEK} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_GREEK} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_GREEK} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_GREEK} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_GREEK} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_GREEK} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_GREEK} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_GREEK} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_GREEK} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/hebrew.nsi
Normal file
47
src/windows/installer-translations/hebrew.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_HEBREW} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_HEBREW} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_HEBREW} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_HEBREW} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_HEBREW} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_HEBREW} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_HEBREW} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_HEBREW} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_HEBREW} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_HEBREW} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_HEBREW} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_HEBREW} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_HEBREW} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_HEBREW} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_HEBREW} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_HEBREW} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_HEBREW} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_HEBREW} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_HEBREW} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_HEBREW} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/hungarian.nsi
Normal file
47
src/windows/installer-translations/hungarian.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_HUNGARIAN} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_HUNGARIAN} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_HUNGARIAN} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_HUNGARIAN} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_HUNGARIAN} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_HUNGARIAN} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_HUNGARIAN} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_HUNGARIAN} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_HUNGARIAN} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_HUNGARIAN} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_HUNGARIAN} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_HUNGARIAN} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_HUNGARIAN} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_HUNGARIAN} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_HUNGARIAN} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_HUNGARIAN} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_HUNGARIAN} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_HUNGARIAN} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_HUNGARIAN} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_HUNGARIAN} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/icelandic.nsi
Normal file
47
src/windows/installer-translations/icelandic.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_ICELANDIC} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_ICELANDIC} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_ICELANDIC} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_ICELANDIC} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_ICELANDIC} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_ICELANDIC} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_ICELANDIC} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_ICELANDIC} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_ICELANDIC} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_ICELANDIC} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_ICELANDIC} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_ICELANDIC} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_ICELANDIC} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_ICELANDIC} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_ICELANDIC} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_ICELANDIC} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_ICELANDIC} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_ICELANDIC} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_ICELANDIC} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_ICELANDIC} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/indonesian.nsi
Normal file
47
src/windows/installer-translations/indonesian.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_INDONESIAN} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_INDONESIAN} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_INDONESIAN} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_INDONESIAN} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_INDONESIAN} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_INDONESIAN} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_INDONESIAN} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_INDONESIAN} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_INDONESIAN} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_INDONESIAN} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_INDONESIAN} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_INDONESIAN} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_INDONESIAN} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_INDONESIAN} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_INDONESIAN} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_INDONESIAN} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_INDONESIAN} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_INDONESIAN} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_INDONESIAN} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_INDONESIAN} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/irish.nsi
Normal file
47
src/windows/installer-translations/irish.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_IRISH} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_IRISH} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_IRISH} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_IRISH} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_IRISH} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_IRISH} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_IRISH} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_IRISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_IRISH} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_IRISH} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_IRISH} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_IRISH} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_IRISH} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_IRISH} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_IRISH} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_IRISH} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_IRISH} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_IRISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_IRISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_IRISH} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/italian.nsi
Normal file
47
src/windows/installer-translations/italian.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_ITALIAN} "qBittorrent (necessario)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_ITALIAN} "Crea icone sul desktop"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_ITALIAN} "Crea gruppo programmi"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_ITALIAN} "Apri file .torrent con qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_ITALIAN} "Apri collegamenti magnet con qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_ITALIAN} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_ITALIAN} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_ITALIAN} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_ITALIAN} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_ITALIAN} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_ITALIAN} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_ITALIAN} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_ITALIAN} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_ITALIAN} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_ITALIAN} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_ITALIAN} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_ITALIAN} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_ITALIAN} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_ITALIAN} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_ITALIAN} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/japanese.nsi
Normal file
47
src/windows/installer-translations/japanese.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_JAPANESE} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_JAPANESE} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_JAPANESE} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_JAPANESE} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_JAPANESE} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_JAPANESE} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_JAPANESE} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_JAPANESE} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_JAPANESE} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_JAPANESE} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_JAPANESE} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_JAPANESE} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_JAPANESE} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_JAPANESE} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_JAPANESE} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_JAPANESE} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_JAPANESE} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_JAPANESE} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_JAPANESE} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_JAPANESE} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/korean.nsi
Normal file
47
src/windows/installer-translations/korean.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_KOREAN} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_KOREAN} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_KOREAN} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_KOREAN} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_KOREAN} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_KOREAN} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_KOREAN} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_KOREAN} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_KOREAN} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_KOREAN} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_KOREAN} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_KOREAN} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_KOREAN} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_KOREAN} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_KOREAN} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_KOREAN} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_KOREAN} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_KOREAN} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_KOREAN} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_KOREAN} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/kurdish.nsi
Normal file
47
src/windows/installer-translations/kurdish.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_KURDISH} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_KURDISH} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_KURDISH} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_KURDISH} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_KURDISH} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_KURDISH} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_KURDISH} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_KURDISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_KURDISH} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_KURDISH} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_KURDISH} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_KURDISH} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_KURDISH} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_KURDISH} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_KURDISH} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_KURDISH} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_KURDISH} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_KURDISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_KURDISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_KURDISH} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/latvian.nsi
Normal file
47
src/windows/installer-translations/latvian.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_LATVIAN} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_LATVIAN} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_LATVIAN} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_LATVIAN} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_LATVIAN} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_LATVIAN} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_LATVIAN} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_LATVIAN} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_LATVIAN} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_LATVIAN} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_LATVIAN} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_LATVIAN} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_LATVIAN} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_LATVIAN} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_LATVIAN} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_LATVIAN} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_LATVIAN} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_LATVIAN} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_LATVIAN} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_LATVIAN} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/lithuanian.nsi
Normal file
47
src/windows/installer-translations/lithuanian.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_LITHUANIAN} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_LITHUANIAN} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_LITHUANIAN} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_LITHUANIAN} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_LITHUANIAN} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_LITHUANIAN} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_LITHUANIAN} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_LITHUANIAN} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_LITHUANIAN} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_LITHUANIAN} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_LITHUANIAN} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_LITHUANIAN} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_LITHUANIAN} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_LITHUANIAN} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_LITHUANIAN} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_LITHUANIAN} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_LITHUANIAN} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_LITHUANIAN} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_LITHUANIAN} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_LITHUANIAN} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/luxembourgish.nsi
Normal file
47
src/windows/installer-translations/luxembourgish.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_LUXEMBOURGISH} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_LUXEMBOURGISH} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_LUXEMBOURGISH} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_LUXEMBOURGISH} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_LUXEMBOURGISH} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_LUXEMBOURGISH} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_LUXEMBOURGISH} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_LUXEMBOURGISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_LUXEMBOURGISH} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_LUXEMBOURGISH} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_LUXEMBOURGISH} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_LUXEMBOURGISH} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_LUXEMBOURGISH} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_LUXEMBOURGISH} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_LUXEMBOURGISH} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_LUXEMBOURGISH} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_LUXEMBOURGISH} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_LUXEMBOURGISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_LUXEMBOURGISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_LUXEMBOURGISH} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/macedonian.nsi
Normal file
47
src/windows/installer-translations/macedonian.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_MACEDONIAN} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_MACEDONIAN} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_MACEDONIAN} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_MACEDONIAN} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_MACEDONIAN} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_MACEDONIAN} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_MACEDONIAN} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_MACEDONIAN} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_MACEDONIAN} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_MACEDONIAN} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_MACEDONIAN} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_MACEDONIAN} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_MACEDONIAN} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_MACEDONIAN} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_MACEDONIAN} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_MACEDONIAN} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_MACEDONIAN} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_MACEDONIAN} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_MACEDONIAN} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_MACEDONIAN} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/malay.nsi
Normal file
47
src/windows/installer-translations/malay.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_MALAY} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_MALAY} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_MALAY} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_MALAY} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_MALAY} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_MALAY} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_MALAY} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_MALAY} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_MALAY} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_MALAY} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_MALAY} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_MALAY} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_MALAY} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_MALAY} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_MALAY} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_MALAY} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_MALAY} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_MALAY} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_MALAY} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_MALAY} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/mongolian.nsi
Normal file
47
src/windows/installer-translations/mongolian.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_MONGOLIAN} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_MONGOLIAN} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_MONGOLIAN} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_MONGOLIAN} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_MONGOLIAN} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_MONGOLIAN} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_MONGOLIAN} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_MONGOLIAN} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_MONGOLIAN} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_MONGOLIAN} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_MONGOLIAN} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_MONGOLIAN} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_MONGOLIAN} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_MONGOLIAN} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_MONGOLIAN} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_MONGOLIAN} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_MONGOLIAN} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_MONGOLIAN} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_MONGOLIAN} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_MONGOLIAN} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/norwegian.nsi
Normal file
47
src/windows/installer-translations/norwegian.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_NORWEGIAN} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_NORWEGIAN} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_NORWEGIAN} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_NORWEGIAN} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_NORWEGIAN} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_NORWEGIAN} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_NORWEGIAN} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_NORWEGIAN} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_NORWEGIAN} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_NORWEGIAN} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_NORWEGIAN} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_NORWEGIAN} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_NORWEGIAN} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_NORWEGIAN} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_NORWEGIAN} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_NORWEGIAN} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_NORWEGIAN} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_NORWEGIAN} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_NORWEGIAN} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_NORWEGIAN} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/norwegiannynorsk.nsi
Normal file
47
src/windows/installer-translations/norwegiannynorsk.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_NORWEGIANNYNORSK} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_NORWEGIANNYNORSK} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_NORWEGIANNYNORSK} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_NORWEGIANNYNORSK} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_NORWEGIANNYNORSK} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_NORWEGIANNYNORSK} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_NORWEGIANNYNORSK} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_NORWEGIANNYNORSK} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_NORWEGIANNYNORSK} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_NORWEGIANNYNORSK} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_NORWEGIANNYNORSK} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_NORWEGIANNYNORSK} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_NORWEGIANNYNORSK} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_NORWEGIANNYNORSK} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_NORWEGIANNYNORSK} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_NORWEGIANNYNORSK} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_NORWEGIANNYNORSK} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_NORWEGIANNYNORSK} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_NORWEGIANNYNORSK} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_NORWEGIANNYNORSK} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/polish.nsi
Normal file
47
src/windows/installer-translations/polish.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_POLISH} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_POLISH} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_POLISH} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_POLISH} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_POLISH} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_POLISH} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_POLISH} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_POLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_POLISH} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_POLISH} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_POLISH} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_POLISH} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_POLISH} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_POLISH} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_POLISH} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_POLISH} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_POLISH} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_POLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_POLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_POLISH} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/portuguese.nsi
Normal file
47
src/windows/installer-translations/portuguese.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_PORTUGUESE} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_PORTUGUESE} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_PORTUGUESE} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_PORTUGUESE} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_PORTUGUESE} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_PORTUGUESE} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_PORTUGUESE} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_PORTUGUESE} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_PORTUGUESE} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_PORTUGUESE} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_PORTUGUESE} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_PORTUGUESE} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_PORTUGUESE} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_PORTUGUESE} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_PORTUGUESE} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_PORTUGUESE} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_PORTUGUESE} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_PORTUGUESE} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_PORTUGUESE} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_PORTUGUESE} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/portugueseBR.nsi
Normal file
47
src/windows/installer-translations/portugueseBR.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_PORTUGUESEBR} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_PORTUGUESEBR} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_PORTUGUESEBR} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_PORTUGUESEBR} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_PORTUGUESEBR} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_PORTUGUESEBR} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_PORTUGUESEBR} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_PORTUGUESEBR} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_PORTUGUESEBR} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_PORTUGUESEBR} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_PORTUGUESEBR} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_PORTUGUESEBR} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_PORTUGUESEBR} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_PORTUGUESEBR} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_PORTUGUESEBR} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_PORTUGUESEBR} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_PORTUGUESEBR} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_PORTUGUESEBR} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_PORTUGUESEBR} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_PORTUGUESEBR} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/romanian.nsi
Normal file
47
src/windows/installer-translations/romanian.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_ROMANIAN} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_ROMANIAN} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_ROMANIAN} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_ROMANIAN} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_ROMANIAN} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_ROMANIAN} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_ROMANIAN} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_ROMANIAN} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_ROMANIAN} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_ROMANIAN} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_ROMANIAN} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_ROMANIAN} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_ROMANIAN} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_ROMANIAN} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_ROMANIAN} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_ROMANIAN} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_ROMANIAN} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_ROMANIAN} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_ROMANIAN} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_ROMANIAN} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/russian.nsi
Normal file
47
src/windows/installer-translations/russian.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_RUSSIAN} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_RUSSIAN} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_RUSSIAN} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_RUSSIAN} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_RUSSIAN} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_RUSSIAN} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_RUSSIAN} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_RUSSIAN} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_RUSSIAN} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_RUSSIAN} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_RUSSIAN} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_RUSSIAN} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_RUSSIAN} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_RUSSIAN} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_RUSSIAN} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_RUSSIAN} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_RUSSIAN} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_RUSSIAN} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_RUSSIAN} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_RUSSIAN} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/serbian.nsi
Normal file
47
src/windows/installer-translations/serbian.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_SERBIAN} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_SERBIAN} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_SERBIAN} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_SERBIAN} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_SERBIAN} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_SERBIAN} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_SERBIAN} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_SERBIAN} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_SERBIAN} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_SERBIAN} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_SERBIAN} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_SERBIAN} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_SERBIAN} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_SERBIAN} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_SERBIAN} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_SERBIAN} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_SERBIAN} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_SERBIAN} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_SERBIAN} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_SERBIAN} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/serbianlatin.nsi
Normal file
47
src/windows/installer-translations/serbianlatin.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_SERBIANLATIN} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_SERBIANLATIN} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_SERBIANLATIN} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_SERBIANLATIN} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_SERBIANLATIN} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_SERBIANLATIN} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_SERBIANLATIN} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_SERBIANLATIN} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_SERBIANLATIN} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_SERBIANLATIN} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_SERBIANLATIN} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_SERBIANLATIN} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_SERBIANLATIN} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_SERBIANLATIN} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_SERBIANLATIN} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_SERBIANLATIN} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_SERBIANLATIN} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_SERBIANLATIN} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_SERBIANLATIN} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_SERBIANLATIN} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/simpchinese.nsi
Normal file
47
src/windows/installer-translations/simpchinese.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_SIMPCHINESE} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_SIMPCHINESE} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_SIMPCHINESE} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_SIMPCHINESE} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_SIMPCHINESE} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_SIMPCHINESE} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_SIMPCHINESE} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_SIMPCHINESE} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_SIMPCHINESE} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_SIMPCHINESE} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_SIMPCHINESE} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_SIMPCHINESE} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_SIMPCHINESE} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_SIMPCHINESE} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_SIMPCHINESE} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_SIMPCHINESE} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_SIMPCHINESE} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_SIMPCHINESE} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_SIMPCHINESE} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_SIMPCHINESE} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/slovak.nsi
Normal file
47
src/windows/installer-translations/slovak.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_SLOVAK} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_SLOVAK} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_SLOVAK} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_SLOVAK} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_SLOVAK} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_SLOVAK} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_SLOVAK} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_SLOVAK} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_SLOVAK} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_SLOVAK} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_SLOVAK} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_SLOVAK} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_SLOVAK} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_SLOVAK} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_SLOVAK} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_SLOVAK} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_SLOVAK} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_SLOVAK} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_SLOVAK} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_SLOVAK} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/slovenian.nsi
Normal file
47
src/windows/installer-translations/slovenian.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_SLOVENIAN} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_SLOVENIAN} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_SLOVENIAN} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_SLOVENIAN} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_SLOVENIAN} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_SLOVENIAN} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_SLOVENIAN} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_SLOVENIAN} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_SLOVENIAN} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_SLOVENIAN} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_SLOVENIAN} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_SLOVENIAN} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_SLOVENIAN} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_SLOVENIAN} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_SLOVENIAN} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_SLOVENIAN} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_SLOVENIAN} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_SLOVENIAN} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_SLOVENIAN} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_SLOVENIAN} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/spanish.nsi
Normal file
47
src/windows/installer-translations/spanish.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_SPANISH} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_SPANISH} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_SPANISH} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_SPANISH} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_SPANISH} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_SPANISH} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_SPANISH} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_SPANISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_SPANISH} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_SPANISH} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_SPANISH} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_SPANISH} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_SPANISH} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_SPANISH} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_SPANISH} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_SPANISH} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_SPANISH} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_SPANISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_SPANISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_SPANISH} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/spanishinternational.nsi
Normal file
47
src/windows/installer-translations/spanishinternational.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_SPANISHINTERNATIONAL} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_SPANISHINTERNATIONAL} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_SPANISHINTERNATIONAL} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_SPANISHINTERNATIONAL} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_SPANISHINTERNATIONAL} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_SPANISHINTERNATIONAL} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_SPANISHINTERNATIONAL} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_SPANISHINTERNATIONAL} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_SPANISHINTERNATIONAL} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_SPANISHINTERNATIONAL} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_SPANISHINTERNATIONAL} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_SPANISHINTERNATIONAL} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_SPANISHINTERNATIONAL} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_SPANISHINTERNATIONAL} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_SPANISHINTERNATIONAL} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_SPANISHINTERNATIONAL} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_SPANISHINTERNATIONAL} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_SPANISHINTERNATIONAL} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_SPANISHINTERNATIONAL} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_SPANISHINTERNATIONAL} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/swedish.nsi
Normal file
47
src/windows/installer-translations/swedish.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_SWEDISH} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_SWEDISH} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_SWEDISH} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_SWEDISH} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_SWEDISH} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_SWEDISH} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_SWEDISH} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_SWEDISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_SWEDISH} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_SWEDISH} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_SWEDISH} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_SWEDISH} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_SWEDISH} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_SWEDISH} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_SWEDISH} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_SWEDISH} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_SWEDISH} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_SWEDISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_SWEDISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_SWEDISH} "Not removing magnet association. It is associated with:"
|
||||||
47
src/windows/installer-translations/thai.nsi
Normal file
47
src/windows/installer-translations/thai.nsi
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
;Installer strings
|
||||||
|
|
||||||
|
;LangString inst_qbt_req ${LANG_ENGLISH} "qBittorrent (required)"
|
||||||
|
LangString inst_qbt_req ${LANG_THAI} "qBittorrent (required)"
|
||||||
|
;LangString inst_dekstop ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||||
|
LangString inst_dekstop ${LANG_THAI} "Create Desktop Shortcut"
|
||||||
|
;LangString inst_startmenu ${LANG_ENGLISH} "Create Start Menu Shortcut"
|
||||||
|
LangString inst_startmenu ${LANG_THAI} "Create Start Menu Shortcut"
|
||||||
|
;LangString inst_torrent ${LANG_ENGLISH} "Open .torrent files with qBittorrent"
|
||||||
|
LangString inst_torrent ${LANG_THAI} "Open .torrent files with qBittorrent"
|
||||||
|
;LangString inst_magnet ${LANG_ENGLISH} "Open magnet links with qBittorrent"
|
||||||
|
LangString inst_magnet ${LANG_THAI} "Open magnet links with qBittorrent"
|
||||||
|
;LangString inst_firewall ${LANG_ENGLISH} "Add Windows Firewall rule"
|
||||||
|
LangString inst_firewall ${LANG_THAI} "Add Windows Firewall rule"
|
||||||
|
;LangString inst_firewallinfo ${LANG_ENGLISH} "Adding Windows Firewall rule"
|
||||||
|
LangString inst_firewallinfo ${LANG_THAI} "Adding Windows Firewall rule"
|
||||||
|
;LangString inst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before installing."
|
||||||
|
LangString inst_warning ${LANG_THAI} "qBittorrent is running. Please close the application before installing."
|
||||||
|
;LangString inst_unist ${LANG_ENGLISH} "Uninstalling previous version."
|
||||||
|
LangString inst_unist ${LANG_THAI} "Uninstalling previous version."
|
||||||
|
|
||||||
|
|
||||||
|
;------------------------------------
|
||||||
|
;Uninstaller strings
|
||||||
|
|
||||||
|
;LangString remove_files ${LANG_ENGLISH} "Remove files"
|
||||||
|
LangString remove_files ${LANG_THAI} "Remove files"
|
||||||
|
;LangString remove_shortcuts ${LANG_ENGLISH} "Remove shortcuts"
|
||||||
|
LangString remove_shortcuts ${LANG_THAI} "Remove shortcuts"
|
||||||
|
;LangString remove_associations ${LANG_ENGLISH} "Remove file associations"
|
||||||
|
LangString remove_associations ${LANG_THAI} "Remove file associations"
|
||||||
|
;LangString remove_registry ${LANG_ENGLISH} "Remove registry keys"
|
||||||
|
LangString remove_registry ${LANG_THAI} "Remove registry keys"
|
||||||
|
;LangString remove_conf ${LANG_ENGLISH} "Remove configuration files"
|
||||||
|
LangString remove_conf ${LANG_THAI} "Remove configuration files"
|
||||||
|
;LangString remove_firewall ${LANG_ENGLISH} "Remove Windows Firewall rule"
|
||||||
|
LangString remove_firewall ${LANG_THAI} "Remove Windows Firewall rule"
|
||||||
|
;LangString remove_firewallinfo ${LANG_ENGLISH} "Removing Windows Firewall rule"
|
||||||
|
LangString remove_firewallinfo ${LANG_THAI} "Removing Windows Firewall rule"
|
||||||
|
;LangString remove_cache ${LANG_ENGLISH} "Remove torrents and cached data"
|
||||||
|
LangString remove_cache ${LANG_THAI} "Remove torrents and cached data"
|
||||||
|
;LangString uninst_warning ${LANG_ENGLISH} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
LangString uninst_warning ${LANG_THAI} "qBittorrent is running. Please close the application before uninstalling."
|
||||||
|
;LangString uninst_tor_warn ${LANG_ENGLISH} "Not removing .torrent association. It is associated with:"
|
||||||
|
LangString uninst_tor_warn ${LANG_THAI} "Not removing .torrent association. It is associated with:"
|
||||||
|
;LangString uninst_mag_warn ${LANG_ENGLISH} "Not removing magnet association. It is associated with:"
|
||||||
|
LangString uninst_mag_warn ${LANG_THAI} "Not removing magnet association. It is associated with:"
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user