mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-14 10:37:06 -07:00
commit
b172196512
147 changed files with 9455 additions and 8308 deletions
|
@ -5,6 +5,7 @@
|
|||
- FEATURE: Add option to start qBittorrent on Windows startup (Sledgehammer999)
|
||||
- BUGFIX: Add confirmation dialog for "Force recheck" action (closes #131)
|
||||
- BUGFIX: Greatly improve RSS manager performance (closes #34)
|
||||
- OTHER: Generate translations at configure time to reduce tarball size
|
||||
|
||||
* Thu Aug 09 2012 - Christophe Dumez <chris@qbittorrent.org> - v3.0.0
|
||||
- FEATURE: Brand new torrent addition dialog
|
||||
|
|
|
@ -3,6 +3,7 @@ TEMPLATE = subdirs
|
|||
SUBDIRS += src
|
||||
|
||||
include(version.pri)
|
||||
include(qm_gen.pri)
|
||||
|
||||
# Dist
|
||||
dist.commands += rm -fR ../$${PROJECT_NAME}-$${PROJECT_VERSION}/ &&
|
||||
|
|
19
qm_gen.pri
Normal file
19
qm_gen.pri
Normal file
|
@ -0,0 +1,19 @@
|
|||
TS_IN = $$fromfile(src/src.pro,TRANSLATIONS)
|
||||
TS_IN_NOEXT = $$replace(TS_IN,".ts","")
|
||||
|
||||
isEmpty(QMAKE_LRELEASE) {
|
||||
win32|os2:QMAKE_LRELEASE = $$[QT_INSTALL_BINS]\\lrelease.exe
|
||||
else:QMAKE_LRELEASE = $$[QT_INSTALL_BINS]/lrelease
|
||||
unix {
|
||||
!exists($$QMAKE_LRELEASE) { QMAKE_LRELEASE = lrelease-qt4 }
|
||||
} else {
|
||||
!exists($$QMAKE_LRELEASE) { QMAKE_LRELEASE = lrelease }
|
||||
}
|
||||
}
|
||||
|
||||
message("Building translations")
|
||||
for(L,TS_IN_NOEXT) {
|
||||
message("Processing $${L}")
|
||||
system("$$QMAKE_LRELEASE -silent src/$${L}.ts -qm src/$${L}.qm")
|
||||
!exists("src/$${L}.qm"):error("Building translations failed, cannot continue")
|
||||
}
|
|
@ -106,7 +106,7 @@
|
|||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
</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;">An advanced BitTorrent client programmed in C++, based on Qt4 toolkit and libtorrent-rasterbar. <br /><br />Copyright ©2006-2013 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;">IRC: #qbittorrent on Freenode</p></body></html></string>
|
||||
</property>
|
||||
|
|
|
@ -65,7 +65,7 @@ AddNewTorrentDialog::AddNewTorrentDialog(QWidget *parent) :
|
|||
QIniSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent"));
|
||||
Preferences pref;
|
||||
ui->start_torrent_cb->setChecked(!pref.addTorrentsInPause());
|
||||
ui->save_path_combo->addItem(fsutils::toDisplayPath(pref.getSavePath()));
|
||||
ui->save_path_combo->addItem(fsutils::toDisplayPath(pref.getSavePath()), pref.getSavePath());
|
||||
loadSavePathHistory();
|
||||
ui->save_path_combo->insertSeparator(ui->save_path_combo->count());
|
||||
ui->save_path_combo->addItem(tr("Other...", "Other save path..."));
|
||||
|
@ -225,7 +225,7 @@ bool AddNewTorrentDialog::loadTorrent(const QString& torrent_path, const QString
|
|||
QString single_file_relpath = misc::toQStringU(m_torrentInfo->file_at(0).path.string());
|
||||
#endif
|
||||
for (int i=0; i<ui->save_path_combo->count()-1; ++i) {
|
||||
ui->save_path_combo->setItemText(i, QDir(ui->save_path_combo->itemText(i)).absoluteFilePath(single_file_relpath));
|
||||
ui->save_path_combo->setItemText(i, fsutils::toDisplayPath(QDir(ui->save_path_combo->itemText(i)).absoluteFilePath(single_file_relpath)));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -594,6 +594,8 @@ void AddNewTorrentDialog::on_buttonBox_accepted()
|
|||
saveSavePathHistory();
|
||||
// Save settings
|
||||
pref.useAdditionDialog(!ui->never_show_cb->isChecked());
|
||||
if (ui->default_save_path_cb->isChecked())
|
||||
if (ui->default_save_path_cb->isChecked()) {
|
||||
pref.setSavePath(ui->save_path_combo->itemData(ui->save_path_combo->currentIndex()).toString());
|
||||
QBtSession::instance()->setDefaultSavePath(pref.getSavePath());
|
||||
}
|
||||
}
|
||||
|
|
|
@ -73,12 +73,7 @@ using namespace libtorrent;
|
|||
*/
|
||||
QString fsutils::toDisplayPath(const QString& path)
|
||||
{
|
||||
#if defined(Q_WS_WIN) || defined(Q_OS_OS2)
|
||||
QString ret = path;
|
||||
return ret.replace("/", "\\");
|
||||
#else
|
||||
return path;
|
||||
#endif
|
||||
return QDir::toNativeSeparators(path);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
|
@ -1 +0,0 @@
|
|||
<クdハ<>箆!ソ`。スン
|
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
|
@ -153,7 +153,7 @@ p, li { white-space: pre-wrap; }
|
|||
<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;">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></source>
|
||||
<translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||
<translation type="obsolete"><!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:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;">
|
||||
|
@ -161,6 +161,22 @@ p, li { white-space: pre-wrap; }
|
|||
<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 na Freenode</p></body></html></translation>
|
||||
</message>
|
||||
<message utf8="true">
|
||||
<source><!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:'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-2013 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;">IRC: #qbittorrent on Freenode</p></body></html></source>
|
||||
<translation type="unfinished"><!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:'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;">qBitTirrent je napredni BitTorrent klijent pisan u C++ -u, baziran na Qt4 programskom alatu i libtorrent-rasterbaru. <br /><br />Copyright ©2006-2012 Christophe Dumez<br /><br />Početna stranica: <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;">IRC: #qbittorrent na Freenode</p></body></html> {3C?} {4.0/?} {3.?} {40/?} {1"?} {13p?} {400;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {4 ?} {2006-2013 ?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0000f?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?}</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>AddNewTorrentDialog</name>
|
||||
|
@ -781,7 +797,7 @@ p, li { white-space: pre-wrap; }
|
|||
<translation type="obsolete">Preuzimanje '%1', pričekajte ...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured, '%1' paused.</source>
|
||||
<source>An I/O error occurred, '%1' paused.</source>
|
||||
<translation type="obsolete">Dogodila se I/O greška. '%1' pauziran.</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1317,8 +1333,8 @@ Ovu informaciju trebate pribaviti iz postavki vašeg web preglednika.</translati
|
|||
<translation type="obsolete">I/O greška</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An error occured (full disk?), '%1' paused.</source>
|
||||
<comment>e.g: An error occured (full disk?), 'xxx.avi' paused.</comment>
|
||||
<source>An error occurred (full disk?), '%1' paused.</source>
|
||||
<comment>e.g: An error occurred (full disk?), 'xxx.avi' paused.</comment>
|
||||
<translation type="obsolete">Dogodila se greška (pun disk?), '%1' zaustavljeno.</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1343,9 +1359,9 @@ Ovu informaciju trebate pribaviti iz postavki vašeg web preglednika.</translati
|
|||
<translation type="obsolete">Nije moguće preuzeti datoteku sa: %1, razlog: %2.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured for torrent %1.
|
||||
<source>An I/O error occurred for torrent %1.
|
||||
Reason: %2</source>
|
||||
<comment>e.g: An error occured for torrent xxx.avi.
|
||||
<comment>e.g: An error occurred for torrent xxx.avi.
|
||||
Reason: disk is full.</comment>
|
||||
<translation type="obsolete">Dogodila se I/O greška za torrent %1
|
||||
Razlog: %2</translation>
|
||||
|
@ -2286,9 +2302,9 @@ Do you want to associate qBittorrent to torrent files and Magnet links?</source>
|
|||
<translation>I/O greška</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured for torrent %1.
|
||||
<source>An I/O error occurred for torrent %1.
|
||||
Reason: %2</source>
|
||||
<comment>e.g: An error occured for torrent xxx.avi.
|
||||
<comment>e.g: An error occurred for torrent xxx.avi.
|
||||
Reason: disk is full.</comment>
|
||||
<translation>Dogodila se I/O greška za torrent %1
|
||||
Razlog: %2</translation>
|
||||
|
@ -4058,7 +4074,7 @@ QGroupBox {
|
|||
<translation>[qBittorrent] %1 je preuzet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured, '%1' paused.</source>
|
||||
<source>An I/O error occurred, '%1' paused.</source>
|
||||
<translation>Dogodila se I/O greška. '%1' pauziran.</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -4534,7 +4550,7 @@ p, li { white-space: pre-wrap; }
|
|||
<translation>Potraga je gotova</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An error occured during search...</source>
|
||||
<source>An error occurred during search...</source>
|
||||
<translation>Dogodila se greška za vrijeme potrage ...</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -4945,6 +4961,11 @@ Do you want to install it now?</source>
|
|||
<comment>Time (duration) the torrent is active (not paused)</comment>
|
||||
<translation>Vrijeme aktivnosti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Amount uploaded</source>
|
||||
<comment>Amount of data uploaded (e.g. in MB)</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>TrackerList</name>
|
||||
|
@ -5014,7 +5035,7 @@ Do you want to install it now?</source>
|
|||
</message>
|
||||
<message>
|
||||
<source>Force reannounce</source>
|
||||
<translation>Prisili ponovno objavljivanje</translation>
|
||||
<translation type="obsolete">Prisili ponovno objavljivanje</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
@ -6133,6 +6154,13 @@ Međutim, te tražilice su bile onemogućene.</translation>
|
|||
<translation>URL:</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>errorDialog</name>
|
||||
<message>
|
||||
<source>Crash info</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>fsutils</name>
|
||||
<message>
|
||||
|
|
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
|
@ -115,7 +115,7 @@ p, li { white-space: pre-wrap; }
|
|||
<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;">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></source>
|
||||
<translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||
<translation type="obsolete"><!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:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;">
|
||||
|
@ -123,6 +123,22 @@ p, li { white-space: pre-wrap; }
|
|||
<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>
|
||||
</message>
|
||||
<message utf8="true">
|
||||
<source><!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:'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-2013 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;">IRC: #qbittorrent on Freenode</p></body></html></source>
|
||||
<translation type="unfinished"><!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:'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;">Een geavanceerde BitTorrent client geprogrammeerd in C++, gebaseerd op Qt4 toolkit en 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;">IRC: #qbittorrent on Freenode</p></body></html> {3C?} {4.0/?} {3.?} {40/?} {1"?} {13p?} {400;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {4 ?} {2006-2013 ?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0000f?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?}</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>AddNewTorrentDialog</name>
|
||||
|
@ -1176,9 +1192,9 @@ U zou informatie moeten krijgen van u Webbrowser voorkeuren.</translation>
|
|||
<translation type="obsolete">Alt+1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured for torrent %1.
|
||||
<source>An I/O error occurred for torrent %1.
|
||||
Reason: %2</source>
|
||||
<comment>e.g: An error occured for torrent xxx.avi.
|
||||
<comment>e.g: An error occurred for torrent xxx.avi.
|
||||
Reason: disk is full.</comment>
|
||||
<translation type="obsolete">Een I/O fout trad op voor torrent %1. Reden: %2</translation>
|
||||
</message>
|
||||
|
@ -1906,9 +1922,9 @@ Wilt u qBittorrent associëren met torrentbestanden en Magnetlinks?</translation
|
|||
<translation>I/O Fout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured for torrent %1.
|
||||
<source>An I/O error occurred for torrent %1.
|
||||
Reason: %2</source>
|
||||
<comment>e.g: An error occured for torrent xxx.avi.
|
||||
<comment>e.g: An error occurred for torrent xxx.avi.
|
||||
Reason: disk is full.</comment>
|
||||
<translation>Een I/O fout trad op voor torrent %1. Reden: %2</translation>
|
||||
</message>
|
||||
|
@ -3405,7 +3421,7 @@ Wil u qBittorrent updaten naar versie %1?</translation>
|
|||
<translation>[qBittorrent] %1 is klaar met downloaden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured, '%1' paused.</source>
|
||||
<source>An I/O error occurred, '%1' paused.</source>
|
||||
<translation>I/O fout gebeurd, '%1' gepauzeerd.</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -3854,7 +3870,7 @@ p, li { white-space: pre-wrap; }
|
|||
<translation>Zoeken is klaar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An error occured during search...</source>
|
||||
<source>An error occurred during search...</source>
|
||||
<translation>Een fout trad op tijdens zoeken...</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -4286,6 +4302,11 @@ Wilt u het nu installeren?</translation>
|
|||
<comment>Time (duration) the torrent is active (not paused)</comment>
|
||||
<translation>Tijd actief</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Amount uploaded</source>
|
||||
<comment>Amount of data uploaded (e.g. in MB)</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>TrackerList</name>
|
||||
|
@ -4351,7 +4372,7 @@ Wilt u het nu installeren?</translation>
|
|||
</message>
|
||||
<message>
|
||||
<source>Force reannounce</source>
|
||||
<translation>Forceer heraankondiging</translation>
|
||||
<translation type="obsolete">Forceer heraankondiging</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
@ -5374,6 +5395,13 @@ De plugins zijn uitgeschakeld.</translation>
|
|||
<translation>URL:</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>errorDialog</name>
|
||||
<message>
|
||||
<source>Crash info</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>fsutils</name>
|
||||
<message>
|
||||
|
|
Binary file not shown.
|
@ -115,7 +115,7 @@ p, li { white-space: pre-wrap; }
|
|||
<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;">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></source>
|
||||
<translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||
<translation type="obsolete"><!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:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;">
|
||||
|
@ -123,6 +123,22 @@ p, li { white-space: pre-wrap; }
|
|||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Śledzenie błędów: <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>
|
||||
</message>
|
||||
<message utf8="true">
|
||||
<source><!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:'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-2013 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;">IRC: #qbittorrent on Freenode</p></body></html></source>
|
||||
<translation type="unfinished"><!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:'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;">Klient sieci bittorrent napisany w języku C++, wykorzystuje biblioteki Qt4 i libtorrent-rasterbar. <br /><br />Copyright ©2006-2012 Christophe Dumez<br /><br />Strona domowa: <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;">Śledzenie błędów: <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> {3C?} {4.0/?} {3.?} {40/?} {1"?} {13p?} {400;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {4 ?} {2006-2013 ?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0000f?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?}</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>AddNewTorrentDialog</name>
|
||||
|
@ -745,7 +761,7 @@ p, li { white-space: pre-wrap; }
|
|||
<translation type="obsolete">Uwaga: nowe URL seedów zostały dodane do istniejącego torrenta.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured, '%1' paused.</source>
|
||||
<source>An I/O error occurred, '%1' paused.</source>
|
||||
<translation type="obsolete">Wystąpił błąd We/Wy, '%1' wstrzymany.</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1247,9 +1263,9 @@ Informacje te powinny zostać pobrane z ustawień przeglądarki internetowej.</t
|
|||
<translation type="obsolete">RSS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured for torrent %1.
|
||||
<source>An I/O error occurred for torrent %1.
|
||||
Reason: %2</source>
|
||||
<comment>e.g: An error occured for torrent xxx.avi.
|
||||
<comment>e.g: An error occurred for torrent xxx.avi.
|
||||
Reason: disk is full.</comment>
|
||||
<translation type="obsolete">Wystąpił błąd We/Wy dla pliku torrent %1.
|
||||
Powód: %2</translation>
|
||||
|
@ -2083,9 +2099,9 @@ Czy powiązać qBittorrent z plikami torrent i linkami Magnet?</translation>
|
|||
<translation>Błąd We/Wy</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured for torrent %1.
|
||||
<source>An I/O error occurred for torrent %1.
|
||||
Reason: %2</source>
|
||||
<comment>e.g: An error occured for torrent xxx.avi.
|
||||
<comment>e.g: An error occurred for torrent xxx.avi.
|
||||
Reason: disk is full.</comment>
|
||||
<translation>Wystąpił błąd We/Wy dla pliku torrent %1.
|
||||
Powód: %2</translation>
|
||||
|
@ -3596,7 +3612,7 @@ Ignoruj narzuty protokołu TCP/IP w limitach prędkości</translatorcomment>
|
|||
<translation>[qBittorrent] %1 został pobrany</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured, '%1' paused.</source>
|
||||
<source>An I/O error occurred, '%1' paused.</source>
|
||||
<translation>Wystąpił błąd We/Wy, '%1' wstrzymany.</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -4061,7 +4077,7 @@ p, li { white-space: pre-wrap; }
|
|||
<translation>Wyszukiwanie zakończone</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An error occured during search...</source>
|
||||
<source>An error occurred during search...</source>
|
||||
<translation>Wystąpił błąd podczas wyszukiwania...</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -4495,6 +4511,11 @@ Do you want to install it now?</source>
|
|||
<comment>Time (duration) the torrent is active (not paused)</comment>
|
||||
<translation>Aktywny przez</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Amount uploaded</source>
|
||||
<comment>Amount of data uploaded (e.g. in MB)</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>TrackerList</name>
|
||||
|
@ -4560,7 +4581,7 @@ Do you want to install it now?</source>
|
|||
</message>
|
||||
<message>
|
||||
<source>Force reannounce</source>
|
||||
<translation>Sprawdź tracker</translation>
|
||||
<translation type="obsolete">Sprawdź tracker</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
@ -5604,6 +5625,13 @@ Jednak tamte wtyczki były wyłączone.</translation>
|
|||
<translation>URL:</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>errorDialog</name>
|
||||
<message>
|
||||
<source>Crash info</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>fsutils</name>
|
||||
<message>
|
||||
|
|
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
|
@ -99,7 +99,7 @@ p, li { white-space: pre-wrap; }
|
|||
<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;">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></source>
|
||||
<translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||
<translation type="obsolete"><!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:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;">
|
||||
|
@ -107,6 +107,22 @@ p, li { white-space: pre-wrap; }
|
|||
<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>
|
||||
</message>
|
||||
<message utf8="true">
|
||||
<source><!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:'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-2013 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;">IRC: #qbittorrent on Freenode</p></body></html></source>
|
||||
<translation type="unfinished"><!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:'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;">Um avançado cliente BitTorrent feito em C++, baseado em 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;">IRC: #qbittorrent on Freenode</p></body></html> {3C?} {4.0/?} {3.?} {40/?} {1"?} {13p?} {400;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {4 ?} {2006-2013 ?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0000f?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?}</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>AddNewTorrentDialog</name>
|
||||
|
@ -727,7 +743,7 @@ p, li { white-space: pre-wrap; }
|
|||
<translation type="obsolete">Nota: nova URL de seed foi adicionada ao torrent existente.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured, '%1' paused.</source>
|
||||
<source>An I/O error occurred, '%1' paused.</source>
|
||||
<translation type="obsolete">Um erro de I/O aconteceu, '%1' foi pausado.</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1254,9 +1270,9 @@ Você deve buscar essa informação nas preferências do seu navegador.</transla
|
|||
<translation type="obsolete">RSS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured for torrent %1.
|
||||
<source>An I/O error occurred for torrent %1.
|
||||
Reason: %2</source>
|
||||
<comment>e.g: An error occured for torrent xxx.avi.
|
||||
<comment>e.g: An error occurred for torrent xxx.avi.
|
||||
Reason: disk is full.</comment>
|
||||
<translation type="obsolete">Erro de I/O no torrent %1.
|
||||
Motivo: %2</translation>
|
||||
|
@ -2101,9 +2117,9 @@ Gostaria de associar o qBittorrent para arquivos torrent e links magnéticos?</t
|
|||
<translation>Erro de I/O</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured for torrent %1.
|
||||
<source>An I/O error occurred for torrent %1.
|
||||
Reason: %2</source>
|
||||
<comment>e.g: An error occured for torrent xxx.avi.
|
||||
<comment>e.g: An error occurred for torrent xxx.avi.
|
||||
Reason: disk is full.</comment>
|
||||
<translation>Ocorreu um erro de I/O no torrent %1.
|
||||
Motivo: %2</translation>
|
||||
|
@ -3612,7 +3628,7 @@ Gostaria de atualizar o qBittorrrent para a versão %1?</translation>
|
|||
<translation>[qBittorrent] %1 terminou o download</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured, '%1' paused.</source>
|
||||
<source>An I/O error occurred, '%1' paused.</source>
|
||||
<translation>Um erro de I/O aconteceu, '%1' foi pausado.</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -4076,7 +4092,7 @@ p, li { white-space: pre-wrap; }
|
|||
<translation>Busca finalizada</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An error occured during search...</source>
|
||||
<source>An error occurred during search...</source>
|
||||
<translation>Um erro ocorreu durante a busca...</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -4508,6 +4524,11 @@ Gostaria de instalar agora?</translation>
|
|||
<comment>Time (duration) the torrent is active (not paused)</comment>
|
||||
<translation>Tempo Ativo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Amount uploaded</source>
|
||||
<comment>Amount of data uploaded (e.g. in MB)</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>TrackerList</name>
|
||||
|
@ -4573,7 +4594,7 @@ Gostaria de instalar agora?</translation>
|
|||
</message>
|
||||
<message>
|
||||
<source>Force reannounce</source>
|
||||
<translation>Força reanuncio</translation>
|
||||
<translation type="obsolete">Força reanuncio</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
@ -5636,6 +5657,13 @@ Portanto os plugins foram desabilitados.</translation>
|
|||
<translation>Não</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>errorDialog</name>
|
||||
<message>
|
||||
<source>Crash info</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>fsutils</name>
|
||||
<message>
|
||||
|
|
Binary file not shown.
|
@ -80,7 +80,7 @@
|
|||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
</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;">An advanced BitTorrent client programmed in C++, based on Qt4 toolkit and libtorrent-rasterbar. <br /><br />Copyright ©2006-2013 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;">IRC: #qbittorrent on Freenode</p></body></html></source>
|
||||
<translation type="unfinished"></translation>
|
||||
|
@ -1147,9 +1147,9 @@ You should get this information from your Web browser preferences.</source>
|
|||
<translation type="obsolete">Alt+1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured for torrent %1.
|
||||
<source>An I/O error occurred for torrent %1.
|
||||
Reason: %2</source>
|
||||
<comment>e.g: An error occured for torrent xxx.avi.
|
||||
<comment>e.g: An error occurred for torrent xxx.avi.
|
||||
Reason: disk is full.</comment>
|
||||
<translation type="obsolete">Eroare de intrare/ieșire pentru torrent-ul %1.
|
||||
Motivul : %2</translation>
|
||||
|
@ -1646,9 +1646,9 @@ Do you want to associate qBittorrent to torrent files and Magnet links?</source>
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured for torrent %1.
|
||||
<source>An I/O error occurred for torrent %1.
|
||||
Reason: %2</source>
|
||||
<comment>e.g: An error occured for torrent xxx.avi.
|
||||
<comment>e.g: An error occurred for torrent xxx.avi.
|
||||
Reason: disk is full.</comment>
|
||||
<translation type="unfinished">Eroare de intrare/ieșire pentru torrent-ul %1.
|
||||
Motivul : %2</translation>
|
||||
|
@ -3081,7 +3081,7 @@ Would you like to update qBittorrent to version %1?</source>
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured, '%1' paused.</source>
|
||||
<source>An I/O error occurred, '%1' paused.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -3513,7 +3513,7 @@ p, li { white-space: pre-wrap; }
|
|||
<translation>Căutarea a fost terminată</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An error occured during search...</source>
|
||||
<source>An error occurred during search...</source>
|
||||
<translation>Eroare în timpul căutării...</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -3927,6 +3927,11 @@ Do you want to install it now?</source>
|
|||
<comment>Time (duration) the torrent is active (not paused)</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Amount uploaded</source>
|
||||
<comment>Amount of data uploaded (e.g. in MB)</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>TrackerList</name>
|
||||
|
@ -3990,10 +3995,6 @@ Do you want to install it now?</source>
|
|||
<source>Remove tracker</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Force reannounce</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>TrackersAdditionDlg</name>
|
||||
|
@ -5019,6 +5020,13 @@ Numai acele adăugate de dvs. pot fi dezinstalate.
|
|||
<translation>Ny</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>errorDialog</name>
|
||||
<message>
|
||||
<source>Crash info</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>fsutils</name>
|
||||
<message>
|
||||
|
|
Binary file not shown.
|
@ -115,7 +115,7 @@ p, li { white-space: pre-wrap; }
|
|||
<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;">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></source>
|
||||
<translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||
<translation type="obsolete"><!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:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;">
|
||||
|
@ -123,12 +123,28 @@ p, li { white-space: pre-wrap; }
|
|||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Баг-трекер: <a href="http://bugs.qbittorrent.org"><span style=" text-decoration: underline; color:#0000ff;">http://bugs.qbittorrent.org</span></a><br />Форум: <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 на Freenode</p></body></html></translation>
|
||||
</message>
|
||||
<message utf8="true">
|
||||
<source><!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:'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-2013 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;">IRC: #qbittorrent on Freenode</p></body></html></source>
|
||||
<translation type="unfinished"><!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:'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;">Продвинутый BitTorrent клиент, написанный на C++. Использует фреймворк Qt4 и библиотеку libtorrent (rasterbar). <br /><br />Copyright ©2006-2012 Christophe Dumez<br /><br />Домашняя страница: <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;">Баг-трекер: <a href="http://bugs.qbittorrent.org"><span style=" text-decoration: underline; color:#0000ff;">http://bugs.qbittorrent.org</span></a><br />Форум: <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 на Freenode</p></body></html> {3C?} {4.0/?} {3.?} {40/?} {1"?} {13p?} {400;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {4 ?} {2006-2013 ?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0000f?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?}</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>AddNewTorrentDialog</name>
|
||||
<message>
|
||||
<source>Dialog</source>
|
||||
<translatorcomment>where is it shown?</translatorcomment>
|
||||
<translatorcomment>looks like its in" addnewtorrentdialog.ui" @ line 26; I don't think it's used anywhere.</translatorcomment>
|
||||
<translation type="unfinished">Dialog</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -396,7 +412,7 @@ p, li { white-space: pre-wrap; }
|
|||
</message>
|
||||
<message>
|
||||
<source> (auto)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation> (авто)</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
@ -743,7 +759,7 @@ p, li { white-space: pre-wrap; }
|
|||
<translation type="obsolete">Примечание: новые URL сидов были добавлены к существующему торренту.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured, '%1' paused.</source>
|
||||
<source>An I/O error occurred, '%1' paused.</source>
|
||||
<translation type="obsolete">Ошибка Ввода/Вывода: '%1' приостановлен.</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1272,9 +1288,9 @@ You should get this information from your Web browser preferences.</source>
|
|||
<translation type="obsolete">RSS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured for torrent %1.
|
||||
<source>An I/O error occurred for torrent %1.
|
||||
Reason: %2</source>
|
||||
<comment>e.g: An error occured for torrent xxx.avi.
|
||||
<comment>e.g: An error occurred for torrent xxx.avi.
|
||||
Reason: disk is full.</comment>
|
||||
<translation type="obsolete">Произошла ошибка ввода/вывода для торрента %1.
|
||||
Причина: %2</translation>
|
||||
|
@ -2138,9 +2154,9 @@ Do you want to associate qBittorrent to torrent files and Magnet links?</source>
|
|||
<translation>Ошибка ввода/вывода</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured for torrent %1.
|
||||
<source>An I/O error occurred for torrent %1.
|
||||
Reason: %2</source>
|
||||
<comment>e.g: An error occured for torrent xxx.avi.
|
||||
<comment>e.g: An error occurred for torrent xxx.avi.
|
||||
Reason: disk is full.</comment>
|
||||
<translation>Произошла ошибка ввода/вывода для торрента %1.
|
||||
Причина: %2</translation>
|
||||
|
@ -3169,7 +3185,7 @@ Would you like to update qBittorrent to version %1?</source>
|
|||
</message>
|
||||
<message>
|
||||
<source>Start qBittorrent on Windows start up</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Запускать qBittorrent вместе с Windows</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
@ -3606,7 +3622,7 @@ Would you like to update qBittorrent to version %1?</source>
|
|||
<message>
|
||||
<source>'%1' resumed. (fast resume)</source>
|
||||
<comment>'/home/y/xxx.torrent' was resumed. (fast resume)</comment>
|
||||
<translation>%1 возобновлен (быстрое возобновление).</translation>
|
||||
<translation>%1 возобновлен. (быстрое возобновление)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>'%1' added to download list.</source>
|
||||
|
@ -3679,7 +3695,7 @@ Would you like to update qBittorrent to version %1?</source>
|
|||
<translation>[qBittorrent] скачивание %1 завершено</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured, '%1' paused.</source>
|
||||
<source>An I/O error occurred, '%1' paused.</source>
|
||||
<translation>Ошибка Ввода/Вывода: '%1' приостановлен.</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -3814,8 +3830,8 @@ p, li { white-space: pre-wrap; }
|
|||
</message>
|
||||
<message>
|
||||
<source>Open news URL</source>
|
||||
<translatorcomment>Не нашёл, где используется :( По-моему, под "news" в оригинале имелось в виду что-то другое :)</translatorcomment>
|
||||
<translation type="unfinished">Открыть новый URL</translation>
|
||||
<translatorcomment>Открывает элемент фида в браузере</translatorcomment>
|
||||
<translation type="unfinished">Открыть URL в браузере</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy feed URL</source>
|
||||
|
@ -4146,7 +4162,7 @@ p, li { white-space: pre-wrap; }
|
|||
<translation>Поиск завершен</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An error occured during search...</source>
|
||||
<source>An error occurred during search...</source>
|
||||
<translation>Во время поиска произошла ошибка...</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -4580,6 +4596,11 @@ Do you want to install it now?</source>
|
|||
<comment>Time (duration) the torrent is active (not paused)</comment>
|
||||
<translation>Время активности</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Amount uploaded</source>
|
||||
<comment>Amount of data uploaded (e.g. in MB)</comment>
|
||||
<translation>Отдано</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>TrackerList</name>
|
||||
|
@ -4646,7 +4667,7 @@ Do you want to install it now?</source>
|
|||
<message>
|
||||
<source>Force reannounce</source>
|
||||
<translatorcomment>Коряво >_<</translatorcomment>
|
||||
<translation>Переанонсировать принудительно</translation>
|
||||
<translation type="obsolete">Переанонсировать принудительно</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
@ -5041,11 +5062,11 @@ Do you want to install it now?</source>
|
|||
</message>
|
||||
<message>
|
||||
<source>Recheck confirmation</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="unfinished">Подтвердите повторную проверку</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Are you sure you want to recheck the selected torrent(s)?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="unfinished">Вы уверены, что хотите выполнить повторную проверку выбранных торрентов?</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
@ -5715,6 +5736,13 @@ However, those plugins were disabled.</source>
|
|||
<translation>Нет</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>errorDialog</name>
|
||||
<message>
|
||||
<source>Crash info</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>fsutils</name>
|
||||
<message>
|
||||
|
|
Binary file not shown.
|
@ -115,7 +115,7 @@ p, li { white-space: pre-wrap; }
|
|||
<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;">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></source>
|
||||
<translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||
<translation type="obsolete"><!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:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;">
|
||||
|
@ -123,6 +123,22 @@ p, li { white-space: pre-wrap; }
|
|||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Sledovanie chýb: <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 na Freenode</p></body></html></translation>
|
||||
</message>
|
||||
<message utf8="true">
|
||||
<source><!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:'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-2013 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;">IRC: #qbittorrent on Freenode</p></body></html></source>
|
||||
<translation type="unfinished"><!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:'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;">Pokročilý klient siete BitTorrent naprogramovaný v C++, založený na sade nástrojov Qt4 a libtorrent-rasterbar. <br /><br />Copyright ©2006-2012 Christophe Dumez<br /><br />Domovská stránka: <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;">Sledovanie chýb: <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 na Freenode</p></body></html> {3C?} {4.0/?} {3.?} {40/?} {1"?} {13p?} {400;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {4 ?} {2006-2013 ?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0000f?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?}</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>AddNewTorrentDialog</name>
|
||||
|
@ -759,7 +775,7 @@ p, li { white-space: pre-wrap; }
|
|||
<translation type="obsolete">Pozn.: Do existujúceho torrentu boli pridané nové URL seedy.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured, '%1' paused.</source>
|
||||
<source>An I/O error occurred, '%1' paused.</source>
|
||||
<translation type="obsolete">Vyskytla sa V/V chyba, „%1“ pozastavené.</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1279,9 +1295,9 @@ Túto informáciu by ste mali zistiť z nastavení svojho webového prehliadača
|
|||
<translation type="obsolete">Vyhľadávanie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured for torrent %1.
|
||||
<source>An I/O error occurred for torrent %1.
|
||||
Reason: %2</source>
|
||||
<comment>e.g: An error occured for torrent xxx.avi.
|
||||
<comment>e.g: An error occurred for torrent xxx.avi.
|
||||
Reason: disk is full.</comment>
|
||||
<translation type="obsolete">Vyskytla sa V/V chyba pri torrente %1.
|
||||
Dôvod: %2</translation>
|
||||
|
@ -2118,9 +2134,9 @@ Chcete asociovať qBittorrent so súbormi torrent a odkazmi Magnet?</translation
|
|||
<translation>V/V Chyba</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured for torrent %1.
|
||||
<source>An I/O error occurred for torrent %1.
|
||||
Reason: %2</source>
|
||||
<comment>e.g: An error occured for torrent xxx.avi.
|
||||
<comment>e.g: An error occurred for torrent xxx.avi.
|
||||
Reason: disk is full.</comment>
|
||||
<translation>Vyskytla sa V/V chyba pri torrente %1.
|
||||
Dôvod: %2</translation>
|
||||
|
@ -3630,7 +3646,7 @@ Chcete aktualizovať qBittorrent na verziu %1?</translation>
|
|||
<translation>[qBittorrent] sťahovanie %1 bolo dokončené</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured, '%1' paused.</source>
|
||||
<source>An I/O error occurred, '%1' paused.</source>
|
||||
<translation>Vyskytla sa V/V chyba, „%1“ pozastavené.</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -4095,7 +4111,7 @@ p, li { white-space: pre-wrap; }
|
|||
<translation>Hľadanie skončené</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An error occured during search...</source>
|
||||
<source>An error occurred during search...</source>
|
||||
<translation>Počas vyhľadávania sa vyskytla chyba...</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -4527,6 +4543,11 @@ Chcete ho nainštalovať teraz?</translation>
|
|||
<comment>Time (duration) the torrent is active (not paused)</comment>
|
||||
<translation>Čas aktivity</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Amount uploaded</source>
|
||||
<comment>Amount of data uploaded (e.g. in MB)</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>TrackerList</name>
|
||||
|
@ -4592,7 +4613,7 @@ Chcete ho nainštalovať teraz?</translation>
|
|||
</message>
|
||||
<message>
|
||||
<source>Force reannounce</source>
|
||||
<translation>Vynútiť opätovné ohlásenie</translation>
|
||||
<translation type="obsolete">Vynútiť opätovné ohlásenie</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
@ -5655,6 +5676,13 @@ Tieto moduly však boli vypnuté.</translation>
|
|||
<translation>Nie</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>errorDialog</name>
|
||||
<message>
|
||||
<source>Crash info</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>fsutils</name>
|
||||
<message>
|
||||
|
|
Binary file not shown.
|
@ -113,7 +113,7 @@ p, li { white-space: pre-wrap; }
|
|||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
</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;">An advanced BitTorrent client programmed in C++, based on Qt4 toolkit and libtorrent-rasterbar. <br /><br />Copyright ©2006-2013 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;">IRC: #qbittorrent on Freenode</p></body></html></source>
|
||||
<translation type="unfinished"></translation>
|
||||
|
@ -743,7 +743,7 @@ p, li { white-space: pre-wrap; }
|
|||
<translation type="obsolete">Разлог: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured, '%1' paused.</source>
|
||||
<source>An I/O error occurred, '%1' paused.</source>
|
||||
<translation type="obsolete">Нека И/О грешка се догодила, '%1' паузирано.</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1300,9 +1300,9 @@ You should get this information from your Web browser preferences.</source>
|
|||
<translation type="obsolete">Немогуће преузети фајл са url: %1, разлог: %2.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured for torrent %1.
|
||||
<source>An I/O error occurred for torrent %1.
|
||||
Reason: %2</source>
|
||||
<comment>e.g: An error occured for torrent xxx.avi.
|
||||
<comment>e.g: An error occurred for torrent xxx.avi.
|
||||
Reason: disk is full.</comment>
|
||||
<translatorcomment>н.пр.: Догодила се грешка са торентом xxx.avi. Разлог: диск је пун.</translatorcomment>
|
||||
<translation type="obsolete">Нека И/О грешка се догодила са торентом %1.
|
||||
|
@ -2151,9 +2151,9 @@ Do you want to associate qBittorrent to torrent files and Magnet links?</source>
|
|||
<translation>И/О Грешка</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured for torrent %1.
|
||||
<source>An I/O error occurred for torrent %1.
|
||||
Reason: %2</source>
|
||||
<comment>e.g: An error occured for torrent xxx.avi.
|
||||
<comment>e.g: An error occurred for torrent xxx.avi.
|
||||
Reason: disk is full.</comment>
|
||||
<translation>Нека И/О грешка се догодила са торентом %1.
|
||||
Разлог: %2</translation>
|
||||
|
@ -3685,7 +3685,7 @@ Would you like to update qBittorrent to version %1?</source>
|
|||
<translation>[qBittorrent] %1 је завршио преузимање</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured, '%1' paused.</source>
|
||||
<source>An I/O error occurred, '%1' paused.</source>
|
||||
<translation>Нека И/О грешка се догодила, '%1' паузирано.</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -4164,7 +4164,7 @@ p, li { white-space: pre-wrap; }
|
|||
<translation>Претраживање је завршено</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An error occured during search...</source>
|
||||
<source>An error occurred during search...</source>
|
||||
<translation>Нека грешка се догодила током претраге...</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -4597,6 +4597,11 @@ Do you want to install it now?</source>
|
|||
<comment>Time (duration) the torrent is active (not paused)</comment>
|
||||
<translation>Протекло време</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Amount uploaded</source>
|
||||
<comment>Amount of data uploaded (e.g. in MB)</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>TrackerList</name>
|
||||
|
@ -4663,7 +4668,7 @@ Do you want to install it now?</source>
|
|||
</message>
|
||||
<message>
|
||||
<source>Force reannounce</source>
|
||||
<translation>Форсирано реобјављивање</translation>
|
||||
<translation type="obsolete">Форсирано реобјављивање</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
@ -5752,6 +5757,13 @@ However, those plugins were disabled.</source>
|
|||
<translation>URL:</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>errorDialog</name>
|
||||
<message>
|
||||
<source>Crash info</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>fsutils</name>
|
||||
<message>
|
||||
|
|
Binary file not shown.
|
@ -112,7 +112,7 @@ p, li { white-space: pre-wrap; }
|
|||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
</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;">An advanced BitTorrent client programmed in C++, based on Qt4 toolkit and libtorrent-rasterbar. <br /><br />Copyright ©2006-2013 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;">IRC: #qbittorrent on Freenode</p></body></html></source>
|
||||
<translation type="unfinished"></translation>
|
||||
|
@ -733,7 +733,7 @@ p, li { white-space: pre-wrap; }
|
|||
<translation type="obsolete">Observera: nya URL-distributörer lades till i den befintliga torrentfilen.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured, '%1' paused.</source>
|
||||
<source>An I/O error occurred, '%1' paused.</source>
|
||||
<translation type="obsolete">Ett in-/ut-fel inträffade, "%1" har pausats.</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1244,9 +1244,9 @@ Du kan få denna information från inställningarna i din webbläsare.</translat
|
|||
<translation type="obsolete">Kunde inte hämta fil från url:en: %1, anledning: %2.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured for torrent %1.
|
||||
<source>An I/O error occurred for torrent %1.
|
||||
Reason: %2</source>
|
||||
<comment>e.g: An error occured for torrent xxx.avi.
|
||||
<comment>e.g: An error occurred for torrent xxx.avi.
|
||||
Reason: disk is full.</comment>
|
||||
<translation type="obsolete">Ett in-/ut-fel inträffade för torrentfilen %1.
|
||||
Anledning: %2</translation>
|
||||
|
@ -2028,9 +2028,9 @@ Vill du associera qBittorrent med torrentfiler och Magnet-länkar?</translation>
|
|||
<translation>In-/ut-fel</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured for torrent %1.
|
||||
<source>An I/O error occurred for torrent %1.
|
||||
Reason: %2</source>
|
||||
<comment>e.g: An error occured for torrent xxx.avi.
|
||||
<comment>e.g: An error occurred for torrent xxx.avi.
|
||||
Reason: disk is full.</comment>
|
||||
<translation>Ett in-/ut-fel inträffade för torrentfilen %1.
|
||||
Anledning: %2</translation>
|
||||
|
@ -3520,7 +3520,7 @@ Vill du uppdatera qBittorrent till version %1?</translation>
|
|||
<translation>[qBittorrent] %1 har hämtats färdigt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured, '%1' paused.</source>
|
||||
<source>An I/O error occurred, '%1' paused.</source>
|
||||
<translation>Ett in-/ut-fel inträffade, "%1" har pausats.</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -3976,7 +3976,7 @@ p, li { white-space: pre-wrap; }
|
|||
<translation>Sökningen är färdig</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An error occured during search...</source>
|
||||
<source>An error occurred during search...</source>
|
||||
<translation>Ett fel inträffade under sökningen...</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -4408,6 +4408,11 @@ Vill du installera den nu?</translation>
|
|||
<comment>Time (duration) the torrent is active (not paused)</comment>
|
||||
<translation>Tid aktiv</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Amount uploaded</source>
|
||||
<comment>Amount of data uploaded (e.g. in MB)</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>TrackerList</name>
|
||||
|
@ -4473,7 +4478,7 @@ Vill du installera den nu?</translation>
|
|||
</message>
|
||||
<message>
|
||||
<source>Force reannounce</source>
|
||||
<translation>Tvinga annonsering igen</translation>
|
||||
<translation type="obsolete">Tvinga annonsering igen</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
@ -5536,6 +5541,13 @@ Dock har dessa insticksmoduler blivit inaktiverade.</translation>
|
|||
<translation>Nej</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>errorDialog</name>
|
||||
<message>
|
||||
<source>Crash info</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>fsutils</name>
|
||||
<message>
|
||||
|
|
Binary file not shown.
|
@ -83,7 +83,7 @@ p, li { white-space: pre-wrap; }
|
|||
<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;">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></source>
|
||||
<translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||
<translation type="obsolete"><!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:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;">
|
||||
|
@ -91,6 +91,22 @@ p, li { white-space: pre-wrap; }
|
|||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Hata İzleyici: <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 Freenode</p></body></html></translation>
|
||||
</message>
|
||||
<message utf8="true">
|
||||
<source><!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:'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-2013 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;">IRC: #qbittorrent on Freenode</p></body></html></source>
|
||||
<translation type="unfinished"><!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:'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;">C++ ile programlanmış, Qt4 tabanlı ve libtorrent-rasterbar kullanan gelişmiş bir BitTorrent istemcisi. <br /><br />Copyright ©2006-2012 Christophe Dumez<br /><br />Anasayfa: <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;">Hata İzleyici: <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 Freenode</p></body></html> {3C?} {4.0/?} {3.?} {40/?} {1"?} {13p?} {400;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {4 ?} {2006-2013 ?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0000f?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?}</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>AddNewTorrentDialog</name>
|
||||
|
@ -721,7 +737,7 @@ p, li { white-space: pre-wrap; }
|
|||
<translation type="obsolete">Not: yeni URL eşleri varolan torente eklendi.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured, '%1' paused.</source>
|
||||
<source>An I/O error occurred, '%1' paused.</source>
|
||||
<translation type="obsolete">Bir G/Ç hatası meydana geldi, '%1' duraklatıldı.</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1215,9 +1231,9 @@ Bu bilgiyi ağ tarayıcınızın yeğlenenler kısmından almalısınız.</trans
|
|||
<translation type="obsolete">RSS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured for torrent %1.
|
||||
<source>An I/O error occurred for torrent %1.
|
||||
Reason: %2</source>
|
||||
<comment>e.g: An error occured for torrent xxx.avi.
|
||||
<comment>e.g: An error occurred for torrent xxx.avi.
|
||||
Reason: disk is full.</comment>
|
||||
<translatorcomment>G/Ç: Girdi/Çıktı</translatorcomment>
|
||||
<translation type="obsolete">%1 torrenti için bir G/Ç hatası meydana geldi.
|
||||
|
@ -2012,9 +2028,9 @@ qBittorrent'u bunlarla ilişkilendirmek ister misiniz?</translation>
|
|||
<translation>Girdi/Çıktı Hatası</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured for torrent %1.
|
||||
<source>An I/O error occurred for torrent %1.
|
||||
Reason: %2</source>
|
||||
<comment>e.g: An error occured for torrent xxx.avi.
|
||||
<comment>e.g: An error occurred for torrent xxx.avi.
|
||||
Reason: disk is full.</comment>
|
||||
<translation>%1 torrenti için bir G/Ç hatası meydana geldi.
|
||||
Sebep: %2</translation>
|
||||
|
@ -3500,7 +3516,7 @@ qBittorent'i %1 sürümüne güncellemek istiyor musunuz?</translation>
|
|||
<translation>[qBittorrent] %1 indirilmesi bitti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured, '%1' paused.</source>
|
||||
<source>An I/O error occurred, '%1' paused.</source>
|
||||
<translation>Bir G/Ç hatası meydana geldi, '%1' duraklatıldı.</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -3959,7 +3975,7 @@ p, li { white-space: pre-wrap; }
|
|||
<translation>Arama bitti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An error occured during search...</source>
|
||||
<source>An error occurred during search...</source>
|
||||
<translation>Arama yapılırken bir hata oluştu...</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -4391,6 +4407,11 @@ Do you want to install it now?</source>
|
|||
<comment>Time (duration) the torrent is active (not paused)</comment>
|
||||
<translation>Etkinlik Süresi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Amount uploaded</source>
|
||||
<comment>Amount of data uploaded (e.g. in MB)</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>TrackerList</name>
|
||||
|
@ -4456,7 +4477,7 @@ Do you want to install it now?</source>
|
|||
</message>
|
||||
<message>
|
||||
<source>Force reannounce</source>
|
||||
<translation>Yeniden duyurmaya çalış</translation>
|
||||
<translation type="obsolete">Yeniden duyurmaya çalış</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
@ -5524,6 +5545,13 @@ Bununla birlikte, o eklentiler devre dışı.</translation>
|
|||
<translation>Hayır</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>errorDialog</name>
|
||||
<message>
|
||||
<source>Crash info</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>fsutils</name>
|
||||
<message>
|
||||
|
|
Binary file not shown.
|
@ -115,7 +115,7 @@ p, li { white-space: pre-wrap; }
|
|||
<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;">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></source>
|
||||
<translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||
<translation type="obsolete"><!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:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;">
|
||||
|
@ -123,6 +123,22 @@ p, li { white-space: pre-wrap; }
|
|||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Повідомити про помилку: <a href="http://bugs.qbittorrent.org"><span style=" text-decoration: underline; color:#0000ff;">http://bugs.qbittorrent.org</span></a><br />Форум: <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 на Freenode</p></body></html></translation>
|
||||
</message>
|
||||
<message utf8="true">
|
||||
<source><!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:'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-2013 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;">IRC: #qbittorrent on Freenode</p></body></html></source>
|
||||
<translation type="unfinished"><!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:'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;">Клієнт BitTorrent, запрограмований на C++, на основі Qt4 та libtorrent-rasterbar. <br /><br />Захищено авторським правом ©2006-2012 Крістоф Думез<br /><br />Домашня сторінка: <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;">Повідомити про помилку: <a href="http://bugs.qbittorrent.org"><span style=" text-decoration: underline; color:#0000ff;">http://bugs.qbittorrent.org</span></a><br />Форум: <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 на Freenode</p></body></html> {3C?} {4.0/?} {3.?} {40/?} {1"?} {13p?} {400;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {4 ?} {2006-2013 ?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0000f?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?}</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>AddNewTorrentDialog</name>
|
||||
|
@ -743,7 +759,7 @@ p, li { white-space: pre-wrap; }
|
|||
<translation type="obsolete">Нові URL-сіди було додано до існуючого торрента.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured, '%1' paused.</source>
|
||||
<source>An I/O error occurred, '%1' paused.</source>
|
||||
<translation type="obsolete">Сталася помилка вводу/виводу, '%1' зупинено.</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1270,9 +1286,9 @@ You should get this information from your Web browser preferences.</source>
|
|||
<translation type="obsolete">RSS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured for torrent %1.
|
||||
<source>An I/O error occurred for torrent %1.
|
||||
Reason: %2</source>
|
||||
<comment>e.g: An error occured for torrent xxx.avi.
|
||||
<comment>e.g: An error occurred for torrent xxx.avi.
|
||||
Reason: disk is full.</comment>
|
||||
<translation type="obsolete">Сталася помилка вводу/виводу для торрента %1. Причина: %2</translation>
|
||||
</message>
|
||||
|
@ -2107,9 +2123,9 @@ Do you want to associate qBittorrent to torrent files and Magnet links?</source>
|
|||
<translation>Помилка вводу/виводу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured for torrent %1.
|
||||
<source>An I/O error occurred for torrent %1.
|
||||
Reason: %2</source>
|
||||
<comment>e.g: An error occured for torrent xxx.avi.
|
||||
<comment>e.g: An error occurred for torrent xxx.avi.
|
||||
Reason: disk is full.</comment>
|
||||
<translation>Сталася помилка вводу/виводу для торрента %1.
|
||||
Причина: %2</translation>
|
||||
|
@ -3619,7 +3635,7 @@ Would you like to update qBittorrent to version %1?</source>
|
|||
<translation>[qBittorrent] Завантаження "%1" завершено</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured, '%1' paused.</source>
|
||||
<source>An I/O error occurred, '%1' paused.</source>
|
||||
<translation>Сталася помилка вводу/виводу, '%1' зупинено.</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -4083,7 +4099,7 @@ p, li { white-space: pre-wrap; }
|
|||
<translation>Пошук закінчено</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An error occured during search...</source>
|
||||
<source>An error occurred during search...</source>
|
||||
<translation>Під час пошуку сталася помилка...</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -4515,6 +4531,11 @@ Do you want to install it now?</source>
|
|||
<comment>Time (duration) the torrent is active (not paused)</comment>
|
||||
<translation>Активний протягом</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Amount uploaded</source>
|
||||
<comment>Amount of data uploaded (e.g. in MB)</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>TrackerList</name>
|
||||
|
@ -4580,7 +4601,7 @@ Do you want to install it now?</source>
|
|||
</message>
|
||||
<message>
|
||||
<source>Force reannounce</source>
|
||||
<translation>Примусово переанонсувати</translation>
|
||||
<translation type="obsolete">Примусово переанонсувати</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
@ -5643,6 +5664,13 @@ However, those plugins were disabled.</source>
|
|||
<translation>Ні</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>errorDialog</name>
|
||||
<message>
|
||||
<source>Crash info</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>fsutils</name>
|
||||
<message>
|
||||
|
|
Binary file not shown.
|
@ -115,7 +115,7 @@ p, li { white-space: pre-wrap; }
|
|||
<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;">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></source>
|
||||
<translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||
<translation type="obsolete"><!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:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;">
|
||||
|
@ -123,6 +123,22 @@ p, li { white-space: pre-wrap; }
|
|||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">故障跟踪: <a href="http://bugs.qbittorrent.org"><span style=" text-decoration: underline; color:#0000ff;">http://bugs.qbittorrent.org</span></a><br />论坛: <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>
|
||||
</message>
|
||||
<message utf8="true">
|
||||
<source><!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:'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-2013 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;">IRC: #qbittorrent on Freenode</p></body></html></source>
|
||||
<translation type="unfinished"><!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:'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;">该BitTorrent用户用C++编写, 使用Qt4工具包和libtorrent-rasterbar. <br /><br />Copyright ©2006-2012 Christophe Dumez<br /><br />主页: <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;">故障跟踪: <a href="http://bugs.qbittorrent.org"><span style=" text-decoration: underline; color:#0000ff;">http://bugs.qbittorrent.org</span></a><br />论坛: <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> {3C?} {4.0/?} {3.?} {40/?} {1"?} {13p?} {400;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {4 ?} {2006-2013 ?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0000f?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?}</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>AddNewTorrentDialog</name>
|
||||
|
@ -743,7 +759,7 @@ p, li { white-space: pre-wrap; }
|
|||
<translation type="obsolete">注意:新URL种子被添加到现有的torrent.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured, '%1' paused.</source>
|
||||
<source>An I/O error occurred, '%1' paused.</source>
|
||||
<translation type="obsolete">出现输入/输出错误,'%1'暂停.</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1270,9 +1286,9 @@ You should get this information from your Web browser preferences.</source>
|
|||
<translation type="obsolete">RSS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured for torrent %1.
|
||||
<source>An I/O error occurred for torrent %1.
|
||||
Reason: %2</source>
|
||||
<comment>e.g: An error occured for torrent xxx.avi.
|
||||
<comment>e.g: An error occurred for torrent xxx.avi.
|
||||
Reason: disk is full.</comment>
|
||||
<translation type="obsolete">torrent %1 出现输入/输出错误.
|
||||
原因: %2</translation>
|
||||
|
@ -1780,7 +1796,7 @@ Would you like to update qBittorrent to version %1?</source>
|
|||
</message>
|
||||
<message>
|
||||
<source>The port used for incoming connections must be greater than 1024 and less than 65535.</source>
|
||||
<translation>用于对内连接的端口必须大于1024且小于65535.</translation>
|
||||
<translation type="unfinished">用于传入连接的端口必须大于1024且小于65535.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>The port used for the Web UI must be greater than 1024 and less than 65535.</source>
|
||||
|
@ -2115,9 +2131,9 @@ Do you want to associate qBittorrent to torrent files and Magnet links?</source>
|
|||
<translation>输入/输出错误</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured for torrent %1.
|
||||
<source>An I/O error occurred for torrent %1.
|
||||
Reason: %2</source>
|
||||
<comment>e.g: An error occured for torrent xxx.avi.
|
||||
<comment>e.g: An error occurred for torrent xxx.avi.
|
||||
Reason: disk is full.</comment>
|
||||
<translation>torrent %1 出现输入/输出错误.
|
||||
原因: %2</translation>
|
||||
|
@ -2255,11 +2271,11 @@ Would you like to update qBittorrent to version %1?</source>
|
|||
</message>
|
||||
<message>
|
||||
<source>Add &link to torrent...</source>
|
||||
<translation>向torrent添加链接...</translation>
|
||||
<translation type="unfinished">通过链接添加torrent...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import existing torrent...</source>
|
||||
<translation>导出现有的torrent...</translation>
|
||||
<translation type="unfinished">导入现有的torrent...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Execution &Log</source>
|
||||
|
@ -2485,15 +2501,15 @@ Would you like to update qBittorrent to version %1?</source>
|
|||
</message>
|
||||
<message>
|
||||
<source>Maximum active downloads:</source>
|
||||
<translation>使激活的下载最大化:</translation>
|
||||
<translation type="unfinished">使激活的下载任务个数最大化:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Maximum active uploads:</source>
|
||||
<translation>使激活的上传最大化:</translation>
|
||||
<translation type="unfinished">使激活的上传任务个数最大化:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Maximum active torrents:</source>
|
||||
<translation>使激活的torrents最大化:</translation>
|
||||
<translation type="unfinished">使激活的torrent个数最大化:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>When adding a torrent</source>
|
||||
|
@ -2776,7 +2792,7 @@ Would you like to update qBittorrent to version %1?</source>
|
|||
</message>
|
||||
<message>
|
||||
<source>IP Filtering</source>
|
||||
<translation>IP过滤中</translation>
|
||||
<translation type="unfinished">IP过滤中</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Schedule the use of alternative speed limits</source>
|
||||
|
@ -2861,7 +2877,7 @@ Would you like to update qBittorrent to version %1?</source>
|
|||
</message>
|
||||
<message>
|
||||
<source>Use UPnP / NAT-PMP port forwarding from my router</source>
|
||||
<translation>使用UPnP / NAT-PMP端口从路由器转发</translation>
|
||||
<translation type="unfinished">由路由器的UPnP / NAT-PMP端口转发</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Privacy</source>
|
||||
|
@ -3005,7 +3021,7 @@ Would you like to update qBittorrent to version %1?</source>
|
|||
</message>
|
||||
<message>
|
||||
<source>Use UPnP / NAT-PMP to forward the port from my router</source>
|
||||
<translation>使用UPnP / NAT-PMP 从路由器转发转发端口</translation>
|
||||
<translation type="unfinished">使用UPnP / NAT-PMP 让路由器转发端口</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Update my dynamic domain name</source>
|
||||
|
@ -3065,7 +3081,7 @@ Would you like to update qBittorrent to version %1?</source>
|
|||
</message>
|
||||
<message>
|
||||
<source>Import SSL Certificate</source>
|
||||
<translation>导入 SSL 证书</translation>
|
||||
<translation type="unfinished">导入 SSL 证书</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Import SSL Key</source>
|
||||
|
@ -3627,7 +3643,7 @@ Would you like to update qBittorrent to version %1?</source>
|
|||
<translation>[qBittorrent] %1下载完毕.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured, '%1' paused.</source>
|
||||
<source>An I/O error occurred, '%1' paused.</source>
|
||||
<translation>出现输入/输出错误,'%1'暂停.</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -4087,7 +4103,7 @@ p, li { white-space: pre-wrap; }
|
|||
<translation>搜索完毕</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An error occured during search...</source>
|
||||
<source>An error occurred during search...</source>
|
||||
<translation>搜索中出现错误...</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -4519,6 +4535,11 @@ Do you want to install it now?</source>
|
|||
<comment>Time (duration) the torrent is active (not paused)</comment>
|
||||
<translation>有效时间</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Amount uploaded</source>
|
||||
<comment>Amount of data uploaded (e.g. in MB)</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>TrackerList</name>
|
||||
|
@ -4584,7 +4605,7 @@ Do you want to install it now?</source>
|
|||
</message>
|
||||
<message>
|
||||
<source>Force reannounce</source>
|
||||
<translation>强制再次连接</translation>
|
||||
<translation type="obsolete">强制再次连接</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
@ -5647,6 +5668,13 @@ However, those plugins were disabled.</source>
|
|||
<translation>否</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>errorDialog</name>
|
||||
<message>
|
||||
<source>Crash info</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>fsutils</name>
|
||||
<message>
|
||||
|
|
Binary file not shown.
|
@ -115,7 +115,7 @@ p, li { white-space: pre-wrap; }
|
|||
<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;">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></source>
|
||||
<translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||
<translation type="obsolete"><!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:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;">
|
||||
|
@ -123,6 +123,22 @@ p, li { white-space: pre-wrap; }
|
|||
<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 />論壇: <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>
|
||||
</message>
|
||||
<message utf8="true">
|
||||
<source><!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:'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-2013 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;">IRC: #qbittorrent on Freenode</p></body></html></source>
|
||||
<translation type="unfinished"><!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:'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;">一個使用 C++ 編寫, 基於 QT4 以及 libtorrent-rasterbar 的進階 Bittorrent 客戶端。 <br /><br />Copyright ©2006-2012 Christophe Dumez<br /><br />首頁: <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 />論壇: <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> {3C?} {4.0/?} {3.?} {40/?} {1"?} {13p?} {400;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {4 ?} {2006-2013 ?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0000f?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?}</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>AddNewTorrentDialog</name>
|
||||
|
@ -744,7 +760,7 @@ p, li { white-space: pre-wrap; }
|
|||
<translation type="obsolete">備註: URL 種子已增加到現有 torrent 中。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured, '%1' paused.</source>
|
||||
<source>An I/O error occurred, '%1' paused.</source>
|
||||
<translation type="obsolete">發生 I/O 錯誤, '%1' 已暫停。</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1268,9 +1284,9 @@ You should get this information from your Web browser preferences.</source>
|
|||
<translation type="obsolete">RSS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured for torrent %1.
|
||||
<source>An I/O error occurred for torrent %1.
|
||||
Reason: %2</source>
|
||||
<comment>e.g: An error occured for torrent xxx.avi.
|
||||
<comment>e.g: An error occurred for torrent xxx.avi.
|
||||
Reason: disk is full.</comment>
|
||||
<translation type="obsolete">Torrent %1 發生了 I/O 錯誤。
|
||||
原因: %2</translation>
|
||||
|
@ -2119,9 +2135,9 @@ Do you want to associate qBittorrent to torrent files and Magnet links?</source>
|
|||
<translation>I/O 錯誤</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured for torrent %1.
|
||||
<source>An I/O error occurred for torrent %1.
|
||||
Reason: %2</source>
|
||||
<comment>e.g: An error occured for torrent xxx.avi.
|
||||
<comment>e.g: An error occurred for torrent xxx.avi.
|
||||
Reason: disk is full.</comment>
|
||||
<translation>Torrent %1 發生了 I/O 錯誤。
|
||||
原因: %2</translation>
|
||||
|
@ -3631,7 +3647,7 @@ Would you like to update qBittorrent to version %1?</source>
|
|||
<translation>[qBittorrent] 已下載完成 %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An I/O error occured, '%1' paused.</source>
|
||||
<source>An I/O error occurred, '%1' paused.</source>
|
||||
<translation>發生 I/O 錯誤, '%1' 已暫停。</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -4095,7 +4111,7 @@ p, li { white-space: pre-wrap; }
|
|||
<translation>搜尋完成</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An error occured during search...</source>
|
||||
<source>An error occurred during search...</source>
|
||||
<translation>搜尋時發生錯誤...</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -4527,6 +4543,11 @@ Do you want to install it now?</source>
|
|||
<comment>Time (duration) the torrent is active (not paused)</comment>
|
||||
<translation>經過時間</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Amount uploaded</source>
|
||||
<comment>Amount of data uploaded (e.g. in MB)</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>TrackerList</name>
|
||||
|
@ -4592,7 +4613,7 @@ Do you want to install it now?</source>
|
|||
</message>
|
||||
<message>
|
||||
<source>Force reannounce</source>
|
||||
<translation>強迫重新公告</translation>
|
||||
<translation type="obsolete">強迫重新公告</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
@ -5655,6 +5676,13 @@ However, those plugins were disabled.</source>
|
|||
<translation>否</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>errorDialog</name>
|
||||
<message>
|
||||
<source>Crash info</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>fsutils</name>
|
||||
<message>
|
||||
|
|
52
src/main.cpp
52
src/main.cpp
|
@ -34,6 +34,10 @@
|
|||
#include <QLibraryInfo>
|
||||
|
||||
#ifndef DISABLE_GUI
|
||||
#if defined(QBT_STATIC_QT)
|
||||
#include <QtPlugin>
|
||||
Q_IMPORT_PLUGIN(qico)
|
||||
#endif
|
||||
#include <QMessageBox>
|
||||
#include <QStyleFactory>
|
||||
#include <QStyle>
|
||||
|
@ -61,6 +65,12 @@
|
|||
#include "stacktrace.h"
|
||||
#endif
|
||||
|
||||
#if defined(Q_OS_WIN) && defined(STACKTRACE_WIN)
|
||||
#include <signal.h>
|
||||
#include "stacktrace_win.h"
|
||||
#include "stacktrace_win_dlg.h"
|
||||
#endif
|
||||
|
||||
#include <stdlib.h>
|
||||
#include "misc.h"
|
||||
#include "preferences.h"
|
||||
|
@ -123,7 +133,7 @@ public:
|
|||
|
||||
#include "main.moc"
|
||||
|
||||
#if defined(Q_WS_X11) || defined(Q_WS_MAC)
|
||||
#if defined(Q_WS_X11) || defined(Q_WS_MAC) || defined(Q_OS_WIN)
|
||||
void sigintHandler(int) {
|
||||
signal(SIGINT, 0);
|
||||
qDebug("Catching SIGINT, exiting cleanly");
|
||||
|
@ -138,19 +148,35 @@ void sigtermHandler(int) {
|
|||
void sigsegvHandler(int) {
|
||||
signal(SIGABRT, 0);
|
||||
signal(SIGSEGV, 0);
|
||||
#ifndef Q_OS_WIN
|
||||
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 << "qBittorrent version: " << VERSION << std::endl;
|
||||
print_stacktrace();
|
||||
#else
|
||||
#ifdef STACKTRACE_WIN
|
||||
StraceDlg dlg;
|
||||
dlg.setStacktraceString(straceWin::getBacktrace());
|
||||
dlg.exec();
|
||||
#endif
|
||||
#endif
|
||||
raise(SIGSEGV);
|
||||
}
|
||||
void sigabrtHandler(int) {
|
||||
signal(SIGABRT, 0);
|
||||
signal(SIGSEGV, 0);
|
||||
#ifndef Q_OS_WIN
|
||||
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 << "qBittorrent version: " << VERSION << std::endl;
|
||||
print_stacktrace();
|
||||
#else
|
||||
#ifdef STACKTRACE_WIN
|
||||
StraceDlg dlg;
|
||||
dlg.setStacktraceString(straceWin::getBacktrace());
|
||||
dlg.exec();
|
||||
#endif
|
||||
#endif
|
||||
raise(SIGABRT);
|
||||
}
|
||||
#endif
|
||||
|
@ -193,6 +219,8 @@ int main(int argc, char *argv[]) {
|
|||
qDebug("Passing program parameters to running instance...");
|
||||
qDebug("Message: %s", qPrintable(message));
|
||||
app.sendMessage(message);
|
||||
} else { // Raise main window
|
||||
app.sendMessage("qbt://show");
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
@ -291,7 +319,7 @@ int main(int argc, char *argv[]) {
|
|||
}
|
||||
#endif
|
||||
// Set environment variable
|
||||
if (qputenv("QBITTORRENT", QByteArray(VERSION))) {
|
||||
if (!qputenv("QBITTORRENT", QByteArray(VERSION))) {
|
||||
std::cerr << "Couldn't set environment variable...\n";
|
||||
}
|
||||
|
||||
|
@ -305,24 +333,24 @@ int main(int argc, char *argv[]) {
|
|||
#ifndef DISABLE_GUI
|
||||
app.setQuitOnLastWindowClosed(false);
|
||||
#endif
|
||||
#if defined(Q_WS_X11) || defined(Q_WS_MAC)
|
||||
#if defined(Q_WS_X11) || defined(Q_WS_MAC) || defined(Q_OS_WIN)
|
||||
signal(SIGABRT, sigabrtHandler);
|
||||
signal(SIGTERM, sigtermHandler);
|
||||
signal(SIGINT, sigintHandler);
|
||||
signal(SIGSEGV, sigsegvHandler);
|
||||
#endif
|
||||
// Read torrents given on command line
|
||||
QStringList torrentCmdLine = app.arguments();
|
||||
// Remove first argument (program name)
|
||||
torrentCmdLine.removeFirst();
|
||||
#ifndef QT_NO_DEBUG_OUTPUT
|
||||
foreach (const QString &argument, torrentCmdLine) {
|
||||
qDebug() << "Command line argument:" << argument;
|
||||
QStringList torrents;
|
||||
QStringList appArguments = app.arguments();
|
||||
for (int i = 1; i < appArguments.size(); ++i) {
|
||||
if (!appArguments[i].startsWith("--")) {
|
||||
qDebug() << "Command line argument:" << appArguments[i];
|
||||
torrents << appArguments[i];
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifndef DISABLE_GUI
|
||||
MainWindow window(0, torrentCmdLine);
|
||||
MainWindow window(0, torrents);
|
||||
QObject::connect(&app, SIGNAL(messageReceived(const QString&)),
|
||||
&window, SLOT(processParams(const QString&)));
|
||||
app.setActivationWindow(&window);
|
||||
|
@ -331,7 +359,7 @@ int main(int argc, char *argv[]) {
|
|||
#endif // Q_WS_MAC
|
||||
#else
|
||||
// Load Headless class
|
||||
HeadlessLoader loader(torrentCmdLine);
|
||||
HeadlessLoader loader(torrents);
|
||||
QObject::connect(&app, SIGNAL(messageReceived(const QString&)),
|
||||
&loader, SLOT(processParams(const QString&)));
|
||||
#endif
|
||||
|
|
|
@ -537,7 +537,7 @@ void MainWindow::finishedTorrent(const QTorrentHandle& h) const {
|
|||
// Notification when disk is full
|
||||
void MainWindow::fullDiskError(const QTorrentHandle& h, QString msg) const {
|
||||
if (!h.is_valid()) return;
|
||||
showNotificationBaloon(tr("I/O Error", "i.e: Input/Output Error"), tr("An I/O error occured for torrent %1.\n Reason: %2", "e.g: An error occured for torrent xxx.avi.\n Reason: disk is full.").arg(h.name()).arg(msg));
|
||||
showNotificationBaloon(tr("I/O Error", "i.e: Input/Output Error"), tr("An I/O error occurred for torrent %1.\n Reason: %2", "e.g: An error occurred for torrent xxx.avi.\n Reason: disk is full.").arg(h.name()).arg(msg));
|
||||
}
|
||||
|
||||
void MainWindow::createKeyboardShortcuts() {
|
||||
|
@ -659,6 +659,13 @@ void MainWindow::on_actionSet_global_download_limit_triggered() {
|
|||
// Necessary if we want to close the window
|
||||
// in one time if "close to systray" is enabled
|
||||
void MainWindow::on_actionExit_triggered() {
|
||||
// UI locking enforcement.
|
||||
if (isHidden() && ui_locked) {
|
||||
// Ask for UI lock password
|
||||
if (!unlockUI())
|
||||
return;
|
||||
}
|
||||
|
||||
force_exit = true;
|
||||
close();
|
||||
}
|
||||
|
@ -953,6 +960,16 @@ void MainWindow::processParams(const QStringList& params) {
|
|||
if (misc::isUrl(param)) {
|
||||
QBtSession::instance()->downloadFromUrl(param);
|
||||
}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)) {
|
||||
qDebug("Converting bc link to magnet link");
|
||||
param = misc::bcLinkToMagnet(param);
|
||||
|
|
96
src/misc.cpp
96
src/misc.cpp
|
@ -247,52 +247,56 @@ QString misc::friendlyUnit(qreal val, bool is_speed) {
|
|||
return ret;
|
||||
}
|
||||
|
||||
bool misc::isPreviewable(QString extension) {
|
||||
if (extension.isEmpty()) return false;
|
||||
extension = extension.toUpper();
|
||||
if (extension == "AVI") return true;
|
||||
if (extension == "MP3") return true;
|
||||
if (extension == "OGG") return true;
|
||||
if (extension == "OGV") return true;
|
||||
if (extension == "OGM") return true;
|
||||
if (extension == "WMV") return true;
|
||||
if (extension == "WMA") return true;
|
||||
if (extension == "MPEG") return true;
|
||||
if (extension == "MPG") return true;
|
||||
if (extension == "ASF") return true;
|
||||
if (extension == "QT") return true;
|
||||
if (extension == "RM") return true;
|
||||
if (extension == "RMVB") return true;
|
||||
if (extension == "RMV") return true;
|
||||
if (extension == "SWF") return true;
|
||||
if (extension == "FLV") return true;
|
||||
if (extension == "WAV") return true;
|
||||
if (extension == "MOV") return true;
|
||||
if (extension == "VOB") return true;
|
||||
if (extension == "MID") return true;
|
||||
if (extension == "AC3") return true;
|
||||
if (extension == "MP4") return true;
|
||||
if (extension == "MP2") return true;
|
||||
if (extension == "AVI") return true;
|
||||
if (extension == "FLAC") return true;
|
||||
if (extension == "AU") return true;
|
||||
if (extension == "MPE") return true;
|
||||
if (extension == "MOV") return true;
|
||||
if (extension == "MKV") return true;
|
||||
if (extension == "AIF") return true;
|
||||
if (extension == "AIFF") return true;
|
||||
if (extension == "AIFC") return true;
|
||||
if (extension == "RA") return true;
|
||||
if (extension == "RAM") return true;
|
||||
if (extension == "M4P") return true;
|
||||
if (extension == "M4A") return true;
|
||||
if (extension == "3GP") return true;
|
||||
if (extension == "AAC") return true;
|
||||
if (extension == "SWA") return true;
|
||||
if (extension == "MPC") return true;
|
||||
if (extension == "MPP") return true;
|
||||
if (extension == "M3U") return true;
|
||||
return false;
|
||||
bool misc::isPreviewable(const QString& extension) {
|
||||
static QSet<QString> multimedia_extensions;
|
||||
if (multimedia_extensions.empty()) {
|
||||
multimedia_extensions.insert("3GP");
|
||||
multimedia_extensions.insert("AAC");
|
||||
multimedia_extensions.insert("AC3");
|
||||
multimedia_extensions.insert("AIF");
|
||||
multimedia_extensions.insert("AIFC");
|
||||
multimedia_extensions.insert("AIFF");
|
||||
multimedia_extensions.insert("ASF");
|
||||
multimedia_extensions.insert("AU");
|
||||
multimedia_extensions.insert("AVI");
|
||||
multimedia_extensions.insert("FLAC");
|
||||
multimedia_extensions.insert("FLV");
|
||||
multimedia_extensions.insert("M3U");
|
||||
multimedia_extensions.insert("M4A");
|
||||
multimedia_extensions.insert("M4P");
|
||||
multimedia_extensions.insert("M4V");
|
||||
multimedia_extensions.insert("MID");
|
||||
multimedia_extensions.insert("MKV");
|
||||
multimedia_extensions.insert("MOV");
|
||||
multimedia_extensions.insert("MP2");
|
||||
multimedia_extensions.insert("MP3");
|
||||
multimedia_extensions.insert("MP4");
|
||||
multimedia_extensions.insert("MPC");
|
||||
multimedia_extensions.insert("MPE");
|
||||
multimedia_extensions.insert("MPEG");
|
||||
multimedia_extensions.insert("MPG");
|
||||
multimedia_extensions.insert("MPP");
|
||||
multimedia_extensions.insert("OGG");
|
||||
multimedia_extensions.insert("OGM");
|
||||
multimedia_extensions.insert("OGV");
|
||||
multimedia_extensions.insert("QT");
|
||||
multimedia_extensions.insert("RA");
|
||||
multimedia_extensions.insert("RAM");
|
||||
multimedia_extensions.insert("RM");
|
||||
multimedia_extensions.insert("RMV");
|
||||
multimedia_extensions.insert("RMVB");
|
||||
multimedia_extensions.insert("SWA");
|
||||
multimedia_extensions.insert("SWF");
|
||||
multimedia_extensions.insert("VOB");
|
||||
multimedia_extensions.insert("WAV");
|
||||
multimedia_extensions.insert("WMA");
|
||||
multimedia_extensions.insert("WMV");
|
||||
}
|
||||
|
||||
if (extension.isEmpty())
|
||||
return false;
|
||||
|
||||
return multimedia_extensions.contains(extension.toUpper());
|
||||
}
|
||||
|
||||
QString misc::bcLinkToMagnet(QString bc_link) {
|
||||
|
|
|
@ -99,7 +99,7 @@ public:
|
|||
// see http://en.wikipedia.org/wiki/Kilobyte
|
||||
// value must be given in bytes
|
||||
static QString friendlyUnit(qreal val, bool is_speed = false);
|
||||
static bool isPreviewable(QString extension);
|
||||
static bool isPreviewable(const QString& extension);
|
||||
static QString magnetUriToName(const QString& magnet_uri);
|
||||
static QString magnetUriToHash(const QString& magnet_uri);
|
||||
static QList<QUrl> magnetUriToTrackers(const QString& magnet_uri);
|
||||
|
|
|
@ -89,8 +89,10 @@ public slots:
|
|||
if (combo_iface.currentIndex() == 0) {
|
||||
// All interfaces (default)
|
||||
pref.setNetworkInterface(QString::null);
|
||||
pref.setNetworkInterfaceName(QString::null);
|
||||
} else {
|
||||
pref.setNetworkInterface(combo_iface.currentText());
|
||||
pref.setNetworkInterface(combo_iface.itemData(combo_iface.currentIndex()).toString());
|
||||
pref.setNetworkInterfaceName(combo_iface.currentText());
|
||||
}
|
||||
// Network address
|
||||
QHostAddress addr(txt_network_address.text().trimmed());
|
||||
|
@ -213,7 +215,7 @@ private slots:
|
|||
int i = 1;
|
||||
foreach (const QNetworkInterface& iface, QNetworkInterface::allInterfaces()) {
|
||||
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) {
|
||||
combo_iface.setCurrentIndex(i);
|
||||
interface_exists = true;
|
||||
|
@ -222,7 +224,7 @@ private slots:
|
|||
}
|
||||
// Saved interface does not exist, show it anyway
|
||||
if (!interface_exists) {
|
||||
combo_iface.addItem(current_iface);
|
||||
combo_iface.addItem(pref.getNetworkInterfaceName(),current_iface);
|
||||
combo_iface.setCurrentIndex(i);
|
||||
}
|
||||
setRow(NETWORK_IFACE, tr("Network Interface (requires restart)"), &combo_iface);
|
||||
|
|
|
@ -2042,6 +2042,9 @@
|
|||
<property name="text">
|
||||
<string> (<a href="http://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>)</string>
|
||||
</property>
|
||||
<property name="openExternalLinks">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
|
|
|
@ -945,7 +945,7 @@ public:
|
|||
}
|
||||
|
||||
uint diskCacheSize() const {
|
||||
return value(QString::fromUtf8("Preferences/Downloads/DiskWriteCacheSize"), 0).toUInt();
|
||||
return value(QString::fromUtf8("Preferences/Downloads/DiskWriteCacheSize"), 128).toUInt();
|
||||
}
|
||||
|
||||
void setDiskCacheSize(uint size) {
|
||||
|
@ -1042,6 +1042,14 @@ public:
|
|||
QString getNetworkInterface() const {
|
||||
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) {
|
||||
setValue(QString::fromUtf8("Preferences/Connection/InetAddress"), addr);
|
||||
|
|
|
@ -99,9 +99,10 @@ void PreviewSelect::on_previewButton_clicked() {
|
|||
// Flush data
|
||||
h.flush_cache();
|
||||
|
||||
QStringList absolute_paths(h.absolute_files_path());
|
||||
QString path;
|
||||
foreach (index, selectedIndexes) {
|
||||
path = h.absolute_files_path().at(indexes.at(index.row()));
|
||||
path = absolute_paths.at(indexes.at(index.row()));
|
||||
// File
|
||||
if (QFile::exists(path)) {
|
||||
emit readyToPreviewFile(path);
|
||||
|
|
|
@ -316,8 +316,10 @@ void PeerListWidget::loadPeers(const QTorrentHandle &h, bool force_hostname_reso
|
|||
std::vector<peer_info>::const_iterator itrend = peers.end();
|
||||
for ( ; itr != itrend; ++itr) {
|
||||
peer_info peer = *itr;
|
||||
QString peer_ip = misc::toQString(peer.ip.address().to_string(ec));
|
||||
if (ec) continue;
|
||||
std::string ip_str = peer.ip.address().to_string(ec);
|
||||
if (ec || ip_str.empty())
|
||||
continue;
|
||||
QString peer_ip = misc::toQString(ip_str);
|
||||
if (m_peerItems.contains(peer_ip)) {
|
||||
// Update existing peer
|
||||
updatePeer(peer_ip, peer);
|
||||
|
|
|
@ -354,8 +354,6 @@ void TrackerList::showTrackerListMenu(QPoint) {
|
|||
if (!getSelectedTrackerItems().isEmpty()) {
|
||||
delAct = menu.addAction(IconProvider::instance()->getIcon("list-remove"), tr("Remove tracker"));
|
||||
}
|
||||
menu.addSeparator();
|
||||
QAction *reannounceAct = menu.addAction(IconProvider::instance()->getIcon("view-refresh"), tr("Force reannounce"));
|
||||
QAction *act = menu.exec(QCursor::pos());
|
||||
if (act == 0) return;
|
||||
if (act == addAct) {
|
||||
|
@ -370,10 +368,6 @@ void TrackerList::showTrackerListMenu(QPoint) {
|
|||
deleteSelectedTrackers();
|
||||
return;
|
||||
}
|
||||
if (act == reannounceAct) {
|
||||
properties->getCurrentTorrent().force_reannounce();
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
void TrackerList::loadSettings() {
|
||||
|
|
|
@ -53,9 +53,6 @@ public:
|
|||
setupUi(this);
|
||||
// Icons
|
||||
uTorrentListButton->setIcon(IconProvider::instance()->getIcon("download"));
|
||||
// As a default, use torrentz.com link
|
||||
list_url->setText("http://www.torrentz.com/announce_"+h.hash());
|
||||
list_url->setCursorPosition(0);
|
||||
}
|
||||
|
||||
~TrackersAdditionDlg() {}
|
||||
|
|
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.
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue