You've already forked qBittorrent
mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-10-12 03:12:18 +02:00
Compare commits
1 Commits
release-1.
...
release-1.
Author | SHA1 | Date | |
---|---|---|---|
![]() |
fc61693463 |
21
TODO
21
TODO
@@ -46,6 +46,7 @@
|
||||
- Display in torrent addition dialog:
|
||||
* free disk space on selected drive
|
||||
* free disk space after torrent download (and/or torrent size)
|
||||
- Start minimized option in program preferences
|
||||
- Allow to change action on double-click
|
||||
-> in download list
|
||||
-> in seeding list
|
||||
@@ -54,14 +55,14 @@
|
||||
- Fix all (or almost all) opened bugs in bug tracker
|
||||
- Recheck doc
|
||||
- Translations update (IN PROGRESS)
|
||||
- add qt4-qtconfig as package dependency
|
||||
|
||||
rc4->rc5 changelog:
|
||||
- BUGFIX: Now filtered don't appear on hard drive anymore (libtorrent >= r1659)
|
||||
- BUGFIX: AddInPause setting doesn't pause downloads on startup anymore
|
||||
- BUGFIX: Fixed an ETA calculation problem when the torrent has filtered files
|
||||
- BUGFIX: Fixed possible overflow in ETA calculation
|
||||
- BUGFIX: Fixed "Missing Input path" error when creating a torrent
|
||||
- BUGFIX: Fixed some notification messages for torrent addition dialog
|
||||
- BUGFIX: Fixed "Automatically start seeding" feature in torrent creation tool
|
||||
- COSMETIC: Improved progress bar text rendering
|
||||
rc5->rc6 changelog:
|
||||
- FEATURE: Added a button to clear search pattern
|
||||
- BUGFIX: configure looks for libraries in lib64 folders too
|
||||
- BUGFIX: configure doesn't require paths with a terminal "/" anymore
|
||||
- BUGFIX: Fixed minimize to tray feature
|
||||
- BUGFIX: Fixed folders progress calculation in torrent properties
|
||||
- BUGFIX: Fixed deletion of subfolders when deleting torrents from hard drive
|
||||
- BUGFIX: Remember scan directory in program preferences now
|
||||
- BUGFIX: Fixed ETA display (sometimes displayed < 1min for no reason)
|
||||
- I18N: Fixed swedish, French, Spanish translations
|
16
configure
vendored
16
configure
vendored
@@ -412,7 +412,9 @@ public:
|
||||
}else{
|
||||
QStringList sl;
|
||||
sl << "/usr/lib/";
|
||||
sl << "/usr/lib64/";
|
||||
sl << "/usr/local/lib/";
|
||||
sl << "/usr/local/lib64/";
|
||||
bool found = false;
|
||||
foreach(s, sl){
|
||||
if(conf->checkLibrary(s, "torrent")){
|
||||
@@ -533,15 +535,17 @@ public:
|
||||
|
||||
s = conf->getenv("QC_WITH_LIBCOMMONCPP2_LIB");
|
||||
if(!s.isEmpty()) {
|
||||
if(!QFile::exists(s+QString("libccext2.so")))
|
||||
if(!QFile::exists(s+QString("/libccext2.so")))
|
||||
return false;
|
||||
if(!QFile::exists(s+QString("libccgnu2.so")))
|
||||
if(!QFile::exists(s+QString("/libccgnu2.so")))
|
||||
return false;
|
||||
conf->addLib(QString("-L") + s);
|
||||
}else{
|
||||
QStringList sl;
|
||||
sl << "/usr/lib/";
|
||||
sl << "/usr/lib64/";
|
||||
sl << "/usr/local/lib/";
|
||||
sl << "/usr/local/lib64/";
|
||||
bool found = false;
|
||||
foreach(s, sl){
|
||||
if(QFile::exists(s+QString("libccext2.so"))){
|
||||
@@ -614,13 +618,15 @@ public:
|
||||
|
||||
s = conf->getenv("QC_WITH_LIBMAGICK_LIB");
|
||||
if(!s.isEmpty()) {
|
||||
if(!QFile::exists(s+QString("libMagick++.so"))){
|
||||
if(!QFile::exists(s+QString("/libMagick++.so"))){
|
||||
return false;
|
||||
}
|
||||
}else{
|
||||
QStringList sl;
|
||||
sl << "/usr/lib/";
|
||||
sl << "/usr/lib64/";
|
||||
sl << "/usr/local/lib/";
|
||||
sl << "/usr/local/lib64/";
|
||||
bool found = false;
|
||||
foreach(s, sl){
|
||||
if(QFile::exists(s+QString("libMagick++.so"))){
|
||||
@@ -692,13 +698,15 @@ public:
|
||||
|
||||
s = conf->getenv("QC_WITH_LIBZZIP_LIB");
|
||||
if(!s.isEmpty()) {
|
||||
if(!QFile::exists(s+QString("libzzip.so"))){
|
||||
if(!QFile::exists(s+QString("/libzzip.so"))){
|
||||
return false;
|
||||
}
|
||||
}else{
|
||||
QStringList sl;
|
||||
sl << "/usr/lib/";
|
||||
sl << "/usr/lib64/";
|
||||
sl << "/usr/local/lib/";
|
||||
sl << "/usr/local/lib64/";
|
||||
bool found = false;
|
||||
foreach(s, sl){
|
||||
if(QFile::exists(s+QString("libzzip.so"))){
|
||||
|
@@ -37,15 +37,17 @@ public:
|
||||
|
||||
s = conf->getenv("QC_WITH_LIBCOMMONCPP2_LIB");
|
||||
if(!s.isEmpty()) {
|
||||
if(!QFile::exists(s+QString("libccext2.so")))
|
||||
if(!QFile::exists(s+QString("/libccext2.so")))
|
||||
return false;
|
||||
if(!QFile::exists(s+QString("libccgnu2.so")))
|
||||
if(!QFile::exists(s+QString("/libccgnu2.so")))
|
||||
return false;
|
||||
conf->addLib(QString("-L") + s);
|
||||
}else{
|
||||
QStringList sl;
|
||||
sl << "/usr/lib/";
|
||||
sl << "/usr/lib64/";
|
||||
sl << "/usr/local/lib/";
|
||||
sl << "/usr/local/lib64/";
|
||||
bool found = false;
|
||||
foreach(s, sl){
|
||||
if(QFile::exists(s+QString("libccext2.so"))){
|
||||
|
@@ -44,13 +44,15 @@ public:
|
||||
|
||||
s = conf->getenv("QC_WITH_LIBMAGICK_LIB");
|
||||
if(!s.isEmpty()) {
|
||||
if(!QFile::exists(s+QString("libMagick++.so"))){
|
||||
if(!QFile::exists(s+QString("/libMagick++.so"))){
|
||||
return false;
|
||||
}
|
||||
}else{
|
||||
QStringList sl;
|
||||
sl << "/usr/lib/";
|
||||
sl << "/usr/lib64/";
|
||||
sl << "/usr/local/lib/";
|
||||
sl << "/usr/local/lib64/";
|
||||
bool found = false;
|
||||
foreach(s, sl){
|
||||
if(QFile::exists(s+QString("libMagick++.so"))){
|
||||
|
@@ -52,7 +52,9 @@ public:
|
||||
}else{
|
||||
QStringList sl;
|
||||
sl << "/usr/lib/";
|
||||
sl << "/usr/lib64/";
|
||||
sl << "/usr/local/lib/";
|
||||
sl << "/usr/local/lib64/";
|
||||
bool found = false;
|
||||
foreach(s, sl){
|
||||
if(conf->checkLibrary(s, "torrent")){
|
||||
|
@@ -44,13 +44,15 @@ public:
|
||||
|
||||
s = conf->getenv("QC_WITH_LIBZZIP_LIB");
|
||||
if(!s.isEmpty()) {
|
||||
if(!QFile::exists(s+QString("libzzip.so"))){
|
||||
if(!QFile::exists(s+QString("/libzzip.so"))){
|
||||
return false;
|
||||
}
|
||||
}else{
|
||||
QStringList sl;
|
||||
sl << "/usr/lib/";
|
||||
sl << "/usr/lib64/";
|
||||
sl << "/usr/local/lib/";
|
||||
sl << "/usr/local/lib64/";
|
||||
bool found = false;
|
||||
foreach(s, sl){
|
||||
if(QFile::exists(s+QString("libzzip.so"))){
|
||||
|
@@ -47,7 +47,6 @@
|
||||
#include "allocationDlg.h"
|
||||
|
||||
using namespace libtorrent;
|
||||
namespace fs = boost::filesystem;
|
||||
|
||||
/*****************************************************
|
||||
* *
|
||||
@@ -519,7 +518,7 @@ void GUI::on_actionCreate_torrent_triggered() {
|
||||
// Called when we minimize the program
|
||||
void GUI::hideEvent(QHideEvent *e) {
|
||||
QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent"));
|
||||
if(systrayIntegration && settings.value(QString::fromUtf8("Preferences/General/MinimizeToTray"), false).toBool() && !e->spontaneous()) {
|
||||
if(systrayIntegration && settings.value(QString::fromUtf8("Preferences/General/MinimizeToTray"), false).toBool()) {
|
||||
// Hide window
|
||||
hide();
|
||||
}
|
||||
|
BIN
src/Icons/edit_clear.png
Normal file
BIN
src/Icons/edit_clear.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 575 B |
@@ -62,12 +62,20 @@ class file {
|
||||
|
||||
void updateProgress() {
|
||||
Q_ASSERT(is_dir);
|
||||
float sum = 0;
|
||||
if(children.isEmpty()) {
|
||||
progress = 0.;
|
||||
return;
|
||||
}
|
||||
float wanted = 0.;
|
||||
float done = 0.;
|
||||
file *child;
|
||||
foreach(child, children) {
|
||||
sum += child->getProgress();
|
||||
wanted += child->getSize();
|
||||
done += child->getSize()*child->getProgress();
|
||||
}
|
||||
progress = sum / (float)children.size();
|
||||
progress = done / wanted;
|
||||
Q_ASSERT(progress >= 0.);
|
||||
Q_ASSERT(progress <= 1.);
|
||||
}
|
||||
|
||||
void updatePriority(int prio) {
|
||||
|
@@ -27,6 +27,7 @@
|
||||
#include "bittorrent.h"
|
||||
#include "misc.h"
|
||||
#include "downloadThread.h"
|
||||
#include "deleteThread.h"
|
||||
|
||||
#include <libtorrent/extensions/metadata_transfer.hpp>
|
||||
#include <libtorrent/extensions/ut_pex.hpp>
|
||||
@@ -61,6 +62,8 @@ bittorrent::bittorrent() : timerScan(0), DHTEnabled(false), preAllocateAll(false
|
||||
downloader = new downloadThread(this);
|
||||
connect(downloader, SIGNAL(downloadFinished(QString, QString)), this, SLOT(processDownloadedFile(QString, QString)));
|
||||
connect(downloader, SIGNAL(downloadFailure(QString, QString)), this, SLOT(handleDownloadFailure(QString, QString)));
|
||||
// File deleter (thread)
|
||||
deleter = new deleteThread(this);
|
||||
qDebug("* BTSession constructed");
|
||||
}
|
||||
|
||||
@@ -69,6 +72,7 @@ bittorrent::~bittorrent() {
|
||||
// Disable directory scanning
|
||||
disableDirectoryScanning();
|
||||
// Delete our objects
|
||||
delete deleter;
|
||||
delete timerAlerts;
|
||||
delete ETARefresher;
|
||||
delete downloader;
|
||||
@@ -154,8 +158,8 @@ void bittorrent::updateETAs() {
|
||||
Q_ASSERT(nbETAs);
|
||||
foreach(val, listEtas) {
|
||||
moy += (qlonglong)((double)val/(double)nbETAs);
|
||||
Q_ASSERT(moy >= 0);
|
||||
}
|
||||
Q_ASSERT(moy >= 0);
|
||||
ETAs[hash] = moy;
|
||||
} else {
|
||||
// Speed is too low, we don't want an overflow.
|
||||
@@ -206,13 +210,12 @@ void bittorrent::deleteTorrent(QString hash, bool permanent) {
|
||||
}
|
||||
QString savePath = h.save_path();
|
||||
QString fileName = h.name();
|
||||
// Remove it from session
|
||||
if(permanent) {
|
||||
qDebug("Removing this on hard drive: %s", qPrintable(savePath+QDir::separator()+fileName));
|
||||
s->remove_torrent(h.get_torrent_handle(), session::delete_files);
|
||||
} else {
|
||||
s->remove_torrent(h.get_torrent_handle());
|
||||
arborescence *files_arb = 0;
|
||||
if(permanent){
|
||||
files_arb = new arborescence(h.get_torrent_info());
|
||||
}
|
||||
// Remove it from session
|
||||
s->remove_torrent(h.get_torrent_handle());
|
||||
// Remove it from torrent backup directory
|
||||
QDir torrentBackup(misc::qBittorrentPath() + "BT_backup");
|
||||
QStringList filters;
|
||||
@@ -244,6 +247,12 @@ void bittorrent::deleteTorrent(QString hash, bool permanent) {
|
||||
std::cerr << "Error: Torrent " << hash.toStdString() << " is neither in finished or unfinished list\n";
|
||||
}
|
||||
}
|
||||
if(permanent && files_arb != 0) {
|
||||
// Remove from Hard drive
|
||||
qDebug("Removing this on hard drive: %s", qPrintable(savePath+QDir::separator()+fileName));
|
||||
// Deleting in a thread to avoid GUI freeze
|
||||
deleter->deleteTorrent(savePath, files_arb);
|
||||
}
|
||||
}
|
||||
|
||||
// Return a list of hashes for the finished torrents
|
||||
|
@@ -33,6 +33,7 @@
|
||||
using namespace libtorrent;
|
||||
|
||||
class downloadThread;
|
||||
class deleteThread;
|
||||
class QTimer;
|
||||
|
||||
class bittorrent : public QObject{
|
||||
@@ -53,6 +54,7 @@ class bittorrent : public QObject{
|
||||
QHash<QString, QPair<size_type,size_type> > ratioData;
|
||||
QTimer *ETARefresher;
|
||||
QHash<QString, QList<QPair<QString, QString> > > trackersErrors;
|
||||
deleteThread *deleter;
|
||||
QStringList waitingForPause;
|
||||
QStringList finishedTorrents;
|
||||
QStringList unfinishedTorrents;
|
||||
|
@@ -47,6 +47,7 @@
|
||||
<file>Icons/configure.png</file>
|
||||
<file>Icons/download.png</file>
|
||||
<file>Icons/folder.png</file>
|
||||
<file>Icons/edit_clear.png</file>
|
||||
<file>Icons/flags/portugal.png</file>
|
||||
<file>Icons/flags/france.png</file>
|
||||
<file>Icons/flags/ukraine.png</file>
|
||||
|
@@ -2515,24 +2515,24 @@ Are you sure you want to quit qBittorrent?</source>
|
||||
<translation type="obsolete">Вярно</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="122"/>
|
||||
<location filename="../PropListDelegate.h" line="119"/>
|
||||
<source>Ignored</source>
|
||||
<translation>Игнорирано</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="123"/>
|
||||
<location filename="../PropListDelegate.h" line="120"/>
|
||||
<source>Normal</source>
|
||||
<comment>Normal (priority)</comment>
|
||||
<translation>Нормален</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="124"/>
|
||||
<location filename="../PropListDelegate.h" line="121"/>
|
||||
<source>High</source>
|
||||
<comment>High (priority)</comment>
|
||||
<translation>Висок</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="125"/>
|
||||
<location filename="../PropListDelegate.h" line="122"/>
|
||||
<source>Maximum</source>
|
||||
<comment>Maximum (priority)</comment>
|
||||
<translation>Максимален</translation>
|
||||
@@ -3334,12 +3334,12 @@ Changelog:
|
||||
<translation type="obsolete">Моля първо напишете правилен входящ път </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="212"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="213"/>
|
||||
<source>Torrent creation</source>
|
||||
<translation>Създаване на Торент</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="212"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="213"/>
|
||||
<source>Torrent was created successfully:</source>
|
||||
<translation>Торента бе създаден успешно:</translation>
|
||||
</message>
|
||||
@@ -3364,7 +3364,7 @@ Changelog:
|
||||
<translation>Моля въведете даващ URL </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="207"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="208"/>
|
||||
<source>Torrent creation was unsuccessful, reason: %1</source>
|
||||
<translation>Създаване на торент неуспешно, причина: %1</translation>
|
||||
</message>
|
||||
@@ -4455,7 +4455,7 @@ However, those plugins were disabled.</source>
|
||||
<context>
|
||||
<name>search_engine</name>
|
||||
<message>
|
||||
<location filename="../search.ui" line="76"/>
|
||||
<location filename="../search.ui" line="98"/>
|
||||
<source>Search</source>
|
||||
<translation>Търси</translation>
|
||||
</message>
|
||||
@@ -4470,32 +4470,32 @@ However, those plugins were disabled.</source>
|
||||
<translation>Тип на търсене:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="92"/>
|
||||
<location filename="../search.ui" line="114"/>
|
||||
<source>Stop</source>
|
||||
<translation>Спри</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="127"/>
|
||||
<location filename="../search.ui" line="149"/>
|
||||
<source>Status:</source>
|
||||
<translation>Състояние:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="157"/>
|
||||
<location filename="../search.ui" line="179"/>
|
||||
<source>Stopped</source>
|
||||
<translation>Спрян</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="230"/>
|
||||
<location filename="../search.ui" line="252"/>
|
||||
<source>Results:</source>
|
||||
<translation>Резултати:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="297"/>
|
||||
<location filename="../search.ui" line="319"/>
|
||||
<source>Download</source>
|
||||
<translation>Свали</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="307"/>
|
||||
<location filename="../search.ui" line="329"/>
|
||||
<source>Clear</source>
|
||||
<translation>Изтрий</translation>
|
||||
</message>
|
||||
@@ -4505,7 +4505,7 @@ However, those plugins were disabled.</source>
|
||||
<translation type="obsolete">Обнови допълнението за търсене</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="99"/>
|
||||
<location filename="../search.ui" line="121"/>
|
||||
<source>Search engines...</source>
|
||||
<translation>Търсачки...</translation>
|
||||
</message>
|
||||
|
@@ -2397,24 +2397,24 @@ Are you sure you want to quit qBittorrent?</source>
|
||||
<translation type="obsolete">Cert</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="122"/>
|
||||
<location filename="../PropListDelegate.h" line="119"/>
|
||||
<source>Ignored</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="123"/>
|
||||
<location filename="../PropListDelegate.h" line="120"/>
|
||||
<source>Normal</source>
|
||||
<comment>Normal (priority)</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="124"/>
|
||||
<location filename="../PropListDelegate.h" line="121"/>
|
||||
<source>High</source>
|
||||
<comment>High (priority)</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="125"/>
|
||||
<location filename="../PropListDelegate.h" line="122"/>
|
||||
<source>Maximum</source>
|
||||
<comment>Maximum (priority)</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
@@ -3176,12 +3176,12 @@ Log:
|
||||
<translation type="obsolete">Si us plau escriu una ruta d'entrada primer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="212"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="213"/>
|
||||
<source>Torrent creation</source>
|
||||
<translation>Crear Torrent</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="212"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="213"/>
|
||||
<source>Torrent was created successfully:</source>
|
||||
<translation>Torrent creatamb éxit:</translation>
|
||||
</message>
|
||||
@@ -3201,7 +3201,7 @@ Log:
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="207"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="208"/>
|
||||
<source>Torrent creation was unsuccessful, reason: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -4255,7 +4255,7 @@ However, those plugins were disabled.</source>
|
||||
<context>
|
||||
<name>search_engine</name>
|
||||
<message>
|
||||
<location filename="../search.ui" line="76"/>
|
||||
<location filename="../search.ui" line="98"/>
|
||||
<source>Search</source>
|
||||
<translation type="unfinished">Cercar</translation>
|
||||
</message>
|
||||
@@ -4270,32 +4270,32 @@ However, those plugins were disabled.</source>
|
||||
<translation type="unfinished">Busqueda pare:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="92"/>
|
||||
<location filename="../search.ui" line="114"/>
|
||||
<source>Stop</source>
|
||||
<translation type="unfinished">Parar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="127"/>
|
||||
<location filename="../search.ui" line="149"/>
|
||||
<source>Status:</source>
|
||||
<translation type="unfinished">Estat:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="157"/>
|
||||
<location filename="../search.ui" line="179"/>
|
||||
<source>Stopped</source>
|
||||
<translation type="unfinished">Parat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="230"/>
|
||||
<location filename="../search.ui" line="252"/>
|
||||
<source>Results:</source>
|
||||
<translation type="unfinished">Resultats:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="297"/>
|
||||
<location filename="../search.ui" line="319"/>
|
||||
<source>Download</source>
|
||||
<translation type="unfinished">Descàrrega</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="307"/>
|
||||
<location filename="../search.ui" line="329"/>
|
||||
<source>Clear</source>
|
||||
<translation type="unfinished">Neteja</translation>
|
||||
</message>
|
||||
@@ -4305,7 +4305,7 @@ However, those plugins were disabled.</source>
|
||||
<translation type="obsolete">Actualitza plugin de Recerca</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="99"/>
|
||||
<location filename="../search.ui" line="121"/>
|
||||
<source>Search engines...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@@ -1842,24 +1842,24 @@ Are you sure you want to quit qBittorrent?</source>
|
||||
<translation type="obsolete">Sandt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="122"/>
|
||||
<location filename="../PropListDelegate.h" line="119"/>
|
||||
<source>Ignored</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="123"/>
|
||||
<location filename="../PropListDelegate.h" line="120"/>
|
||||
<source>Normal</source>
|
||||
<comment>Normal (priority)</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="124"/>
|
||||
<location filename="../PropListDelegate.h" line="121"/>
|
||||
<source>High</source>
|
||||
<comment>High (priority)</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="125"/>
|
||||
<location filename="../PropListDelegate.h" line="122"/>
|
||||
<source>Maximum</source>
|
||||
<comment>Maximum (priority)</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
@@ -2583,12 +2583,12 @@ Changelog:
|
||||
<translation type="obsolete">Stien til input findes ikke</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="212"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="213"/>
|
||||
<source>Torrent creation</source>
|
||||
<translation>Torrent oprettelse</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="212"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="213"/>
|
||||
<source>Torrent was created successfully:</source>
|
||||
<translation>Torrent blev oprettet succesfuldt:</translation>
|
||||
</message>
|
||||
@@ -2608,7 +2608,7 @@ Changelog:
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="207"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="208"/>
|
||||
<source>Torrent creation was unsuccessful, reason: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -3464,7 +3464,7 @@ However, those plugins were disabled.</source>
|
||||
<context>
|
||||
<name>search_engine</name>
|
||||
<message>
|
||||
<location filename="../search.ui" line="76"/>
|
||||
<location filename="../search.ui" line="98"/>
|
||||
<source>Search</source>
|
||||
<translation type="unfinished">Søg</translation>
|
||||
</message>
|
||||
@@ -3479,32 +3479,32 @@ However, those plugins were disabled.</source>
|
||||
<translation type="unfinished">Søg Efter:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="92"/>
|
||||
<location filename="../search.ui" line="114"/>
|
||||
<source>Stop</source>
|
||||
<translation type="unfinished">Stop</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="127"/>
|
||||
<location filename="../search.ui" line="149"/>
|
||||
<source>Status:</source>
|
||||
<translation type="unfinished">Status:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="157"/>
|
||||
<location filename="../search.ui" line="179"/>
|
||||
<source>Stopped</source>
|
||||
<translation type="unfinished">Stoppet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="230"/>
|
||||
<location filename="../search.ui" line="252"/>
|
||||
<source>Results:</source>
|
||||
<translation type="unfinished">Resultater:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="297"/>
|
||||
<location filename="../search.ui" line="319"/>
|
||||
<source>Download</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="307"/>
|
||||
<location filename="../search.ui" line="329"/>
|
||||
<source>Clear</source>
|
||||
<translation type="unfinished">Ryd resultater</translation>
|
||||
</message>
|
||||
@@ -3514,7 +3514,7 @@ However, those plugins were disabled.</source>
|
||||
<translation type="obsolete">Opdater søge plugin</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="99"/>
|
||||
<location filename="../search.ui" line="121"/>
|
||||
<source>Search engines...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@@ -2493,24 +2493,24 @@ Möchten sie qBittorrent wirklich beenden?</translation>
|
||||
<translation type="obsolete">Wahr</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="122"/>
|
||||
<location filename="../PropListDelegate.h" line="119"/>
|
||||
<source>Ignored</source>
|
||||
<translation>Ignoriert</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="123"/>
|
||||
<location filename="../PropListDelegate.h" line="120"/>
|
||||
<source>Normal</source>
|
||||
<comment>Normal (priority)</comment>
|
||||
<translation>Normal</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="124"/>
|
||||
<location filename="../PropListDelegate.h" line="121"/>
|
||||
<source>High</source>
|
||||
<comment>High (priority)</comment>
|
||||
<translation>Hoch</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="125"/>
|
||||
<location filename="../PropListDelegate.h" line="122"/>
|
||||
<source>Maximum</source>
|
||||
<comment>Maximum (priority)</comment>
|
||||
<translation>Maximum</translation>
|
||||
@@ -3337,12 +3337,12 @@ Changelog:
|
||||
<translation type="obsolete">Bitte geben Sie einen gültigen Eingangs-Pfad an</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="212"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="213"/>
|
||||
<source>Torrent creation</source>
|
||||
<translation>Torrent Erstellung</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="212"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="213"/>
|
||||
<source>Torrent was created successfully:</source>
|
||||
<translation>Torrent erfolgreich erstellt:</translation>
|
||||
</message>
|
||||
@@ -3367,7 +3367,7 @@ Changelog:
|
||||
<translation>Bitte Announce URL eingeben</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="207"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="208"/>
|
||||
<source>Torrent creation was unsuccessful, reason: %1</source>
|
||||
<translation>Torrent Erstellung nicht erfolgreich, Grund: %1</translation>
|
||||
</message>
|
||||
@@ -4503,7 +4503,7 @@ Die Plugins wurden jedoch deaktiviert.</translation>
|
||||
<context>
|
||||
<name>search_engine</name>
|
||||
<message>
|
||||
<location filename="../search.ui" line="76"/>
|
||||
<location filename="../search.ui" line="98"/>
|
||||
<source>Search</source>
|
||||
<translation>Suche</translation>
|
||||
</message>
|
||||
@@ -4518,32 +4518,32 @@ Die Plugins wurden jedoch deaktiviert.</translation>
|
||||
<translation>Suchanfrage:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="92"/>
|
||||
<location filename="../search.ui" line="114"/>
|
||||
<source>Stop</source>
|
||||
<translation>Stop</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="127"/>
|
||||
<location filename="../search.ui" line="149"/>
|
||||
<source>Status:</source>
|
||||
<translation>Status:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="157"/>
|
||||
<location filename="../search.ui" line="179"/>
|
||||
<source>Stopped</source>
|
||||
<translation>Angehalten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="230"/>
|
||||
<location filename="../search.ui" line="252"/>
|
||||
<source>Results:</source>
|
||||
<translation>Ergebnisse:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="297"/>
|
||||
<location filename="../search.ui" line="319"/>
|
||||
<source>Download</source>
|
||||
<translation>Lade</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="307"/>
|
||||
<location filename="../search.ui" line="329"/>
|
||||
<source>Clear</source>
|
||||
<translation>Leeren</translation>
|
||||
</message>
|
||||
@@ -4553,7 +4553,7 @@ Die Plugins wurden jedoch deaktiviert.</translation>
|
||||
<translation type="obsolete">"Such"-Plugin updaten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="99"/>
|
||||
<location filename="../search.ui" line="121"/>
|
||||
<source>Search engines...</source>
|
||||
<translation>Suchmaschinen...</translation>
|
||||
</message>
|
||||
|
@@ -2599,24 +2599,24 @@ Are you sure you want to quit qBittorrent?</source>
|
||||
<translation type="obsolete">Σωστό</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="122"/>
|
||||
<location filename="../PropListDelegate.h" line="119"/>
|
||||
<source>Ignored</source>
|
||||
<translation>Αγνοείται</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="123"/>
|
||||
<location filename="../PropListDelegate.h" line="120"/>
|
||||
<source>Normal</source>
|
||||
<comment>Normal (priority)</comment>
|
||||
<translation>Κανονική</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="124"/>
|
||||
<location filename="../PropListDelegate.h" line="121"/>
|
||||
<source>High</source>
|
||||
<comment>High (priority)</comment>
|
||||
<translation>Υψηλή</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="125"/>
|
||||
<location filename="../PropListDelegate.h" line="122"/>
|
||||
<source>Maximum</source>
|
||||
<comment>Maximum (priority)</comment>
|
||||
<translation>Μέγιστη</translation>
|
||||
@@ -3428,12 +3428,12 @@ Changelog:
|
||||
<translation type="obsolete">Παρακαλώ πληκτρολογήστε έναν έγκυρο προορισμό διαδρομής πρώτα</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="212"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="213"/>
|
||||
<source>Torrent creation</source>
|
||||
<translation>Δημιουργία τορεντ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="212"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="213"/>
|
||||
<source>Torrent was created successfully:</source>
|
||||
<translation>Τόρεντ δημιουργήθηκε επιτυχώς:</translation>
|
||||
</message>
|
||||
@@ -3458,7 +3458,7 @@ Changelog:
|
||||
<translation>Παρακαλώ πληκτρολογήστε ένα URL ανακοίνωσης</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="207"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="208"/>
|
||||
<source>Torrent creation was unsuccessful, reason: %1</source>
|
||||
<translation>Η δημιουργία τορεντ ήταν ανεπιτυχής. αιτία: %1</translation>
|
||||
</message>
|
||||
@@ -4560,7 +4560,7 @@ However, those plugins were disabled.</source>
|
||||
<context>
|
||||
<name>search_engine</name>
|
||||
<message>
|
||||
<location filename="../search.ui" line="76"/>
|
||||
<location filename="../search.ui" line="98"/>
|
||||
<source>Search</source>
|
||||
<translation>Αναζήτηση</translation>
|
||||
</message>
|
||||
@@ -4575,32 +4575,32 @@ However, those plugins were disabled.</source>
|
||||
<translation>Πρότυπο εύρεσης:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="92"/>
|
||||
<location filename="../search.ui" line="114"/>
|
||||
<source>Stop</source>
|
||||
<translation>Σταμάτησε</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="127"/>
|
||||
<location filename="../search.ui" line="149"/>
|
||||
<source>Status:</source>
|
||||
<translation>Κατάσταση:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="157"/>
|
||||
<location filename="../search.ui" line="179"/>
|
||||
<source>Stopped</source>
|
||||
<translation>Σταμάτησε</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="230"/>
|
||||
<location filename="../search.ui" line="252"/>
|
||||
<source>Results:</source>
|
||||
<translation>Αποτελέσματα:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="297"/>
|
||||
<location filename="../search.ui" line="319"/>
|
||||
<source>Download</source>
|
||||
<translation>Κατέβασμα</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="307"/>
|
||||
<location filename="../search.ui" line="329"/>
|
||||
<source>Clear</source>
|
||||
<translation>Εκκαθάριση</translation>
|
||||
</message>
|
||||
@@ -4610,7 +4610,7 @@ However, those plugins were disabled.</source>
|
||||
<translation type="obsolete">Αναβάθμιση plugin αναζήτησης</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="99"/>
|
||||
<location filename="../search.ui" line="121"/>
|
||||
<source>Search engines...</source>
|
||||
<translation>Μηχανές αναζήτησης...</translation>
|
||||
</message>
|
||||
|
@@ -1224,24 +1224,24 @@ Are you sure you want to quit qBittorrent?</source>
|
||||
<context>
|
||||
<name>PropListDelegate</name>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="122"/>
|
||||
<location filename="../PropListDelegate.h" line="119"/>
|
||||
<source>Ignored</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="123"/>
|
||||
<location filename="../PropListDelegate.h" line="120"/>
|
||||
<source>Normal</source>
|
||||
<comment>Normal (priority)</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="124"/>
|
||||
<location filename="../PropListDelegate.h" line="121"/>
|
||||
<source>High</source>
|
||||
<comment>High (priority)</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="125"/>
|
||||
<location filename="../PropListDelegate.h" line="122"/>
|
||||
<source>Maximum</source>
|
||||
<comment>Maximum (priority)</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
@@ -1766,12 +1766,12 @@ Are you sure you want to quit qBittorrent?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="212"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="213"/>
|
||||
<source>Torrent creation</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="212"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="213"/>
|
||||
<source>Torrent was created successfully:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -1786,7 +1786,7 @@ Are you sure you want to quit qBittorrent?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="207"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="208"/>
|
||||
<source>Torrent creation was unsuccessful, reason: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -2601,7 +2601,7 @@ However, those plugins were disabled.</source>
|
||||
<context>
|
||||
<name>search_engine</name>
|
||||
<message>
|
||||
<location filename="../search.ui" line="76"/>
|
||||
<location filename="../search.ui" line="98"/>
|
||||
<source>Search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -2611,37 +2611,37 @@ However, those plugins were disabled.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="92"/>
|
||||
<location filename="../search.ui" line="114"/>
|
||||
<source>Stop</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="127"/>
|
||||
<location filename="../search.ui" line="149"/>
|
||||
<source>Status:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="157"/>
|
||||
<location filename="../search.ui" line="179"/>
|
||||
<source>Stopped</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="230"/>
|
||||
<location filename="../search.ui" line="252"/>
|
||||
<source>Results:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="297"/>
|
||||
<location filename="../search.ui" line="319"/>
|
||||
<source>Download</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="307"/>
|
||||
<location filename="../search.ui" line="329"/>
|
||||
<source>Clear</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="99"/>
|
||||
<location filename="../search.ui" line="121"/>
|
||||
<source>Search engines...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
Binary file not shown.
@@ -1006,7 +1006,7 @@ Copyright © 2006 por Christophe Dumez<br>
|
||||
<message>
|
||||
<location filename="../options.ui" line="162"/>
|
||||
<source>System default</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Por defecto del systema</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@@ -1859,7 +1859,7 @@ Por favor cierra el otro antes.</translation>
|
||||
<location filename="../GUI.cpp" line="726"/>
|
||||
<source>'%1' was removed.</source>
|
||||
<comment>'xxx.avi' was removed.</comment>
|
||||
<translation>'%1' fué removido.</translation>
|
||||
<translation>'%1' fue removido.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="" line="7471221"/>
|
||||
@@ -1941,7 +1941,7 @@ Por favor cierra el otro antes.</translation>
|
||||
<location filename="../GUI.cpp" line="268"/>
|
||||
<source>An error occured when trying to read or write %1. The disk is probably full, download has been paused</source>
|
||||
<comment>e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused</comment>
|
||||
<translation>Un error ocurrió mientras se intentaba leer o escribir %1. El disco tal vez esté lleno, la descarga fué pausada</translation>
|
||||
<translation>Un error ocurrió mientras se intentaba leer o escribir %1. El disco tal vez esté lleno, la descarga fue pausada</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="" line="7471221"/>
|
||||
@@ -2145,7 +2145,7 @@ Are you sure you want to quit qBittorrent?</source>
|
||||
<location filename="../GUI.cpp" line="661"/>
|
||||
<source>'%1' was removed permanently.</source>
|
||||
<comment>'xxx.avi' was removed permanently.</comment>
|
||||
<translation>'%1' fué borrado permanentemente.</translation>
|
||||
<translation>'%1' fue borrado permanentemente.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="" line="7471221"/>
|
||||
@@ -2168,7 +2168,7 @@ Are you sure you want to quit qBittorrent?</source>
|
||||
<location filename="../GUI.cpp" line="672"/>
|
||||
<source>'%1' was removed because its ratio reached the maximum value you set.</source>
|
||||
<comment>%1 is a file name</comment>
|
||||
<translation>'%1' fué eliminado porque su radio llegó al valor máximo que estableciste.</translation>
|
||||
<translation>'%1' fue eliminado porque su radio llegó al valor máximo que estableciste.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../GUI.cpp" line="840"/>
|
||||
@@ -2528,24 +2528,24 @@ Are you sure you want to quit qBittorrent?</source>
|
||||
<translation type="obsolete">Verdadero</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="122"/>
|
||||
<location filename="../PropListDelegate.h" line="119"/>
|
||||
<source>Ignored</source>
|
||||
<translation>Ignorado</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="123"/>
|
||||
<location filename="../PropListDelegate.h" line="120"/>
|
||||
<source>Normal</source>
|
||||
<comment>Normal (priority)</comment>
|
||||
<translation>Normal</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="124"/>
|
||||
<location filename="../PropListDelegate.h" line="121"/>
|
||||
<source>High</source>
|
||||
<comment>High (priority)</comment>
|
||||
<translation>Alta</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="125"/>
|
||||
<location filename="../PropListDelegate.h" line="122"/>
|
||||
<source>Maximum</source>
|
||||
<comment>Maximum (priority)</comment>
|
||||
<translation>Máxima</translation>
|
||||
@@ -3357,12 +3357,12 @@ Log:
|
||||
<translation type="obsolete">Por favor escribe una ruta de entrada correcta primero</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="212"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="213"/>
|
||||
<source>Torrent creation</source>
|
||||
<translation>Crear Torrent</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="212"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="213"/>
|
||||
<source>Torrent was created successfully:</source>
|
||||
<translation>El Torrent se creó con éxito:</translation>
|
||||
</message>
|
||||
@@ -3387,7 +3387,7 @@ Log:
|
||||
<translation>Por favor escribe una URL de anuncio</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="207"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="208"/>
|
||||
<source>Torrent creation was unsuccessful, reason: %1</source>
|
||||
<translation>La creación del torrent no ha sido exitosa, razón: %1</translation>
|
||||
</message>
|
||||
@@ -3706,13 +3706,13 @@ De cualquier forma, esos plugins fueron deshabilitados.</translation>
|
||||
<location filename="../engineSelectDlg.cpp" line="510"/>
|
||||
<source>%1 search engine plugin was successfully updated.</source>
|
||||
<comment>%1 is the name of the search engine</comment>
|
||||
<translation>El plugin de motor de búsqueda %1 fué actualizado exitosamente.</translation>
|
||||
<translation>El plugin de motor de búsqueda %1 fue actualizado exitosamente.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../engineSelectDlg.cpp" line="513"/>
|
||||
<source>%1 search engine plugin was successfully installed.</source>
|
||||
<comment>%1 is the name of the search engine</comment>
|
||||
<translation>El plugin de motor de búsqueda %1 fué instalado exitosamente.</translation>
|
||||
<translation>El plugin de motor de búsqueda %1 fue instalado exitosamente.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="" line="7471221"/>
|
||||
@@ -4522,7 +4522,7 @@ De cualquier forma, esos plugins fueron deshabilitados.</translation>
|
||||
<context>
|
||||
<name>search_engine</name>
|
||||
<message>
|
||||
<location filename="../search.ui" line="76"/>
|
||||
<location filename="../search.ui" line="98"/>
|
||||
<source>Search</source>
|
||||
<translation>Buscar</translation>
|
||||
</message>
|
||||
@@ -4537,32 +4537,32 @@ De cualquier forma, esos plugins fueron deshabilitados.</translation>
|
||||
<translation>Patrón de Búsqueda:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="92"/>
|
||||
<location filename="../search.ui" line="114"/>
|
||||
<source>Stop</source>
|
||||
<translation>Detenido</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="127"/>
|
||||
<location filename="../search.ui" line="149"/>
|
||||
<source>Status:</source>
|
||||
<translation>Estado:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="157"/>
|
||||
<location filename="../search.ui" line="179"/>
|
||||
<source>Stopped</source>
|
||||
<translation>Detenido</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="230"/>
|
||||
<location filename="../search.ui" line="252"/>
|
||||
<source>Results:</source>
|
||||
<translation>Resultados:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="297"/>
|
||||
<location filename="../search.ui" line="319"/>
|
||||
<source>Download</source>
|
||||
<translation>Descargar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="307"/>
|
||||
<location filename="../search.ui" line="329"/>
|
||||
<source>Clear</source>
|
||||
<translation>Limpiar</translation>
|
||||
</message>
|
||||
@@ -4572,7 +4572,7 @@ De cualquier forma, esos plugins fueron deshabilitados.</translation>
|
||||
<translation type="obsolete">Actualizar plugin de búsqueda</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="99"/>
|
||||
<location filename="../search.ui" line="121"/>
|
||||
<source>Search engines...</source>
|
||||
<translation>Motores de búsqueda...</translation>
|
||||
</message>
|
||||
@@ -4640,12 +4640,12 @@ De cualquier forma, esos plugins fueron deshabilitados.</translation>
|
||||
<message>
|
||||
<location filename="../downloadThread.cpp" line="31"/>
|
||||
<source>File was not found (404)</source>
|
||||
<translation>El archivo no fué encontrado (404)</translation>
|
||||
<translation>El archivo no fue encontrado (404)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../downloadThread.cpp" line="33"/>
|
||||
<source>Connection was denied</source>
|
||||
<translation>La conexión fué negada</translation>
|
||||
<translation>La conexión fue negada</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../downloadThread.cpp" line="35"/>
|
||||
|
@@ -2011,24 +2011,24 @@ Are you sure you want to quit qBittorrent?</source>
|
||||
<translation type="obsolete">Kyllä</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="122"/>
|
||||
<location filename="../PropListDelegate.h" line="119"/>
|
||||
<source>Ignored</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="123"/>
|
||||
<location filename="../PropListDelegate.h" line="120"/>
|
||||
<source>Normal</source>
|
||||
<comment>Normal (priority)</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="124"/>
|
||||
<location filename="../PropListDelegate.h" line="121"/>
|
||||
<source>High</source>
|
||||
<comment>High (priority)</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="125"/>
|
||||
<location filename="../PropListDelegate.h" line="122"/>
|
||||
<source>Maximum</source>
|
||||
<comment>Maximum (priority)</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
@@ -2742,7 +2742,7 @@ Muutoshistoria:
|
||||
<translation type="obsolete">Valitse lähdekansio tai -tiedosto</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="212"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="213"/>
|
||||
<source>Torrent creation</source>
|
||||
<translation>Torrentin luominen</translation>
|
||||
</message>
|
||||
@@ -2752,7 +2752,7 @@ Muutoshistoria:
|
||||
<translation>Torrent-tiedostot</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="212"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="213"/>
|
||||
<source>Torrent was created successfully:</source>
|
||||
<translation>Torrent luotiin:</translation>
|
||||
</message>
|
||||
@@ -2767,7 +2767,7 @@ Muutoshistoria:
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="207"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="208"/>
|
||||
<source>Torrent creation was unsuccessful, reason: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -3752,7 +3752,7 @@ However, those plugins were disabled.</source>
|
||||
<context>
|
||||
<name>search_engine</name>
|
||||
<message>
|
||||
<location filename="../search.ui" line="76"/>
|
||||
<location filename="../search.ui" line="98"/>
|
||||
<source>Search</source>
|
||||
<translation type="unfinished">Etsi</translation>
|
||||
</message>
|
||||
@@ -3767,32 +3767,32 @@ However, those plugins were disabled.</source>
|
||||
<translation type="unfinished">Hakulauseke:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="92"/>
|
||||
<location filename="../search.ui" line="114"/>
|
||||
<source>Stop</source>
|
||||
<translation type="unfinished">Pysäytä</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="127"/>
|
||||
<location filename="../search.ui" line="149"/>
|
||||
<source>Status:</source>
|
||||
<translation type="unfinished">Tila:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="157"/>
|
||||
<location filename="../search.ui" line="179"/>
|
||||
<source>Stopped</source>
|
||||
<translation type="unfinished">Pysäytetty</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="230"/>
|
||||
<location filename="../search.ui" line="252"/>
|
||||
<source>Results:</source>
|
||||
<translation type="unfinished">Tulokset:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="297"/>
|
||||
<location filename="../search.ui" line="319"/>
|
||||
<source>Download</source>
|
||||
<translation type="unfinished">Lataa</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="307"/>
|
||||
<location filename="../search.ui" line="329"/>
|
||||
<source>Clear</source>
|
||||
<translation type="unfinished">Tyhjennä</translation>
|
||||
</message>
|
||||
@@ -3802,7 +3802,7 @@ However, those plugins were disabled.</source>
|
||||
<translation type="obsolete">Päivitä hakuliitännäinen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="99"/>
|
||||
<location filename="../search.ui" line="121"/>
|
||||
<source>Search engines...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
Binary file not shown.
@@ -2687,24 +2687,24 @@ Etes-vous certain de vouloir quitter qBittorrent ?</translation>
|
||||
<translation type="obsolete">Oui</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="122"/>
|
||||
<location filename="../PropListDelegate.h" line="119"/>
|
||||
<source>Ignored</source>
|
||||
<translation>Ignoré</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="123"/>
|
||||
<location filename="../PropListDelegate.h" line="120"/>
|
||||
<source>Normal</source>
|
||||
<comment>Normal (priority)</comment>
|
||||
<translation>Normale</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="124"/>
|
||||
<location filename="../PropListDelegate.h" line="121"/>
|
||||
<source>High</source>
|
||||
<comment>High (priority)</comment>
|
||||
<translation>Haute</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="125"/>
|
||||
<location filename="../PropListDelegate.h" line="122"/>
|
||||
<source>Maximum</source>
|
||||
<comment>Maximum (priority)</comment>
|
||||
<translation>Maximale</translation>
|
||||
@@ -3541,12 +3541,12 @@ Changements:
|
||||
<translation type="obsolete">Veuillez vérifier la chemin du fichier/dossier à inclure</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="212"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="213"/>
|
||||
<source>Torrent creation</source>
|
||||
<translation>Création d'un torrent</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="212"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="213"/>
|
||||
<source>Torrent was created successfully:</source>
|
||||
<translation>Le torrent a été créé avec succès :</translation>
|
||||
</message>
|
||||
@@ -3581,7 +3581,7 @@ Changements:
|
||||
<translation type="obsolete">URL du tracker :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="207"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="208"/>
|
||||
<source>Torrent creation was unsuccessful, reason: %1</source>
|
||||
<translation>La création du torrent a échoué, raison : %1</translation>
|
||||
</message>
|
||||
@@ -4611,7 +4611,7 @@ Cependant, les greffons en question ont été désactivés.</translation>
|
||||
<message>
|
||||
<location filename="../properties_imp.cpp" line="37"/>
|
||||
<source>High: higher than normal priority. Pieces are preferred over pieces with the same availability, but not over pieces with lower availability</source>
|
||||
<translation>Elevée : Priorité supérieure à la normale. Les morceaux sont préférés aux autres possédant la même disponibilité, mais pas par rapport à ceux qui ont une disponibilité plus faible</translation>
|
||||
<translation>Haute : Priorité supérieure à la normale. Les morceaux sont préférés aux autres possédant la même disponibilité, mais pas par rapport à ceux qui ont une disponibilité plus faible</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../properties_imp.cpp" line="37"/>
|
||||
@@ -4719,7 +4719,7 @@ Cependant, les greffons en question ont été désactivés.</translation>
|
||||
<context>
|
||||
<name>search_engine</name>
|
||||
<message>
|
||||
<location filename="../search.ui" line="76"/>
|
||||
<location filename="../search.ui" line="98"/>
|
||||
<source>Search</source>
|
||||
<translation>Recherche</translation>
|
||||
</message>
|
||||
@@ -4734,32 +4734,32 @@ Cependant, les greffons en question ont été désactivés.</translation>
|
||||
<translation>Motif de recherche :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="92"/>
|
||||
<location filename="../search.ui" line="114"/>
|
||||
<source>Stop</source>
|
||||
<translation>Stopper</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="127"/>
|
||||
<location filename="../search.ui" line="149"/>
|
||||
<source>Status:</source>
|
||||
<translation>Statut :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="157"/>
|
||||
<location filename="../search.ui" line="179"/>
|
||||
<source>Stopped</source>
|
||||
<translation>Stoppé</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="230"/>
|
||||
<location filename="../search.ui" line="252"/>
|
||||
<source>Results:</source>
|
||||
<translation>Résultats :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="297"/>
|
||||
<location filename="../search.ui" line="319"/>
|
||||
<source>Download</source>
|
||||
<translation>Télécharger</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="307"/>
|
||||
<location filename="../search.ui" line="329"/>
|
||||
<source>Clear</source>
|
||||
<translation>Vider</translation>
|
||||
</message>
|
||||
@@ -4769,7 +4769,7 @@ Cependant, les greffons en question ont été désactivés.</translation>
|
||||
<translation type="obsolete">Mettre à jour le greffon de recherche</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="99"/>
|
||||
<location filename="../search.ui" line="121"/>
|
||||
<source>Search engines...</source>
|
||||
<translation>Moteurs de recherche...</translation>
|
||||
</message>
|
||||
|
@@ -1747,24 +1747,24 @@ Mégis leállítod a qBittorrentet?</translation>
|
||||
<context>
|
||||
<name>PropListDelegate</name>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="122"/>
|
||||
<location filename="../PropListDelegate.h" line="119"/>
|
||||
<source>Ignored</source>
|
||||
<translation>Mellőzve</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="123"/>
|
||||
<location filename="../PropListDelegate.h" line="120"/>
|
||||
<source>Normal</source>
|
||||
<comment>Normal (priority)</comment>
|
||||
<translation>Átlagos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="124"/>
|
||||
<location filename="../PropListDelegate.h" line="121"/>
|
||||
<source>High</source>
|
||||
<comment>High (priority)</comment>
|
||||
<translation>Magas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="125"/>
|
||||
<location filename="../PropListDelegate.h" line="122"/>
|
||||
<source>Maximum</source>
|
||||
<comment>Maximum (priority)</comment>
|
||||
<translation>Maximális</translation>
|
||||
@@ -2410,12 +2410,12 @@ Changelog:
|
||||
<translation>Kérlek adj meg forrásmappát</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="212"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="213"/>
|
||||
<source>Torrent creation</source>
|
||||
<translation>Torrent létrehozása</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="212"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="213"/>
|
||||
<source>Torrent was created successfully:</source>
|
||||
<translation>Torrent sikeresen elkészült:):</translation>
|
||||
</message>
|
||||
@@ -2435,7 +2435,7 @@ Changelog:
|
||||
<translation>Kérlek add meg a gazda címét (URL)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="207"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="208"/>
|
||||
<source>Torrent creation was unsuccessful, reason: %1</source>
|
||||
<translation>Torrent készítése sikertelen:(, oka: %1</translation>
|
||||
</message>
|
||||
@@ -3275,7 +3275,7 @@ Viszont azok a modulok kikapcsolhatóak.</translation>
|
||||
<context>
|
||||
<name>search_engine</name>
|
||||
<message>
|
||||
<location filename="../search.ui" line="76"/>
|
||||
<location filename="../search.ui" line="98"/>
|
||||
<source>Search</source>
|
||||
<translation>Keresés</translation>
|
||||
</message>
|
||||
@@ -3290,32 +3290,32 @@ Viszont azok a modulok kikapcsolhatóak.</translation>
|
||||
<translation>Kulcsszó:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="92"/>
|
||||
<location filename="../search.ui" line="114"/>
|
||||
<source>Stop</source>
|
||||
<translation>Állj</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="127"/>
|
||||
<location filename="../search.ui" line="149"/>
|
||||
<source>Status:</source>
|
||||
<translation>Állapot:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="157"/>
|
||||
<location filename="../search.ui" line="179"/>
|
||||
<source>Stopped</source>
|
||||
<translation>Megállítva</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="230"/>
|
||||
<location filename="../search.ui" line="252"/>
|
||||
<source>Results:</source>
|
||||
<translation>Eredmény:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="297"/>
|
||||
<location filename="../search.ui" line="319"/>
|
||||
<source>Download</source>
|
||||
<translation>Letöltés</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="307"/>
|
||||
<location filename="../search.ui" line="329"/>
|
||||
<source>Clear</source>
|
||||
<translation>Törlés</translation>
|
||||
</message>
|
||||
@@ -3325,7 +3325,7 @@ Viszont azok a modulok kikapcsolhatóak.</translation>
|
||||
<translation type="obsolete">Kereső modul frissítése</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="99"/>
|
||||
<location filename="../search.ui" line="121"/>
|
||||
<source>Search engines...</source>
|
||||
<translation>Keresők...</translation>
|
||||
</message>
|
||||
|
@@ -2241,24 +2241,24 @@ Sei sicuro di voler uscire da qBittorrent?</translation>
|
||||
<translation type="obsolete">Vero</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="122"/>
|
||||
<location filename="../PropListDelegate.h" line="119"/>
|
||||
<source>Ignored</source>
|
||||
<translation>Ignora</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="123"/>
|
||||
<location filename="../PropListDelegate.h" line="120"/>
|
||||
<source>Normal</source>
|
||||
<comment>Normal (priority)</comment>
|
||||
<translation>Normale</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="124"/>
|
||||
<location filename="../PropListDelegate.h" line="121"/>
|
||||
<source>High</source>
|
||||
<comment>High (priority)</comment>
|
||||
<translation>Alta</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="125"/>
|
||||
<location filename="../PropListDelegate.h" line="122"/>
|
||||
<source>Maximum</source>
|
||||
<comment>Maximum (priority)</comment>
|
||||
<translation>Massima</translation>
|
||||
@@ -3032,12 +3032,12 @@ Changelog:
|
||||
<translation type="obsolete">Per favore inserire un percorso da aggiungere corretto</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="212"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="213"/>
|
||||
<source>Torrent creation</source>
|
||||
<translation>Creazione di un torrent</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="212"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="213"/>
|
||||
<source>Torrent was created successfully:</source>
|
||||
<translation>Il torrent è stato creato correttamente:</translation>
|
||||
</message>
|
||||
@@ -3057,7 +3057,7 @@ Changelog:
|
||||
<translation>Per favore digitare un URL di annuncio</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="207"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="208"/>
|
||||
<source>Torrent creation was unsuccessful, reason: %1</source>
|
||||
<translation>Creazione torrent fallita, motivo: %1</translation>
|
||||
</message>
|
||||
@@ -4114,7 +4114,7 @@ Comunque, quei plugin sono stati disabilitati.</translation>
|
||||
<context>
|
||||
<name>search_engine</name>
|
||||
<message>
|
||||
<location filename="../search.ui" line="76"/>
|
||||
<location filename="../search.ui" line="98"/>
|
||||
<source>Search</source>
|
||||
<translation>Ricerca</translation>
|
||||
</message>
|
||||
@@ -4129,32 +4129,32 @@ Comunque, quei plugin sono stati disabilitati.</translation>
|
||||
<translation>Campo di ricerca:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="92"/>
|
||||
<location filename="../search.ui" line="114"/>
|
||||
<source>Stop</source>
|
||||
<translation>Ferma</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="127"/>
|
||||
<location filename="../search.ui" line="149"/>
|
||||
<source>Status:</source>
|
||||
<translation>Stato:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="157"/>
|
||||
<location filename="../search.ui" line="179"/>
|
||||
<source>Stopped</source>
|
||||
<translation>Fermato</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="230"/>
|
||||
<location filename="../search.ui" line="252"/>
|
||||
<source>Results:</source>
|
||||
<translation>Risultati:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="297"/>
|
||||
<location filename="../search.ui" line="319"/>
|
||||
<source>Download</source>
|
||||
<translation>Download</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="307"/>
|
||||
<location filename="../search.ui" line="329"/>
|
||||
<source>Clear</source>
|
||||
<translation>Pulisci</translation>
|
||||
</message>
|
||||
@@ -4164,7 +4164,7 @@ Comunque, quei plugin sono stati disabilitati.</translation>
|
||||
<translation type="obsolete">Aggiorna plugin di ricerca</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="99"/>
|
||||
<location filename="../search.ui" line="121"/>
|
||||
<source>Search engines...</source>
|
||||
<translation>Motori di ricerca...</translation>
|
||||
</message>
|
||||
|
@@ -1812,24 +1812,24 @@ qBittorrent を終了してもよろしいですか?</translation>
|
||||
<translation type="obsolete">True</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="122"/>
|
||||
<location filename="../PropListDelegate.h" line="119"/>
|
||||
<source>Ignored</source>
|
||||
<translation>無視済み</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="123"/>
|
||||
<location filename="../PropListDelegate.h" line="120"/>
|
||||
<source>Normal</source>
|
||||
<comment>Normal (priority)</comment>
|
||||
<translation>通常</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="124"/>
|
||||
<location filename="../PropListDelegate.h" line="121"/>
|
||||
<source>High</source>
|
||||
<comment>High (priority)</comment>
|
||||
<translation>高</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="125"/>
|
||||
<location filename="../PropListDelegate.h" line="122"/>
|
||||
<source>Maximum</source>
|
||||
<comment>Maximum (priority)</comment>
|
||||
<translation>最大</translation>
|
||||
@@ -2608,12 +2608,12 @@ Changelog:
|
||||
<translation type="obsolete">入力パスが存在しません</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="212"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="213"/>
|
||||
<source>Torrent creation</source>
|
||||
<translation>Torrent の作成</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="212"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="213"/>
|
||||
<source>Torrent was created successfully:</source>
|
||||
<translation>Torrent の作成に成功しました:</translation>
|
||||
</message>
|
||||
@@ -2658,7 +2658,7 @@ Changelog:
|
||||
<translation type="obsolete">URL シード:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="207"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="208"/>
|
||||
<source>Torrent creation was unsuccessful, reason: %1</source>
|
||||
<translation>Torrent の作成に成功しませんでした、理由: %1</translation>
|
||||
</message>
|
||||
@@ -3545,7 +3545,7 @@ However, those plugins were disabled.</source>
|
||||
<context>
|
||||
<name>search_engine</name>
|
||||
<message>
|
||||
<location filename="../search.ui" line="76"/>
|
||||
<location filename="../search.ui" line="98"/>
|
||||
<source>Search</source>
|
||||
<translation>検索</translation>
|
||||
</message>
|
||||
@@ -3560,32 +3560,32 @@ However, those plugins were disabled.</source>
|
||||
<translation>検索パターン:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="92"/>
|
||||
<location filename="../search.ui" line="114"/>
|
||||
<source>Stop</source>
|
||||
<translation>停止</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="127"/>
|
||||
<location filename="../search.ui" line="149"/>
|
||||
<source>Status:</source>
|
||||
<translation>状態:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="157"/>
|
||||
<location filename="../search.ui" line="179"/>
|
||||
<source>Stopped</source>
|
||||
<translation>停止されました</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="230"/>
|
||||
<location filename="../search.ui" line="252"/>
|
||||
<source>Results:</source>
|
||||
<translation>結果:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="297"/>
|
||||
<location filename="../search.ui" line="319"/>
|
||||
<source>Download</source>
|
||||
<translation>ダウンロード</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="307"/>
|
||||
<location filename="../search.ui" line="329"/>
|
||||
<source>Clear</source>
|
||||
<translation>クリア</translation>
|
||||
</message>
|
||||
@@ -3595,7 +3595,7 @@ However, those plugins were disabled.</source>
|
||||
<translation type="obsolete">検索プラグインの更新</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="99"/>
|
||||
<location filename="../search.ui" line="121"/>
|
||||
<source>Search engines...</source>
|
||||
<translation>検索エンジン...</translation>
|
||||
</message>
|
||||
|
@@ -2542,24 +2542,24 @@ Are you sure you want to quit qBittorrent?</source>
|
||||
<translation type="obsolete">맞음</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="122"/>
|
||||
<location filename="../PropListDelegate.h" line="119"/>
|
||||
<source>Ignored</source>
|
||||
<translation>무시</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="123"/>
|
||||
<location filename="../PropListDelegate.h" line="120"/>
|
||||
<source>Normal</source>
|
||||
<comment>Normal (priority)</comment>
|
||||
<translation>보통</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="124"/>
|
||||
<location filename="../PropListDelegate.h" line="121"/>
|
||||
<source>High</source>
|
||||
<comment>High (priority)</comment>
|
||||
<translation>높음</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="125"/>
|
||||
<location filename="../PropListDelegate.h" line="122"/>
|
||||
<source>Maximum</source>
|
||||
<comment>Maximum (priority)</comment>
|
||||
<translation>최고</translation>
|
||||
@@ -3371,12 +3371,12 @@ Changelog:
|
||||
<translation type="obsolete">변환할 파일 경로를 재설정해 주십시오</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="212"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="213"/>
|
||||
<source>Torrent creation</source>
|
||||
<translation>토렌트 생성</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="212"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="213"/>
|
||||
<source>Torrent was created successfully:</source>
|
||||
<translation>토렌트가 성공적으로 생성되었습니다:</translation>
|
||||
</message>
|
||||
@@ -3401,7 +3401,7 @@ Changelog:
|
||||
<translation>발표되는 주소(announce URL)를 입력해 주십시오</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="207"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="208"/>
|
||||
<source>Torrent creation was unsuccessful, reason: %1</source>
|
||||
<translation>토렌트 생성이 실패하였습니다, 이유: %1</translation>
|
||||
</message>
|
||||
@@ -4498,7 +4498,7 @@ However, those plugins were disabled.</source>
|
||||
<context>
|
||||
<name>search_engine</name>
|
||||
<message>
|
||||
<location filename="../search.ui" line="76"/>
|
||||
<location filename="../search.ui" line="98"/>
|
||||
<source>Search</source>
|
||||
<translation>검색</translation>
|
||||
</message>
|
||||
@@ -4513,32 +4513,32 @@ However, those plugins were disabled.</source>
|
||||
<translation>검색 양식:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="92"/>
|
||||
<location filename="../search.ui" line="114"/>
|
||||
<source>Stop</source>
|
||||
<translation>정지</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="127"/>
|
||||
<location filename="../search.ui" line="149"/>
|
||||
<source>Status:</source>
|
||||
<translation>상태:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="157"/>
|
||||
<location filename="../search.ui" line="179"/>
|
||||
<source>Stopped</source>
|
||||
<translation>정지됨</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="230"/>
|
||||
<location filename="../search.ui" line="252"/>
|
||||
<source>Results:</source>
|
||||
<translation>결과:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="297"/>
|
||||
<location filename="../search.ui" line="319"/>
|
||||
<source>Download</source>
|
||||
<translation>다운로드</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="307"/>
|
||||
<location filename="../search.ui" line="329"/>
|
||||
<source>Clear</source>
|
||||
<translation>모두 지우기</translation>
|
||||
</message>
|
||||
@@ -4548,7 +4548,7 @@ However, those plugins were disabled.</source>
|
||||
<translation type="obsolete">검색 plugin 업데이트</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="99"/>
|
||||
<location filename="../search.ui" line="121"/>
|
||||
<source>Search engines...</source>
|
||||
<translation>검색 엔진...</translation>
|
||||
</message>
|
||||
|
@@ -2114,24 +2114,24 @@ Are you sure you want to quit qBittorrent?</source>
|
||||
<translation type="obsolete">Ja</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="122"/>
|
||||
<location filename="../PropListDelegate.h" line="119"/>
|
||||
<source>Ignored</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="123"/>
|
||||
<location filename="../PropListDelegate.h" line="120"/>
|
||||
<source>Normal</source>
|
||||
<comment>Normal (priority)</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="124"/>
|
||||
<location filename="../PropListDelegate.h" line="121"/>
|
||||
<source>High</source>
|
||||
<comment>High (priority)</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="125"/>
|
||||
<location filename="../PropListDelegate.h" line="122"/>
|
||||
<source>Maximum</source>
|
||||
<comment>Maximum (priority)</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
@@ -2874,12 +2874,12 @@ Endringer:</translation>
|
||||
<translation type="obsolete">Vennligst skriv en gyldig filsti til inndataene først</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="212"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="213"/>
|
||||
<source>Torrent creation</source>
|
||||
<translation>Torrentfilen blir opprettet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="212"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="213"/>
|
||||
<source>Torrent was created successfully:</source>
|
||||
<translation>Vellykket opprettelse av torrentfil:</translation>
|
||||
</message>
|
||||
@@ -2899,7 +2899,7 @@ Endringer:</translation>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="207"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="208"/>
|
||||
<source>Torrent creation was unsuccessful, reason: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -3914,7 +3914,7 @@ However, those plugins were disabled.</source>
|
||||
<context>
|
||||
<name>search_engine</name>
|
||||
<message>
|
||||
<location filename="../search.ui" line="76"/>
|
||||
<location filename="../search.ui" line="98"/>
|
||||
<source>Search</source>
|
||||
<translation type="unfinished">Søk</translation>
|
||||
</message>
|
||||
@@ -3929,32 +3929,32 @@ However, those plugins were disabled.</source>
|
||||
<translation type="unfinished">Søketekst:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="92"/>
|
||||
<location filename="../search.ui" line="114"/>
|
||||
<source>Stop</source>
|
||||
<translation type="unfinished">Stopp</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="127"/>
|
||||
<location filename="../search.ui" line="149"/>
|
||||
<source>Status:</source>
|
||||
<translation type="unfinished">Status:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="157"/>
|
||||
<location filename="../search.ui" line="179"/>
|
||||
<source>Stopped</source>
|
||||
<translation type="unfinished">Stoppet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="230"/>
|
||||
<location filename="../search.ui" line="252"/>
|
||||
<source>Results:</source>
|
||||
<translation type="unfinished">Resultater:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="297"/>
|
||||
<location filename="../search.ui" line="319"/>
|
||||
<source>Download</source>
|
||||
<translation type="unfinished">Last ned</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="307"/>
|
||||
<location filename="../search.ui" line="329"/>
|
||||
<source>Clear</source>
|
||||
<translation type="unfinished">Nullstill</translation>
|
||||
</message>
|
||||
@@ -3964,7 +3964,7 @@ However, those plugins were disabled.</source>
|
||||
<translation type="obsolete">Oppdater søkeprogramtillegget</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="99"/>
|
||||
<location filename="../search.ui" line="121"/>
|
||||
<source>Search engines...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@@ -2498,24 +2498,24 @@ Weet u zeker dat u qBittorrent wilt afsluiten?</translation>
|
||||
<translation type="obsolete">Waar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="122"/>
|
||||
<location filename="../PropListDelegate.h" line="119"/>
|
||||
<source>Ignored</source>
|
||||
<translation>Genegeerd</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="123"/>
|
||||
<location filename="../PropListDelegate.h" line="120"/>
|
||||
<source>Normal</source>
|
||||
<comment>Normal (priority)</comment>
|
||||
<translation>Normaal</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="124"/>
|
||||
<location filename="../PropListDelegate.h" line="121"/>
|
||||
<source>High</source>
|
||||
<comment>High (priority)</comment>
|
||||
<translation>Hoog</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="125"/>
|
||||
<location filename="../PropListDelegate.h" line="122"/>
|
||||
<source>Maximum</source>
|
||||
<comment>Maximum (priority)</comment>
|
||||
<translation>Maximum</translation>
|
||||
@@ -3297,12 +3297,12 @@ Changelog:
|
||||
<translation type="obsolete">Geef alstublieft eerst een geldig bron pad</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="212"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="213"/>
|
||||
<source>Torrent creation</source>
|
||||
<translation>Torrent maken</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="212"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="213"/>
|
||||
<source>Torrent was created successfully:</source>
|
||||
<translation>Torrent was succesvol gemaakt:</translation>
|
||||
</message>
|
||||
@@ -3327,7 +3327,7 @@ Changelog:
|
||||
<translation>Type een announce URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="207"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="208"/>
|
||||
<source>Torrent creation was unsuccessful, reason: %1</source>
|
||||
<translation>Fout tijdens het maken van torrent, reden: %1</translation>
|
||||
</message>
|
||||
@@ -4431,7 +4431,7 @@ selecteer alstublieft een er van:</translation>
|
||||
<context>
|
||||
<name>search_engine</name>
|
||||
<message>
|
||||
<location filename="../search.ui" line="76"/>
|
||||
<location filename="../search.ui" line="98"/>
|
||||
<source>Search</source>
|
||||
<translation>Zoeken</translation>
|
||||
</message>
|
||||
@@ -4446,32 +4446,32 @@ selecteer alstublieft een er van:</translation>
|
||||
<translation>Zoekpatroon:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="92"/>
|
||||
<location filename="../search.ui" line="114"/>
|
||||
<source>Stop</source>
|
||||
<translation>Stop</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="127"/>
|
||||
<location filename="../search.ui" line="149"/>
|
||||
<source>Status:</source>
|
||||
<translation>Status:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="157"/>
|
||||
<location filename="../search.ui" line="179"/>
|
||||
<source>Stopped</source>
|
||||
<translation>Gestopt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="230"/>
|
||||
<location filename="../search.ui" line="252"/>
|
||||
<source>Results:</source>
|
||||
<translation>Resultaten:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="297"/>
|
||||
<location filename="../search.ui" line="319"/>
|
||||
<source>Download</source>
|
||||
<translation>Download</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="307"/>
|
||||
<location filename="../search.ui" line="329"/>
|
||||
<source>Clear</source>
|
||||
<translation>Wissen</translation>
|
||||
</message>
|
||||
@@ -4481,7 +4481,7 @@ selecteer alstublieft een er van:</translation>
|
||||
<translation type="obsolete">Zoeken plugin bijwerken</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="99"/>
|
||||
<location filename="../search.ui" line="121"/>
|
||||
<source>Search engines...</source>
|
||||
<translation>Zoekmachines...</translation>
|
||||
</message>
|
||||
|
@@ -2591,24 +2591,24 @@ Czy napewno zamknąć qBittorrent?</translation>
|
||||
<translation type="obsolete">Tak</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="122"/>
|
||||
<location filename="../PropListDelegate.h" line="119"/>
|
||||
<source>Ignored</source>
|
||||
<translation>Ignorowany</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="123"/>
|
||||
<location filename="../PropListDelegate.h" line="120"/>
|
||||
<source>Normal</source>
|
||||
<comment>Normal (priority)</comment>
|
||||
<translation>Normalny</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="124"/>
|
||||
<location filename="../PropListDelegate.h" line="121"/>
|
||||
<source>High</source>
|
||||
<comment>High (priority)</comment>
|
||||
<translation>Wysoki</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="125"/>
|
||||
<location filename="../PropListDelegate.h" line="122"/>
|
||||
<source>Maximum</source>
|
||||
<comment>Maximum (priority)</comment>
|
||||
<translation>Maksymalny</translation>
|
||||
@@ -3436,12 +3436,12 @@ Zmiany:
|
||||
<translation type="obsolete">Proszę podać poprawną ścieżkę źródłową</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="212"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="213"/>
|
||||
<source>Torrent creation</source>
|
||||
<translation>Tworzenie torrent-a</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="212"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="213"/>
|
||||
<source>Torrent was created successfully:</source>
|
||||
<translation>Utworzono plik torrent:</translation>
|
||||
</message>
|
||||
@@ -3466,7 +3466,7 @@ Zmiany:
|
||||
<translation>Sprecyzuj adres URL trackera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="207"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="208"/>
|
||||
<source>Torrent creation was unsuccessful, reason: %1</source>
|
||||
<translation>Nie udało się stworzyć torrenta , powód: %1</translation>
|
||||
</message>
|
||||
@@ -4568,7 +4568,7 @@ Jednak tamte wtyczki były wyłączone.</translation>
|
||||
<context>
|
||||
<name>search_engine</name>
|
||||
<message>
|
||||
<location filename="../search.ui" line="76"/>
|
||||
<location filename="../search.ui" line="98"/>
|
||||
<source>Search</source>
|
||||
<translation>Szukaj</translation>
|
||||
</message>
|
||||
@@ -4583,32 +4583,32 @@ Jednak tamte wtyczki były wyłączone.</translation>
|
||||
<translation>Wzorzec wyszukiwania:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="92"/>
|
||||
<location filename="../search.ui" line="114"/>
|
||||
<source>Stop</source>
|
||||
<translation>Stop</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="127"/>
|
||||
<location filename="../search.ui" line="149"/>
|
||||
<source>Status:</source>
|
||||
<translation>Status:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="157"/>
|
||||
<location filename="../search.ui" line="179"/>
|
||||
<source>Stopped</source>
|
||||
<translation>Zatrzymany</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="230"/>
|
||||
<location filename="../search.ui" line="252"/>
|
||||
<source>Results:</source>
|
||||
<translation>Rezultat:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="297"/>
|
||||
<location filename="../search.ui" line="319"/>
|
||||
<source>Download</source>
|
||||
<translation>Pobierz</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="307"/>
|
||||
<location filename="../search.ui" line="329"/>
|
||||
<source>Clear</source>
|
||||
<translation>Wyczyść</translation>
|
||||
</message>
|
||||
@@ -4618,7 +4618,7 @@ Jednak tamte wtyczki były wyłączone.</translation>
|
||||
<translation type="obsolete">Aktualizacja wtyczki wyszukiwania</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="99"/>
|
||||
<location filename="../search.ui" line="121"/>
|
||||
<source>Search engines...</source>
|
||||
<translation>Wyszukaj silniki wyszukiwania...</translation>
|
||||
</message>
|
||||
|
@@ -2355,24 +2355,24 @@ Deseja mesmo sair do qBittorrent?</translation>
|
||||
<translation type="obsolete">Verdadeiro</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="122"/>
|
||||
<location filename="../PropListDelegate.h" line="119"/>
|
||||
<source>Ignored</source>
|
||||
<translation>Ignorado</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="123"/>
|
||||
<location filename="../PropListDelegate.h" line="120"/>
|
||||
<source>Normal</source>
|
||||
<comment>Normal (priority)</comment>
|
||||
<translation>Normal</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="124"/>
|
||||
<location filename="../PropListDelegate.h" line="121"/>
|
||||
<source>High</source>
|
||||
<comment>High (priority)</comment>
|
||||
<translation>Alta</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="125"/>
|
||||
<location filename="../PropListDelegate.h" line="122"/>
|
||||
<source>Maximum</source>
|
||||
<comment>Maximum (priority)</comment>
|
||||
<translation>Máxima</translation>
|
||||
@@ -3282,12 +3282,12 @@ Copyright ©2007 por Christophe Dumez<br>
|
||||
<translation type="obsolete">Digite primeiro um caminho de entrada correto</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="212"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="213"/>
|
||||
<source>Torrent creation</source>
|
||||
<translation>Criação de torrent</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="212"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="213"/>
|
||||
<source>Torrent was created successfully:</source>
|
||||
<translation>Torrent foi criado com sucesso:</translation>
|
||||
</message>
|
||||
@@ -3312,7 +3312,7 @@ Copyright ©2007 por Christophe Dumez<br>
|
||||
<translation>Digite uma url anunciada</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="207"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="208"/>
|
||||
<source>Torrent creation was unsuccessful, reason: %1</source>
|
||||
<translation>A criação do torrent não foi possível, motivo: %1</translation>
|
||||
</message>
|
||||
@@ -4374,7 +4374,7 @@ Portanto os plugins foram desabilitados.</translation>
|
||||
<context>
|
||||
<name>search_engine</name>
|
||||
<message>
|
||||
<location filename="../search.ui" line="76"/>
|
||||
<location filename="../search.ui" line="98"/>
|
||||
<source>Search</source>
|
||||
<translation>Busca</translation>
|
||||
</message>
|
||||
@@ -4389,32 +4389,32 @@ Portanto os plugins foram desabilitados.</translation>
|
||||
<translation>Padrão de busca:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="92"/>
|
||||
<location filename="../search.ui" line="114"/>
|
||||
<source>Stop</source>
|
||||
<translation>Parar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="127"/>
|
||||
<location filename="../search.ui" line="149"/>
|
||||
<source>Status:</source>
|
||||
<translation>Estado:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="157"/>
|
||||
<location filename="../search.ui" line="179"/>
|
||||
<source>Stopped</source>
|
||||
<translation>Parado</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="230"/>
|
||||
<location filename="../search.ui" line="252"/>
|
||||
<source>Results:</source>
|
||||
<translation>Resultados:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="297"/>
|
||||
<location filename="../search.ui" line="319"/>
|
||||
<source>Download</source>
|
||||
<translation>Download</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="307"/>
|
||||
<location filename="../search.ui" line="329"/>
|
||||
<source>Clear</source>
|
||||
<translation>Limpar</translation>
|
||||
</message>
|
||||
@@ -4424,7 +4424,7 @@ Portanto os plugins foram desabilitados.</translation>
|
||||
<translation type="obsolete">Atualizar plugin de busca</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="99"/>
|
||||
<location filename="../search.ui" line="121"/>
|
||||
<source>Search engines...</source>
|
||||
<translation>Máquinas de busca...</translation>
|
||||
</message>
|
||||
|
@@ -2355,24 +2355,24 @@ Deseja mesmo sair do qBittorrent?</translation>
|
||||
<translation type="obsolete">Verdadeiro</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="122"/>
|
||||
<location filename="../PropListDelegate.h" line="119"/>
|
||||
<source>Ignored</source>
|
||||
<translation>Ignorado</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="123"/>
|
||||
<location filename="../PropListDelegate.h" line="120"/>
|
||||
<source>Normal</source>
|
||||
<comment>Normal (priority)</comment>
|
||||
<translation>Normal</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="124"/>
|
||||
<location filename="../PropListDelegate.h" line="121"/>
|
||||
<source>High</source>
|
||||
<comment>High (priority)</comment>
|
||||
<translation>Alta</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../PropListDelegate.h" line="125"/>
|
||||
<location filename="../PropListDelegate.h" line="122"/>
|
||||
<source>Maximum</source>
|
||||
<comment>Maximum (priority)</comment>
|
||||
<translation>Máxima</translation>
|
||||
@@ -3282,12 +3282,12 @@ Copyright ©2007 por Christophe Dumez<br>
|
||||
<translation type="obsolete">Digite primeiro um caminho de entrada correto</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="212"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="213"/>
|
||||
<source>Torrent creation</source>
|
||||
<translation>Criação de torrent</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="212"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="213"/>
|
||||
<source>Torrent was created successfully:</source>
|
||||
<translation>Torrent foi criado com sucesso:</translation>
|
||||
</message>
|
||||
@@ -3312,7 +3312,7 @@ Copyright ©2007 por Christophe Dumez<br>
|
||||
<translation>Digite uma url anunciada</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../createtorrent_imp.cpp" line="207"/>
|
||||
<location filename="../createtorrent_imp.cpp" line="208"/>
|
||||
<source>Torrent creation was unsuccessful, reason: %1</source>
|
||||
<translation>A criação do torrent não foi possível, motivo: %1</translation>
|
||||
</message>
|
||||
@@ -4374,7 +4374,7 @@ Portanto os plugins foram desabilitados.</translation>
|
||||
<context>
|
||||
<name>search_engine</name>
|
||||
<message>
|
||||
<location filename="../search.ui" line="76"/>
|
||||
<location filename="../search.ui" line="98"/>
|
||||
<source>Search</source>
|
||||
<translation>Busca</translation>
|
||||
</message>
|
||||
@@ -4389,32 +4389,32 @@ Portanto os plugins foram desabilitados.</translation>
|
||||
<translation>Padrão de busca:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="92"/>
|
||||
<location filename="../search.ui" line="114"/>
|
||||
<source>Stop</source>
|
||||
<translation>Parar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="127"/>
|
||||
<location filename="../search.ui" line="149"/>
|
||||
<source>Status:</source>
|
||||
<translation>Estado:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="157"/>
|
||||
<location filename="../search.ui" line="179"/>
|
||||
<source>Stopped</source>
|
||||
<translation>Parado</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="230"/>
|
||||
<location filename="../search.ui" line="252"/>
|
||||
<source>Results:</source>
|
||||
<translation>Resultados:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="297"/>
|
||||
<location filename="../search.ui" line="319"/>
|
||||
<source>Download</source>
|
||||
<translation>Download</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="307"/>
|
||||
<location filename="../search.ui" line="329"/>
|
||||
<source>Clear</source>
|
||||
<translation>Limpar</translation>
|
||||
</message>
|
||||
@@ -4424,7 +4424,7 @@ Portanto os plugins foram desabilitados.</translation>
|
||||
<translation type="obsolete">Atualizar plugin de busca</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../search.ui" line="99"/>
|
||||
<location filename="../search.ui" line="121"/>
|
||||
<source>Search engines...</source>
|
||||
<translation>Máquinas de busca...</translation>
|
||||
</message>
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user