diff --git a/TODO b/TODO
index 7ece419e6..e36e9a411 100644
--- a/TODO
+++ b/TODO
@@ -12,4 +12,5 @@ See https://blueprints.launchpad.net/qbittorrent/
- Italian
- Dutch
- Romanian
-- Korea
+- Korean
+- Russian
diff --git a/src/bittorrent.cpp b/src/bittorrent.cpp
index ea7510a0f..71e4c9ce2 100644
--- a/src/bittorrent.cpp
+++ b/src/bittorrent.cpp
@@ -1842,7 +1842,7 @@ void bittorrent::readAlerts() {
TorrentsStartData[hash] = h.total_payload_download();
}
}
- //emit torrentFinishedChecking(hash);
+ emit torrentFinishedChecking(hash);
}
}
a = s->pop_alert();
diff --git a/src/bittorrent.h b/src/bittorrent.h
index e7339fcdc..cc951079b 100644
--- a/src/bittorrent.h
+++ b/src/bittorrent.h
@@ -217,7 +217,7 @@ class bittorrent : public QObject {
void downloadFromUrlFailure(QString url, QString reason);
//void fastResumeDataRejected(QString name);
//void urlSeedProblem(QString url, QString msg);
- //void torrentFinishedChecking(QString hash);
+ void torrentFinishedChecking(QString hash);
//void torrent_ratio_deleted(QString fileName);
//void UPnPError(QString msg);
//void UPnPSuccess(QString msg);
diff --git a/src/downloadingTorrents.cpp b/src/downloadingTorrents.cpp
index f82ea7b18..2e7d2ebf8 100644
--- a/src/downloadingTorrents.cpp
+++ b/src/downloadingTorrents.cpp
@@ -69,6 +69,7 @@ DownloadingTorrents::DownloadingTorrents(QObject *parent, bittorrent *BTSession)
connect(BTSession, SIGNAL(addedTorrent(QTorrentHandle&)), this, SLOT(torrentAdded(QTorrentHandle&)));
connect(BTSession, SIGNAL(forceUnfinishedListUpdate()), this, SLOT(updateDlList()));
+ connect(BTSession, SIGNAL(torrentFinishedChecking(QString)), this, SLOT(sortProgressColumn(QString)));
// Load last columns width for download list
if(!loadColWidthDLList()) {
@@ -621,6 +622,7 @@ void DownloadingTorrents::addTorrent(QString hash) {
DLListModel->setData(DLListModel->index(row, NAME), QVariant(QIcon(QString::fromUtf8(":/Icons/skin/paused.png"))), Qt::DecorationRole);
setRowColor(row, QString::fromUtf8("red"));
}else{
+ DLListModel->setData(DLListModel->index(row, PROGRESS), QVariant((double)h.progress()));
DLListModel->setData(DLListModel->index(row, NAME), QVariant(QIcon(QString::fromUtf8(":/Icons/skin/connecting.png"))), Qt::DecorationRole);
setRowColor(row, QString::fromUtf8("grey"));
}
@@ -702,6 +704,19 @@ void DownloadingTorrents::toggleDownloadListSortOrder(int index) {
settings.setValue(QString::fromUtf8("DownloadListSortedCol"), misc::toQString(index)+sortOrderLetter);
}
+void DownloadingTorrents::sortProgressColumn(QString hash) {
+ int index = downloadList->header()->sortIndicatorSection();
+ if(index == PROGRESS) {
+ int row = getRowFromHash(hash);
+ if(row >= 0) {
+ QTorrentHandle h = BTSession->getTorrentHandle(hash);
+ DLListModel->setData(DLListModel->index(row, PROGRESS), QVariant((double)h.progress()));
+ Qt::SortOrder sortOrder = downloadList->header()->sortIndicatorOrder();
+ sortDownloadListFloat(index, sortOrder);
+ }
+ }
+}
+
void DownloadingTorrents::sortDownloadList(int index, Qt::SortOrder sortOrder) {
if(index == -1) {
index = downloadList->header()->sortIndicatorSection();
diff --git a/src/downloadingTorrents.h b/src/downloadingTorrents.h
index 9cad17099..4c22164b1 100644
--- a/src/downloadingTorrents.h
+++ b/src/downloadingTorrents.h
@@ -95,6 +95,7 @@ class DownloadingTorrents : public QWidget, public Ui::downloading{
void updateFileSizeAndProgress(QString hash);
void showPropertiesFromHash(QString hash);
void hidePriorityColumn(bool hide);
+ void sortProgressColumn(QString hash);
};
diff --git a/src/lang/qbittorrent_bg.ts b/src/lang/qbittorrent_bg.ts
index 4cf54154e..f41db09fa 100644
--- a/src/lang/qbittorrent_bg.ts
+++ b/src/lang/qbittorrent_bg.ts
@@ -1232,7 +1232,7 @@ Copyright © 2006 на Christophe Dumez<br>
ЕТА
-
+
qBittorrent %1 started.
e.g: qBittorrent v0.x started.
qBittorrent %1 стартиран.
@@ -1299,7 +1299,7 @@ Copyright © 2006 на Christophe Dumez<br>
Сваляне на '%1', моля изчакайте...
-
+
Hide or Show Column
Скрий или Покажи Колоната
diff --git a/src/lang/qbittorrent_ca.ts b/src/lang/qbittorrent_ca.ts
index b604e2cbb..afe54854f 100644
--- a/src/lang/qbittorrent_ca.ts
+++ b/src/lang/qbittorrent_ca.ts
@@ -1155,7 +1155,7 @@ Copyright © 2006 by Christophe Dumez<br>
ETA
-
+
qBittorrent %1 started.
e.g: qBittorrent v0.x started.
@@ -1171,7 +1171,7 @@ Copyright © 2006 by Christophe Dumez<br>
No es pot obrir el port especificat.
-
+
Hide or Show Column
diff --git a/src/lang/qbittorrent_cs.ts b/src/lang/qbittorrent_cs.ts
index 7d2631ff4..2785ad7e2 100644
--- a/src/lang/qbittorrent_cs.ts
+++ b/src/lang/qbittorrent_cs.ts
@@ -729,7 +729,7 @@ Copyright © 2006 by Christophe Dumez<br>
Odh. čas
-
+
qBittorrent %1 started.
e.g: qBittorrent v0.x started.
qBittorrent %1 spuštěn.
@@ -791,7 +791,7 @@ Copyright © 2006 by Christophe Dumez<br>
Stahuji '%1', prosím čekejte...
-
+
Hide or Show Column
Zobrazit či skrýt sloupec
diff --git a/src/lang/qbittorrent_da.ts b/src/lang/qbittorrent_da.ts
index 61e9c7aac..a1eef069c 100644
--- a/src/lang/qbittorrent_da.ts
+++ b/src/lang/qbittorrent_da.ts
@@ -984,7 +984,7 @@ Copyright © 2006 by Christophe Dumez<br>
Tid Tilbage
-
+
qBittorrent %1 started.
e.g: qBittorrent v0.x started.
qBittorrent %1 startet.
@@ -1030,7 +1030,7 @@ Copyright © 2006 by Christophe Dumez<br>
Downloader '%1', vent venligst...
-
+
Hide or Show Column
diff --git a/src/lang/qbittorrent_de.ts b/src/lang/qbittorrent_de.ts
index 7560fed7f..7f876a859 100644
--- a/src/lang/qbittorrent_de.ts
+++ b/src/lang/qbittorrent_de.ts
@@ -1169,7 +1169,7 @@ qBittorrent beobachtet das Verzeichniss und starten den Download von vorhandenen
voraussichtliche Ankunftszeit
-
+
qBittorrent %1 started.
e.g: qBittorrent v0.x started.
qBittorrent %1 gestartet.
@@ -1236,7 +1236,7 @@ qBittorrent beobachtet das Verzeichniss und starten den Download von vorhandenen
Lade '%1', bitte warten...
-
+
Hide or Show Column
Verstecke oder zeige Spalte
diff --git a/src/lang/qbittorrent_el.ts b/src/lang/qbittorrent_el.ts
index 59f456eaa..e77bd4152 100644
--- a/src/lang/qbittorrent_el.ts
+++ b/src/lang/qbittorrent_el.ts
@@ -1250,7 +1250,7 @@ Copyright © 2006 από τον Christophe Dumez<br>
Χρόνος που απομένει
-
+
qBittorrent %1 started.
e.g: qBittorrent v0.x started.
Εκκινήθηκε το qBittorrent %1.
@@ -1317,7 +1317,7 @@ Copyright © 2006 από τον Christophe Dumez<br>
Κατέβασμα του '%1', παρακαλώ περιμένετε...
-
+
Hide or Show Column
Απόκρυψη ή Εμφάνιση Στήλης
diff --git a/src/lang/qbittorrent_en.ts b/src/lang/qbittorrent_en.ts
index 47d925632..adc5831dc 100644
--- a/src/lang/qbittorrent_en.ts
+++ b/src/lang/qbittorrent_en.ts
@@ -724,13 +724,13 @@ Copyright © 2006 by Christophe Dumez<br>
-
+
qBittorrent %1 started.
e.g: qBittorrent v0.x started.
-
+
Hide or Show Column
diff --git a/src/lang/qbittorrent_es.ts b/src/lang/qbittorrent_es.ts
index dc08c5bca..69347d1fd 100644
--- a/src/lang/qbittorrent_es.ts
+++ b/src/lang/qbittorrent_es.ts
@@ -1188,7 +1188,7 @@ Copyright © 2006 por Christophe Dumez<br>
Tiempo Restante Aproximado
-
+
qBittorrent %1 started.
e.g: qBittorrent v0.x started.
qBittorrent %1 iniciado.
@@ -1255,7 +1255,7 @@ Copyright © 2006 por Christophe Dumez<br>
Descargando '%1', por favor espera...
-
+
Hide or Show Column
Ocultar o Mostrar Columna
diff --git a/src/lang/qbittorrent_fi.ts b/src/lang/qbittorrent_fi.ts
index 8f79c3f2c..380363fff 100644
--- a/src/lang/qbittorrent_fi.ts
+++ b/src/lang/qbittorrent_fi.ts
@@ -982,7 +982,7 @@ Tekijänoikeus © 2006 Christophe Dumez<br>
Aikaa jäljellä
-
+
qBittorrent %1 started.
e.g: qBittorrent v0.x started.
qBittorrent %1 käynnistyi.
@@ -1049,7 +1049,7 @@ Tekijänoikeus © 2006 Christophe Dumez<br>
Ladataa torrenttia ”%1”. Odota...
-
+
Hide or Show Column
Näytä tai piilota sarake
diff --git a/src/lang/qbittorrent_fr.ts b/src/lang/qbittorrent_fr.ts
index b92a99491..b746c003b 100644
--- a/src/lang/qbittorrent_fr.ts
+++ b/src/lang/qbittorrent_fr.ts
@@ -1288,7 +1288,7 @@ Copyright © 2006 par Christophe Dumez<br>
Restant
-
+
qBittorrent %1 started.
e.g: qBittorrent v0.x started.
qBittorrent %1 démarré.
@@ -1355,7 +1355,7 @@ Copyright © 2006 par Christophe Dumez<br>
Téléchargement de '%1', veuillez patienter...
-
+
Hide or Show Column
Afficher ou cacher colonne
diff --git a/src/lang/qbittorrent_hu.ts b/src/lang/qbittorrent_hu.ts
index 80e2b6fe4..6ed6f224d 100644
--- a/src/lang/qbittorrent_hu.ts
+++ b/src/lang/qbittorrent_hu.ts
@@ -1037,7 +1037,7 @@ Copyright © 2006 by Christophe Dumez<br>
Idő
-
+
qBittorrent %1 started.
e.g: qBittorrent v0.x started.
qBittorrent %1 elindítva.
@@ -1104,7 +1104,7 @@ Copyright © 2006 by Christophe Dumez<br>
Letöltés alatt: '%1', kis türelmet...
-
+
Hide or Show Column
Oszlop mutatása vagy rejtése
diff --git a/src/lang/qbittorrent_it.ts b/src/lang/qbittorrent_it.ts
index 28c720486..ba44db56c 100644
--- a/src/lang/qbittorrent_it.ts
+++ b/src/lang/qbittorrent_it.ts
@@ -1118,7 +1118,7 @@ Copyright © 2006 by Christophe Dumez<br>
ETA
-
+
qBittorrent %1 started.
e.g: qBittorrent v0.x started.
qBittorrent %1 avviato.
@@ -1185,7 +1185,7 @@ Copyright © 2006 by Christophe Dumez<br>
Download di '%1' in corso...
-
+
Hide or Show Column
Mostra o nascondi colonna
diff --git a/src/lang/qbittorrent_ja.ts b/src/lang/qbittorrent_ja.ts
index fe427506d..034cc6280 100644
--- a/src/lang/qbittorrent_ja.ts
+++ b/src/lang/qbittorrent_ja.ts
@@ -1077,7 +1077,7 @@ Copyright © 2006 by Christophe Dumez<br>
ETA
-
+
qBittorrent %1 started.
e.g: qBittorrent v0.x started.
qBittorrent %1 が開始されました。
@@ -1144,7 +1144,7 @@ Copyright © 2006 by Christophe Dumez<br>
'%1' をダウンロードしています、お待ちください...
-
+
Hide or Show Column
列の非表示または表示
diff --git a/src/lang/qbittorrent_ko.ts b/src/lang/qbittorrent_ko.ts
index ea0f835df..7a4cb1edc 100644
--- a/src/lang/qbittorrent_ko.ts
+++ b/src/lang/qbittorrent_ko.ts
@@ -1187,7 +1187,7 @@ list:
남은시간
-
+
qBittorrent %1 started.
e.g: qBittorrent v0.x started.
큐비토런트 %1가 시작되었습니다.
@@ -1254,7 +1254,7 @@ list:
'%1'을 다운 중입니다, 잠시 기다려 주세요...
-
+
Hide or Show Column
열(Column) 숨기기/보이기
diff --git a/src/lang/qbittorrent_nb.ts b/src/lang/qbittorrent_nb.ts
index d8fe14ec2..e89ef9153 100644
--- a/src/lang/qbittorrent_nb.ts
+++ b/src/lang/qbittorrent_nb.ts
@@ -1017,7 +1017,7 @@ Copyright © 2006 av Christophe Dumez<br>
Gjenværende tid
-
+
qBittorrent %1 started.
e.g: qBittorrent v0.x started.
qBittorrent %1 er startet.
@@ -1063,7 +1063,7 @@ Copyright © 2006 av Christophe Dumez<br>
Laster ned '%1'...
-
+
Hide or Show Column
diff --git a/src/lang/qbittorrent_nl.ts b/src/lang/qbittorrent_nl.ts
index 5bfcd9c92..c73ac56ff 100644
--- a/src/lang/qbittorrent_nl.ts
+++ b/src/lang/qbittorrent_nl.ts
@@ -1261,7 +1261,7 @@ Copyright 2006 door Christophe Dumez<br>
Geschatte resterende tijd
-
+
qBittorrent %1 started.
e.g: qBittorrent v0.x started.
qBittorrent %1 gestart.
@@ -1328,7 +1328,7 @@ Copyright 2006 door Christophe Dumez<br>
Bezig met downloaden van '%1', even geduld alstublieft...
-
+
Hide or Show Column
Verberg of Toon Kolom
diff --git a/src/lang/qbittorrent_pl.ts b/src/lang/qbittorrent_pl.ts
index dafcad135..563a23244 100644
--- a/src/lang/qbittorrent_pl.ts
+++ b/src/lang/qbittorrent_pl.ts
@@ -1249,7 +1249,7 @@ Wszystkie prawa zastrzeżone © 2006 Christophe Dumez<br>
ETA
-
+
qBittorrent %1 started.
e.g: qBittorrent v0.x started.
qBittorrent %1 uruchomiony.
@@ -1316,7 +1316,7 @@ Wszystkie prawa zastrzeżone © 2006 Christophe Dumez<br>
Pobieranie '%1', proszę czekać...
-
+
Hide or Show Column
Pokaż lub ukryj kolumny
diff --git a/src/lang/qbittorrent_pt.ts b/src/lang/qbittorrent_pt.ts
index 94b117cd6..ebbe4c0d0 100644
--- a/src/lang/qbittorrent_pt.ts
+++ b/src/lang/qbittorrent_pt.ts
@@ -1117,7 +1117,7 @@ Copyright ©2007 por Christophe Dumez<br>
ETA
-
+
qBittorrent %1 started.
e.g: qBittorrent v0.x started.
qBittorrent %1 iniciado.
@@ -1184,7 +1184,7 @@ Copyright ©2007 por Christophe Dumez<br>
baixando '%1', por favor espere...
-
+
Hide or Show Column
Esconder ou mostrar coluna
diff --git a/src/lang/qbittorrent_pt_BR.ts b/src/lang/qbittorrent_pt_BR.ts
index 94b117cd6..ebbe4c0d0 100644
--- a/src/lang/qbittorrent_pt_BR.ts
+++ b/src/lang/qbittorrent_pt_BR.ts
@@ -1117,7 +1117,7 @@ Copyright ©2007 por Christophe Dumez<br>
ETA
-
+
qBittorrent %1 started.
e.g: qBittorrent v0.x started.
qBittorrent %1 iniciado.
@@ -1184,7 +1184,7 @@ Copyright ©2007 por Christophe Dumez<br>
baixando '%1', por favor espere...
-
+
Hide or Show Column
Esconder ou mostrar coluna
diff --git a/src/lang/qbittorrent_ro.ts b/src/lang/qbittorrent_ro.ts
index 98c7359e9..f0fc02847 100644
--- a/src/lang/qbittorrent_ro.ts
+++ b/src/lang/qbittorrent_ro.ts
@@ -1127,7 +1127,7 @@ Copyright © 2006 by Christophe Dumez<br>
ETA
-
+
qBittorrent %1 started.
e.g: qBittorrent v0.x started.
qBittorrent %1 startat.
@@ -1194,7 +1194,7 @@ Copyright © 2006 by Christophe Dumez<br>
Descarc '%1', vă rugăm să aşteptaţi...
-
+
Hide or Show Column
Ascunde sau Afişeaza coloana
diff --git a/src/lang/qbittorrent_ru.qm b/src/lang/qbittorrent_ru.qm
index b3aa12f29..244883165 100644
Binary files a/src/lang/qbittorrent_ru.qm and b/src/lang/qbittorrent_ru.qm differ
diff --git a/src/lang/qbittorrent_ru.ts b/src/lang/qbittorrent_ru.ts
index de8cf5a99..79a1afc96 100644
--- a/src/lang/qbittorrent_ru.ts
+++ b/src/lang/qbittorrent_ru.ts
@@ -3,40 +3,40 @@
@default
-
+
b
bytes
б
-
+
KB
КБ
-
+
MB
МБ
-
+
GB
ГБ
-
+
KB
kilobytes
КБ
-
+
MB
megabytes
МБ
-
+
GB
gigabytes
ГБ
@@ -185,17 +185,17 @@ Copyright © 2006 by Christophe Dumez<br>
qBittorrent console
-
+ Консоль qBittorrent
General
- Общие
+ Общие
Blocked IPs
-
+ Заблокированные IP
@@ -276,7 +276,7 @@ Copyright © 2006 by Christophe Dumez<br>
Proxy
- Прокси
+ Прокси
@@ -965,7 +965,7 @@ Copyright © 2006 by Christophe Dumez<br>
Share ratio settings
- Настройки соотношения раздачи
+ Настройки коэффициента раздачи
@@ -1126,12 +1126,12 @@ Copyright © 2006 by Christophe Dumez<br>
Search engine proxy settings
-
+ Настройки прокси для поисковых движков
Bittorrent proxy settings
-
+ Настройки прокси Bittorrent
@@ -1184,7 +1184,7 @@ Copyright © 2006 by Christophe Dumez<br>
Ост. время
-
+
qBittorrent %1 started.
e.g: qBittorrent v0.x started.
qBittorrent %1 запущен.
@@ -1251,7 +1251,7 @@ Copyright © 2006 by Christophe Dumez<br>
Скачивание '%1', подождите...
-
+
Hide or Show Column
Скрыть или показать столбец
@@ -2388,12 +2388,12 @@ Are you sure you want to quit qBittorrent?
Uploads
-
+ Раздачи
Options were saved successfully.
- Настройки были успешно сохранены.
+ Настройки были успешно сохранены.
@@ -2621,7 +2621,7 @@ Are you sure you want to quit qBittorrent?
Ratio:
- Коефициент:
+ Соотношение:
@@ -2711,7 +2711,7 @@ Are you sure you want to quit qBittorrent?
Console
-
+ Консоль
@@ -3321,12 +3321,12 @@ Changelog:
Collapse all
-
+ Свернуть все
Expand all
-
+ Развернуть все
@@ -3385,103 +3385,103 @@ Changelog:
%1 reached the maximum ratio you set.
-
+ %1 достиг установленного вами максимального соотношения.
'%1' was removed permanently.
'xxx.avi' was removed permanently.
- '%1' был удален навсегда.
+ '%1' был удален навсегда.
'%1' was removed.
'xxx.avi' was removed.
- '%1' был удален.
+ '%1' был удален.
'%1' paused.
e.g: xxx.avi paused.
- '%1' приостановлен.
+ '%1' приостановлен.
'%1' resumed.
e.g: xxx.avi resumed.
- '%1' возобновлен.
+ '%1' возобновлен.
'%1' is already in download list.
e.g: 'xxx.avi' is already in download list.
- '%1' уже присутствует в списке закачек.
+ '%1' уже присутствует в списке закачек.
'%1' resumed. (fast resume)
'/home/y/xxx.torrent' was resumed. (fast resume)
-
+ '%1' возобновлен. (быстрое возобновление)
'%1' added to download list.
'/home/y/xxx.torrent' was added to download list.
- '%1' добавлен в список закачек.
+ '%1' добавлен в список закачек.
Unable to decode torrent file: '%1'
e.g: Unable to decode torrent file: '/home/y/xxx.torrent'
-
+ Не удалось декодировать torrent файл: '%1'
This file is either corrupted or this isn't a torrent.
- Этот файл либо поврежден, либо не torrent типа.
+ Этот файл либо поврежден, либо не torrent типа.
<font color='red'>%1</font> <i>was blocked due to your IP filter</i>
x.y.z.w was blocked
-
+ <font color='red'>%1</font> <i>был заблокирован в соответствии с вашим IP фильтром</i>
<font color='red'>%1</font> <i>was banned due to corrupt pieces</i>
x.y.z.w was banned
-
+ <font color='red'>%1</font> <i>был заблокирован из-за поврежденных кусочков</i>
Couldn't listen on any of the given ports.
- Невозможно прослушать ни один из заданных портов.
+ Невозможно прослушать ни один из заданных портов.
UPnP/NAT-PMP: Port mapping failure, message: %1
- Распределение портов UPnP/NAT-PMP не удалось с сообщением: %1
+ Распределение портов UPnP/NAT-PMP не удалось с сообщением: %1
UPnP/NAT-PMP: Port mapping successful, message: %1
- Распределение портов UPnP/NAT-PMP прошло успешно: %1
+ Распределение портов UPnP/NAT-PMP прошло успешно: %1
Fast resume data was rejected for torrent %1, checking again...
- Быстрое восстановление данных для torrentа %1 было невозможно, проверка заново...
+ Быстрое восстановление данных для torrentа %1 было невозможно, проверка заново...
Url seed lookup failed for url: %1, message: %2
- Поиск раздающего Url не удался: %1, сообщение: %2
+ Поиск раздающего Url не удался: %1, сообщение: %2
Downloading '%1', please wait...
e.g: Downloading 'xxx.torrent', please wait...
- Скачивание '%1', подождите...
+ Скачивание '%1', подождите...
@@ -4734,7 +4734,7 @@ However, those plugins were disabled.
Share Ratio:
- Степень разделенности:
+ Соотношение разлачи:
@@ -4916,12 +4916,12 @@ However, those plugins were disabled.
Collapse all
-
+ Свернуть все
Expand all
-
+ Развернуть все
diff --git a/src/lang/qbittorrent_sk.ts b/src/lang/qbittorrent_sk.ts
index 052928576..dfefadea5 100644
--- a/src/lang/qbittorrent_sk.ts
+++ b/src/lang/qbittorrent_sk.ts
@@ -1134,7 +1134,7 @@ Copyright © 2006 by Christophe Dumez<br>
Odh. čas
-
+
qBittorrent %1 started.
e.g: qBittorrent v0.x started.
qBittorrent %1 spustený.
@@ -1201,7 +1201,7 @@ Copyright © 2006 by Christophe Dumez<br>
Sťahuje sa „%1“, čakajte prosím...
-
+
Hide or Show Column
Skryť alebo zobraziť stĺpec
diff --git a/src/lang/qbittorrent_sv.ts b/src/lang/qbittorrent_sv.ts
index 6d094458e..9086ea05e 100644
--- a/src/lang/qbittorrent_sv.ts
+++ b/src/lang/qbittorrent_sv.ts
@@ -735,13 +735,13 @@ Copyright © 2006 by Christophe Dumez<br>
Färdig om
-
+
qBittorrent %1 started.
e.g: qBittorrent v0.x started.
qBittorrent %1 startad.
-
+
Hide or Show Column
Dölj eller visa kolumn
diff --git a/src/lang/qbittorrent_tr.ts b/src/lang/qbittorrent_tr.ts
index 14729a863..dabf048ee 100644
--- a/src/lang/qbittorrent_tr.ts
+++ b/src/lang/qbittorrent_tr.ts
@@ -1165,7 +1165,7 @@ Telif Hakkı © 2006 Christophe Dumez<br>
ETA
-
+
qBittorrent %1 started.
e.g: qBittorrent v0.x started.
qBittorrent %1 başladı.
@@ -1232,7 +1232,7 @@ Telif Hakkı © 2006 Christophe Dumez<br>
Download ediliyor '%1', lütfen bekleyin...
-
+
Hide or Show Column
Sütunu Gizle veya Göster
diff --git a/src/lang/qbittorrent_uk.ts b/src/lang/qbittorrent_uk.ts
index ecef75396..95b80d35c 100644
--- a/src/lang/qbittorrent_uk.ts
+++ b/src/lang/qbittorrent_uk.ts
@@ -1179,7 +1179,7 @@ Copyright © 2006 by Christophe Dumez<br>
ETA
-
+
qBittorrent %1 started.
e.g: qBittorrent v0.x started.
qBittorrent %1 запущено.
@@ -1246,7 +1246,7 @@ Copyright © 2006 by Christophe Dumez<br>
Завантажуєсться '%1', будь-ласка зачекайте...
-
+
Hide or Show Column
diff --git a/src/lang/qbittorrent_zh.ts b/src/lang/qbittorrent_zh.ts
index 5bdc399a2..c07beaa09 100644
--- a/src/lang/qbittorrent_zh.ts
+++ b/src/lang/qbittorrent_zh.ts
@@ -1230,7 +1230,7 @@ folder:
估计剩余时间
-
+
qBittorrent %1 started.
e.g: qBittorrent v0.x started.
qBittorrent %1开始.
@@ -1354,7 +1354,7 @@ wait...
'%1'下载中,请等待...
-
+
Hide or Show Column
隐藏或显示栏
diff --git a/src/lang/qbittorrent_zh_TW.ts b/src/lang/qbittorrent_zh_TW.ts
index 93517b66b..ae53691e3 100644
--- a/src/lang/qbittorrent_zh_TW.ts
+++ b/src/lang/qbittorrent_zh_TW.ts
@@ -732,7 +732,7 @@ Copyright © 2006 by Christophe Dumez<br>
預估剩餘時間
-
+
qBittorrent %1 started.
e.g: qBittorrent v0.x started.
qBittorrent %1 已啟動。
@@ -794,7 +794,7 @@ Copyright © 2006 by Christophe Dumez<br>
下載 '%1' 中, 請稍候...
-
+
Hide or Show Column
隱藏或顯示欄