diff --git a/src/GUI.cpp b/src/GUI.cpp index b2c4af842..f703762c9 100644 --- a/src/GUI.cpp +++ b/src/GUI.cpp @@ -1002,55 +1002,48 @@ void GUI::on_actionDelete_Permanently_triggered(){ ret = QMessageBox::question( this, tr("Are you sure? -- qBittorrent"), - tr("Are you sure you want to delete the selected item(s) in download list and in hard drive?"), + tr("Are you sure you want to delete the selected item(s) from download list and from hard drive?"), tr("&Yes"), tr("&No"), QString(), 0, 1); }else{ ret = QMessageBox::question( this, tr("Are you sure? -- qBittorrent"), - tr("Are you sure you want to delete the selected item(s) in finished list and in hard drive?"), + tr("Are you sure you want to delete the selected item(s) from finished list and from hard drive?"), tr("&Yes"), tr("&No"), QString(), 0, 1); } if(ret == 0) { //User clicked YES QModelIndex index; - QList > sortedIndexes; - // We have to remove items from the bottom - // to the top in order not to change indexes - // of files to delete. + QStringList hashesToDelete; foreach(index, selectedIndexes){ if(index.column() == NAME){ - qDebug("row to delete: %d", index.row()); - misc::insertSort2(sortedIndexes, QPair(index.row(), index), Qt::DescendingOrder); + hashesToDelete << DLListModel->data(DLListModel->index(index.row(), HASH)).toString(); } } - QPair sortedIndex; - foreach(sortedIndex, sortedIndexes){ - qDebug("deleting row: %d, %d, col: %d", sortedIndex.first, sortedIndex.second.row(), sortedIndex.second.column()); + QString fileHash; + foreach(fileHash, hashesToDelete){ // Get the file name & hash QString fileName; - QString fileHash; + int row = getRowFromHash(fileHash); if(inDownloadList){ - fileName = DLListModel->data(DLListModel->index(sortedIndex.second.row(), NAME)).toString(); - fileHash = DLListModel->data(DLListModel->index(sortedIndex.second.row(), HASH)).toString(); + fileName = DLListModel->data(DLListModel->index(row, NAME)).toString(); }else{ - fileName = finishedTorrentTab->getFinishedListModel()->data(finishedTorrentTab->getFinishedListModel()->index(sortedIndex.second.row(), F_NAME)).toString(); - fileHash = finishedTorrentTab->getFinishedListModel()->data(finishedTorrentTab->getFinishedListModel()->index(sortedIndex.second.row(), F_HASH)).toString(); + fileName = finishedTorrentTab->getFinishedListModel()->data(finishedTorrentTab->getFinishedListModel()->index(row, F_NAME)).toString(); } // Remove the torrent BTSession->deleteTorrent(fileHash, true); // Delete item from download list if(inDownloadList) { - DLListModel->removeRow(sortedIndex.first); + DLListModel->removeRow(row); --nbTorrents; tabs->setTabText(0, tr("Downloads") +" ("+QString(misc::toString(nbTorrents).c_str())+")"); } else { finishedTorrentTab->deleteFromFinishedList(fileHash); } // Update info bar - setInfoBar(tr("'%1' was removed.", "'xxx.avi' was removed.").arg(fileName)); + setInfoBar(tr("'%1' was removed permanently.", "'xxx.avi' was removed permanently.").arg(fileName)); } } } @@ -1060,9 +1053,10 @@ void GUI::on_actionDelete_Permanently_triggered(){ void GUI::on_actionDelete_triggered(){ if(tabs->currentIndex() > 1) return; QModelIndexList selectedIndexes; - bool inDownloadList = true; + bool inDownloadList; if(tabs->currentIndex() == 0) { selectedIndexes = downloadList->selectionModel()->selectedIndexes(); + inDownloadList = true; } else { selectedIndexes = finishedTorrentTab->getFinishedList()->selectionModel()->selectedIndexes(); inDownloadList = false; @@ -1071,56 +1065,49 @@ void GUI::on_actionDelete_triggered(){ int ret; if(inDownloadList) { ret = QMessageBox::question( - this, - tr("Are you sure? -- qBittorrent"), - tr("Are you sure you want to delete the selected item(s) in download list?"), - tr("&Yes"), tr("&No"), - QString(), 0, 1); + this, + tr("Are you sure? -- qBittorrent"), + tr("Are you sure you want to delete the selected item(s) in download list?"), + tr("&Yes"), tr("&No"), + QString(), 0, 1); } else { ret = QMessageBox::question( - this, - tr("Are you sure? -- qBittorrent"), - tr("Are you sure you want to delete the selected item(s) in finished list?"), - tr("&Yes"), tr("&No"), - QString(), 0, 1); + this, + tr("Are you sure? -- qBittorrent"), + tr("Are you sure you want to delete the selected item(s) in finished list?"), + tr("&Yes"), tr("&No"), + QString(), 0, 1); } if(ret == 0) { //User clicked YES QModelIndex index; - QList > sortedIndexes; - // We have to remove items from the bottom - // to the top in order not to change indexes - // of files to delete. + QStringList hashesToDelete; foreach(index, selectedIndexes){ if(index.column() == NAME){ - qDebug("row to delete: %d", index.row()); - misc::insertSort2(sortedIndexes, QPair(index.row(), index), Qt::DescendingOrder); + hashesToDelete << DLListModel->data(DLListModel->index(index.row(), HASH)).toString(); } } - QPair sortedIndex; - foreach(sortedIndex, sortedIndexes){ - qDebug("deleting row: %d, %d, col: %d", sortedIndex.first, sortedIndex.second.row(), sortedIndex.second.column()); + QString fileHash; + foreach(fileHash, hashesToDelete){ // Get the file name & hash QString fileName; - QString fileHash; + int row = getRowFromHash(fileHash); if(inDownloadList){ - fileName = DLListModel->data(DLListModel->index(sortedIndex.second.row(), NAME)).toString(); - fileHash = DLListModel->data(DLListModel->index(sortedIndex.second.row(), HASH)).toString(); + fileName = DLListModel->data(DLListModel->index(row, NAME)).toString(); }else{ - fileName = finishedTorrentTab->getFinishedListModel()->data(finishedTorrentTab->getFinishedListModel()->index(sortedIndex.second.row(), F_NAME)).toString(); - fileHash = finishedTorrentTab->getFinishedListModel()->data(finishedTorrentTab->getFinishedListModel()->index(sortedIndex.second.row(), F_HASH)).toString(); + fileName = finishedTorrentTab->getFinishedListModel()->data(finishedTorrentTab->getFinishedListModel()->index(row, F_NAME)).toString(); } // Remove the torrent BTSession->deleteTorrent(fileHash, false); + // Delete item from download list if(inDownloadList) { - // Delete item from download list - DLListModel->removeRow(sortedIndex.first); + DLListModel->removeRow(row); --nbTorrents; tabs->setTabText(0, tr("Downloads") +" ("+QString(misc::toString(nbTorrents).c_str())+")"); } else { finishedTorrentTab->deleteFromFinishedList(fileHash); } - // Update info bar + // Update info bar setInfoBar(tr("'%1' was removed.", "'xxx.avi' was removed.").arg(fileName)); } } diff --git a/src/lang/qbittorrent_bg.qm b/src/lang/qbittorrent_bg.qm index 051d9dd77..9833aae6e 100644 Binary files a/src/lang/qbittorrent_bg.qm and b/src/lang/qbittorrent_bg.qm differ diff --git a/src/lang/qbittorrent_bg.ts b/src/lang/qbittorrent_bg.ts index 74eaecc31..57131b4f6 100644 --- a/src/lang/qbittorrent_bg.ts +++ b/src/lang/qbittorrent_bg.ts @@ -780,24 +780,24 @@ Copyright © 2006 на Christophe Dumez<br> FinishedTorrents - + Finished Завършен - + Name i.e: file name Име - + Size i.e: file size Размер - + Progress i.e: % downloaded Изпълнение @@ -809,13 +809,13 @@ Copyright © 2006 на Christophe Dumez<br> DL Скорост - + UP Speed i.e: Upload speed UP Скорост - + Seeds/Leechs i.e: full/partial sources Даващи/Вземащи @@ -838,13 +838,13 @@ Copyright © 2006 на Christophe Dumez<br> Завършен - + None i.e: No error message Няма - + Ratio @@ -867,7 +867,7 @@ Copyright © 2006 на Christophe Dumez<br> Неизвестен - + This file is either corrupted or this isn't a torrent. Файла или е разрушен или не е торент. @@ -877,17 +877,17 @@ Copyright © 2006 на Christophe Dumez<br> Сигурни ли сте че искате да изтриете всички файлове от списъка за сваляне? - + &Yes &Да - + &No &Не - + Are you sure you want to delete the selected item(s) in download list? Сигурни ли сте че искате да изтриете избраните файлове от списъка за сваляне? @@ -1039,7 +1039,7 @@ Copyright © 2006 на Christophe Dumez<br> qBittorrent - + Are you sure? -- qBittorrent Сигурни ли сте? -- qBittorrent @@ -1080,7 +1080,7 @@ Copyright © 2006 на Christophe Dumez<br> е завършил свалянето. - + Couldn't listen on any of the given ports. Невъзможно изчакване от дадените портове. @@ -1349,10 +1349,10 @@ Please close the other one first. Are you sure you want to delete the selected item(s) in download list and in hard drive? - Сигурни ли сте че искате да изтриете избраните файлове от списъка за сваляне и от твърдия диск? + Сигурни ли сте че искате да изтриете избраните файлове от списъка за сваляне и от твърдия диск? - + Download finished Свалянето завърши @@ -1374,17 +1374,17 @@ Please close the other one first. qBittorrent %1 - + Connection status: Състояние на връзката: - + Offline Извън мрежата - + No peers found... Няма връзки... @@ -1484,37 +1484,37 @@ Please close the other one first. Сигурни ли сте че искате да напуснете? - + '%1' was removed. 'xxx.avi' was removed. '%1' бе премахнат. - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. '%1' добавен в листа за сваляне. - + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) '%1' бе възстановен. (бързо възстановяване) - + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. '%1' вече е в листа за сваляне. - + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' Не мога да декодирам торент-файла: '%1' - + None i.e: No error message Няма @@ -1526,12 +1526,12 @@ Please close the other one first. Прослушване на порт: %1 - + All downloads were paused. Всички сваляния са в пауза. - + '%1' paused. xxx.avi paused. '%1' е в пауза. @@ -1543,30 +1543,30 @@ Please close the other one first. Свързване... - + All downloads were resumed. Всички сваляния са възстановени. - + '%1' resumed. e.g: xxx.avi resumed. '%1' бе възстановен. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. '%1' завърши свалянето. - + I/O Error i.e: Input/Output Error В/И Грешка - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused Намерена грешка при четене или записване на %1. Вероятно диска е пълен, свалянето е в пауза @@ -1578,23 +1578,23 @@ Please close the other one first. Намерена грешка (пълен диск?), '%1' е в пауза. - + Connection Status: Състояние на връзката: - + Online Свързан - + Firewalled? i.e: Behind a firewall/router? Проблем с Firewall-а? - + No incoming connections... Няма входящи връзки... @@ -1620,13 +1620,13 @@ Please close the other one first. Резултати - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... Сваляне на '%1', моля изчакайте... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Намерена грешка (пълен диск?), '%1' е в пауза. @@ -1642,28 +1642,28 @@ Please close the other one first. - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 - + DHT support [ON], port: %1 - + DHT support [OFF] - + PeX support [ON] - + PeX support [OFF] @@ -1674,22 +1674,17 @@ Are you sure you want to quit qBittorrent? - + Downloads - - Are you sure you want to delete the selected item(s) in finished list and in hard drive? - - - - + Are you sure you want to delete the selected item(s) in finished list? - + UPnP support [ON] @@ -1699,17 +1694,17 @@ Are you sure you want to quit qBittorrent? - + Encryption support [ON] - + Encryption support [FORCED] - + Encryption support [OFF] @@ -1760,7 +1755,23 @@ Are you sure you want to quit qBittorrent? - Fast resume data was rejected for torrent %1 + Fast resume data was rejected for torrent %1, checking again... + + + + + Are you sure you want to delete the selected item(s) from download list and from hard drive? + + + + + Are you sure you want to delete the selected item(s) from finished list and from hard drive? + + + + + '%1' was removed permanently. + 'xxx.avi' was removed permanently. @@ -2311,7 +2322,7 @@ Are you sure you want to quit qBittorrent? Трябва да изберете поне една търсачка. - + Results Резултати diff --git a/src/lang/qbittorrent_ca.qm b/src/lang/qbittorrent_ca.qm index a1b40c1f8..5ebd6d5be 100644 Binary files a/src/lang/qbittorrent_ca.qm and b/src/lang/qbittorrent_ca.qm differ diff --git a/src/lang/qbittorrent_ca.ts b/src/lang/qbittorrent_ca.ts index ad04712dc..fd5979e5e 100644 --- a/src/lang/qbittorrent_ca.ts +++ b/src/lang/qbittorrent_ca.ts @@ -808,24 +808,24 @@ Copyright © 2006 by Christophe Dumez<br> FinishedTorrents - + Finished Finalitzat - + Name i.e: file name Nom - + Size i.e: file size Mida - + Progress i.e: % downloaded Progrès @@ -837,13 +837,13 @@ Copyright © 2006 by Christophe Dumez<br> Vel. Desc - + UP Speed i.e: Upload speed Vel. Pujada - + Seeds/Leechs i.e: full/partial sources @@ -866,13 +866,13 @@ Copyright © 2006 by Christophe Dumez<br> Finalitzat - + None i.e: No error message Res - + Ratio @@ -961,12 +961,12 @@ Copyright © 2006 by Christophe Dumez<br> Deshabilita el decodificador d' arxius torrent: - + This file is either corrupted or this isn't a torrent. Aquest arxiu està corrupte o no es un arxiu torrent. - + Are you sure? -- qBittorrent Estàs segur? -- qBittorrent @@ -976,12 +976,12 @@ Copyright © 2006 by Christophe Dumez<br> Estàs segur de que vols buidar la llista de descàrregues? - + &Yes &Yes - + &No &No @@ -991,7 +991,7 @@ Copyright © 2006 by Christophe Dumez<br> Llista de descàrregues buidada. - + Are you sure you want to delete the selected item(s) in download list? Estàs segur de que vols esborrar les descàrregues seleccionades? @@ -1059,7 +1059,7 @@ Copyright © 2006 by Christophe Dumez<br> ha finalitzat la descàrrega. - + Couldn't listen on any of the given ports. No es pot obrir el port especificat. @@ -1407,10 +1407,10 @@ Si et plau tanca l'altre primer. Are you sure you want to delete the selected item(s) in download list and in hard drive? - Estàs segur que vols esborrar els objectes seleccionats de la llista de descàrregues i del disc dur? + Estàs segur que vols esborrar els objectes seleccionats de la llista de descàrregues i del disc dur? - + Download finished @@ -1432,17 +1432,17 @@ Si et plau tanca l'altre primer. - + Connection status: - + Offline - + No peers found... @@ -1536,48 +1536,48 @@ Si et plau tanca l'altre primer. - + '%1' was removed. 'xxx.avi' was removed. - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. - + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) - + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. - + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' - + None i.e: No error message Res - + All downloads were paused. - + '%1' paused. xxx.avi paused. @@ -1589,52 +1589,52 @@ Si et plau tanca l'altre primer. Conectant... - + All downloads were resumed. - + '%1' resumed. e.g: xxx.avi resumed. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. - + I/O Error i.e: Input/Output Error I/O Error - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused - + Connection Status: - + Online - + Firewalled? i.e: Behind a firewall/router? - + No incoming connections... @@ -1645,13 +1645,13 @@ Si et plau tanca l'altre primer. Resultats - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. @@ -1667,28 +1667,28 @@ Si et plau tanca l'altre primer. - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 - + DHT support [ON], port: %1 - + DHT support [OFF] - + PeX support [ON] - + PeX support [OFF] @@ -1699,22 +1699,17 @@ Are you sure you want to quit qBittorrent? - + Downloads - - Are you sure you want to delete the selected item(s) in finished list and in hard drive? - - - - + Are you sure you want to delete the selected item(s) in finished list? - + UPnP support [ON] @@ -1724,17 +1719,17 @@ Are you sure you want to quit qBittorrent? - + Encryption support [ON] - + Encryption support [FORCED] - + Encryption support [OFF] @@ -1785,7 +1780,23 @@ Are you sure you want to quit qBittorrent? - Fast resume data was rejected for torrent %1 + Fast resume data was rejected for torrent %1, checking again... + + + + + Are you sure you want to delete the selected item(s) from download list and from hard drive? + + + + + Are you sure you want to delete the selected item(s) from finished list and from hard drive? + + + + + '%1' was removed permanently. + 'xxx.avi' was removed permanently. @@ -2336,7 +2347,7 @@ Are you sure you want to quit qBittorrent? Has de seleccionar un motor de busqueda. - + Results Resultats diff --git a/src/lang/qbittorrent_da.qm b/src/lang/qbittorrent_da.qm index 027b1a143..e260a9c5f 100644 Binary files a/src/lang/qbittorrent_da.qm and b/src/lang/qbittorrent_da.qm differ diff --git a/src/lang/qbittorrent_da.ts b/src/lang/qbittorrent_da.ts index 19fc98869..60a4173a5 100644 --- a/src/lang/qbittorrent_da.ts +++ b/src/lang/qbittorrent_da.ts @@ -622,24 +622,24 @@ Copyright © 2006 by Christophe Dumez<br> FinishedTorrents - + Finished Færdig - + Name i.e: file name Navn - + Size i.e: file size Størrelse - + Progress i.e: % downloaded Hentet @@ -651,13 +651,13 @@ Copyright © 2006 by Christophe Dumez<br> DL hastighed - + UP Speed i.e: Upload speed UP hastighed - + Seeds/Leechs i.e: full/partial sources Seedere/Leechere @@ -680,13 +680,13 @@ Copyright © 2006 by Christophe Dumez<br> Færdig - + None i.e: No error message Intet - + Ratio @@ -699,22 +699,22 @@ Copyright © 2006 by Christophe Dumez<br> Åbn Torrent Filer - + This file is either corrupted or this isn't a torrent. Denne fil er enten korrupt eller ikke en torrent. - + &Yes &Ja - + &No &Nej - + Are you sure you want to delete the selected item(s) in download list? Er du sikker på at du vil slette det markerede fra download listen? @@ -734,12 +734,12 @@ Copyright © 2006 by Christophe Dumez<br> Torrent Filer - + Are you sure? -- qBittorrent Er du sikker? -- qBittorrent - + Couldn't listen on any of the given ports. Kunne ikke lytte på de opgivne porte. @@ -842,7 +842,7 @@ Luk venglist denne først. Overførsler - + Download finished Download afsluttet @@ -859,7 +859,7 @@ Luk venglist denne først. Are you sure you want to delete the selected item(s) in download list and in hard drive? - Er du sikker på at du vil slette de markerede elementer i download listen og på harddisken? + Er du sikker på at du vil slette de markerede elementer i download listen og på harddisken? @@ -868,17 +868,17 @@ Luk venglist denne først. qBittorrent %1 - + Connection status: Forbindelses status: - + Offline Offline - + No peers found... Ingen kilder fundet... @@ -983,37 +983,37 @@ Luk venglist denne først. Er du sikker på at du vil afslutte? - + '%1' was removed. 'xxx.avi' was removed. '%1' blev fjernet. - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. '%1' lagt til download listen. - + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) '%1' fortsat. (hurtig fortsættelse) - + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. '%1' findes allerede i download listen. - + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' Kan ikke dekode torrent filen: '%1' - + None i.e: No error message Intet @@ -1025,12 +1025,12 @@ Luk venglist denne først. Lytter på port: %1 - + All downloads were paused. Alle downloads blev sat på pause. - + '%1' paused. xxx.avi paused. '%1' blev sat på pause. @@ -1042,52 +1042,52 @@ Luk venglist denne først. Forbinder... - + All downloads were resumed. Alle downloads fortsættes. - + '%1' resumed. e.g: xxx.avi resumed. '%1' fortsat. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 er hentet færdig. - + I/O Error i.e: Input/Output Error I/O Fejl - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused Der opstod en fejl under forsøget på at skrive %1. Disken er måske fuld, downloaden er sat på pause - + Connection Status: Forbindelses Status: - + Online Online - + Firewalled? i.e: Behind a firewall/router? Bag en Firewall? - + No incoming connections... Ingen indkommende forbindelser... @@ -1113,13 +1113,13 @@ Luk venglist denne først. Resultater - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... Downloader '%1', vent venligst... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Der opstod en fejl (fuld disk?), '%1' sat på pause. @@ -1135,28 +1135,28 @@ Luk venglist denne først. - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 - + DHT support [ON], port: %1 - + DHT support [OFF] - + PeX support [ON] - + PeX support [OFF] @@ -1167,7 +1167,7 @@ Are you sure you want to quit qBittorrent? - + Downloads @@ -1177,17 +1177,12 @@ Are you sure you want to quit qBittorrent? Færdig - - Are you sure you want to delete the selected item(s) in finished list and in hard drive? - - - - + Are you sure you want to delete the selected item(s) in finished list? - + UPnP support [ON] @@ -1197,17 +1192,17 @@ Are you sure you want to quit qBittorrent? - + Encryption support [ON] - + Encryption support [FORCED] - + Encryption support [OFF] @@ -1258,7 +1253,23 @@ Are you sure you want to quit qBittorrent? - Fast resume data was rejected for torrent %1 + Fast resume data was rejected for torrent %1, checking again... + + + + + Are you sure you want to delete the selected item(s) from download list and from hard drive? + + + + + Are you sure you want to delete the selected item(s) from finished list and from hard drive? + + + + + '%1' was removed permanently. + 'xxx.avi' was removed permanently. @@ -1721,7 +1732,7 @@ Are you sure you want to quit qBittorrent? Du skal vælge mindst en søgemaskine. - + Results Resultater diff --git a/src/lang/qbittorrent_de.qm b/src/lang/qbittorrent_de.qm index 313f35ae8..e19a5078e 100644 Binary files a/src/lang/qbittorrent_de.qm and b/src/lang/qbittorrent_de.qm differ diff --git a/src/lang/qbittorrent_de.ts b/src/lang/qbittorrent_de.ts index ca5317d18..46f62f1e6 100644 --- a/src/lang/qbittorrent_de.ts +++ b/src/lang/qbittorrent_de.ts @@ -716,24 +716,24 @@ Copyright (c) 2006 Christophe Dumez<br> FinishedTorrents - + Finished Beendet - + Name i.e: file name Name - + Size i.e: file size Größe - + Progress i.e: % downloaded Verlauf @@ -745,13 +745,13 @@ Copyright (c) 2006 Christophe Dumez<br> DL Geschwindigkeit - + UP Speed i.e: Upload speed UP Geschwindigkeit - + Seeds/Leechs i.e: full/partial sources Seeder/Leecher @@ -774,13 +774,13 @@ Copyright (c) 2006 Christophe Dumez<br> Beendet - + None i.e: No error message Nichts - + Ratio @@ -874,12 +874,12 @@ Copyright (c) 2006 Christophe Dumez<br> Torrent Datei kann nicht dekodiert werden: - + This file is either corrupted or this isn't a torrent. Diese Datei ist entweder beschädigt, oder kein torrent. - + Are you sure? -- qBittorrent Sind Sie sicher? -- qBittorrent @@ -889,12 +889,12 @@ Copyright (c) 2006 Christophe Dumez<br> Wollen Sie wirklich alle Dateien aus der Download Liste löschen? - + &Yes &Ja - + &No &Nein @@ -904,7 +904,7 @@ Copyright (c) 2006 Christophe Dumez<br> Download Liste gelöscht. - + Are you sure you want to delete the selected item(s) in download list? Wollen Sie wirklich die ausgewählten Elemente aus der Download Liste löschen? @@ -1026,7 +1026,7 @@ Copyright (c) 2006 Christophe Dumez<br> Konnte nicht auf den angegebenen Ports lauschen. - + Couldn't listen on any of the given ports. Konnte nicht auf den angegebenen Ports lauschen. @@ -1295,10 +1295,10 @@ Bitte schliessen Sie diesen zuerst. Are you sure you want to delete the selected item(s) in download list and in hard drive? - Wollen Sie wirklich die ausgewählten Elemente aus der Download Liste und von der Festplatte löschen? + Wollen Sie wirklich die ausgewählten Elemente aus der Download Liste und von der Festplatte löschen? - + Download finished Download abgeschlossen @@ -1320,17 +1320,17 @@ Bitte schliessen Sie diesen zuerst. qBittorrent %1 - + Connection status: Verbindungs Status: - + Offline Offline - + No peers found... Keine Peers gefunden... @@ -1430,37 +1430,37 @@ Bitte schliessen Sie diesen zuerst. Wollen Sie wirklich beenden? - + '%1' was removed. 'xxx.avi' was removed. '%1' wurde entfernt. - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. '%1' wurde der Download Liste hinzugefügt. - + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) '%1' wird fortgesetzt. (Schnelles Fortsetzen) - + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. '%1' befindet sich bereits in der Download Liste. - + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' Kann Torrent Datei '%1' nicht dekodieren - + None i.e: No error message Nichts @@ -1472,12 +1472,12 @@ Bitte schliessen Sie diesen zuerst. Lausche auf Port: %1 - + All downloads were paused. Alle Downloads wurden angehalten. - + '%1' paused. xxx.avi paused. '%1' angehalten. @@ -1489,30 +1489,30 @@ Bitte schliessen Sie diesen zuerst. Verbinde... - + All downloads were resumed. Alle Downloads wurden fortgesetzt. - + '%1' resumed. e.g: xxx.avi resumed. '%1' fortgesetzt. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 vollständig heruntergeladen. - + I/O Error i.e: Input/Output Error I/O Error - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused Es ist ein Fehler beim lesen oder schreiben von %1 aufgetreten. Die Festplatte ist vermutlich voll. Der Download wurde angehalten @@ -1524,23 +1524,23 @@ Bitte schliessen Sie diesen zuerst. Ein Fehler ist aufgetreten (Festplatte voll?), '%1' angehalten. - + Connection Status: Verbindungs-Status: - + Online Online - + Firewalled? i.e: Behind a firewall/router? Hinter einer Firewall/Router? - + No incoming connections... Keine eingehenden Verbindungen... @@ -1566,13 +1566,13 @@ Bitte schliessen Sie diesen zuerst. Ergebnisse - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... Lade '%1', bitte warten... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Ein Fehler ist aufgetreten (Festplatte voll?), '%1' angehalten. @@ -1588,28 +1588,28 @@ Bitte schliessen Sie diesen zuerst. RSS - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 qBittorrent lauscht auf Port: %1 - + DHT support [ON], port: %1 DHT Unterstützung [Aktiviert], port: %1 - + DHT support [OFF] DHT Unterstützung [Deaktiviert] - + PeX support [ON] PeX Unterstützung [Aktiviert] - + PeX support [OFF] PeX Unterstützung [Deaktiviert] @@ -1621,22 +1621,22 @@ Are you sure you want to quit qBittorrent? Möchten sie qBittorrent wirklich beenden? - + Downloads Downloads Are you sure you want to delete the selected item(s) in finished list and in hard drive? - Wollen Sie wirklich die ausgewählten Elemente aus der Beendet Liste und von der Festplatte löschen? + Wollen Sie wirklich die ausgewählten Elemente aus der Beendet Liste und von der Festplatte löschen? - + Are you sure you want to delete the selected item(s) in finished list? Wollen Sie wirklich die ausgewählten Elemente aus der Beendet Liste löschen? - + UPnP support [ON] UPNP Unterstützung [Aktiviert] @@ -1646,17 +1646,17 @@ Möchten sie qBittorrent wirklich beenden? ACHTUNG! Die Verbreitung von urheberrechlich geschütztem Material ist gegen das Gesetz. - + Encryption support [ON] Verschlüsselung Unterstützung [Aktiviert] - + Encryption support [FORCED] Verschlüsselung Unterstützung [Erzwungen] - + Encryption support [OFF] Verschlüsselung Unterstützung [Deaktiviert] @@ -1707,7 +1707,23 @@ Möchten sie qBittorrent wirklich beenden? - Fast resume data was rejected for torrent %1 + Fast resume data was rejected for torrent %1, checking again... + + + + + Are you sure you want to delete the selected item(s) from download list and from hard drive? + + + + + Are you sure you want to delete the selected item(s) from finished list and from hard drive? + + + + + '%1' was removed permanently. + 'xxx.avi' was removed permanently. @@ -2253,7 +2269,7 @@ Möchten sie qBittorrent wirklich beenden? Sie müssen mindestens eine Suchmaschine auswählen. - + Results Ergebnisse diff --git a/src/lang/qbittorrent_el.qm b/src/lang/qbittorrent_el.qm index 82bb173bd..313833bab 100644 Binary files a/src/lang/qbittorrent_el.qm and b/src/lang/qbittorrent_el.qm differ diff --git a/src/lang/qbittorrent_el.ts b/src/lang/qbittorrent_el.ts index 28576ead1..74a090288 100644 --- a/src/lang/qbittorrent_el.ts +++ b/src/lang/qbittorrent_el.ts @@ -798,24 +798,24 @@ Copyright © 2006 από τον Christophe Dumez<br> FinishedTorrents - + Finished - + Name i.e: file name - + Size i.e: file size Μέγεθος - + Progress i.e: % downloaded Πρόοδος @@ -827,13 +827,13 @@ Copyright © 2006 από τον Christophe Dumez<br> DL Ταχύτητα - + UP Speed i.e: Upload speed UP Ταχύτητα - + Seeds/Leechs i.e: full/partial sources Διαμοιραστές/Συνδέσεις @@ -850,13 +850,13 @@ Copyright © 2006 από τον Christophe Dumez<br> Χρόνος που απομένει - + None i.e: No error message Κανένα - + Ratio @@ -879,7 +879,7 @@ Copyright © 2006 από τον Christophe Dumez<br> Άγνωστο - + This file is either corrupted or this isn't a torrent. Το αρχείο είτε είναι κατεστραμμένο, ή δεν ειναι ενα τορεντ. @@ -889,17 +889,17 @@ Copyright © 2006 από τον Christophe Dumez<br> Σίγουρα θέλετε να διαγράψετε όλα τα αρχεία στην λίστα κατεβάσματος? - + &Yes &Ναι - + &No &Όχι - + Are you sure you want to delete the selected item(s) in download list? Είστε σίγουρος οτι θέλετε να διαγράψετε το(α) επιλεγμλένα αντικείμενο(α) από την λίστα κατεβάσματος? @@ -1051,7 +1051,7 @@ Copyright © 2006 από τον Christophe Dumez<br> qBittorrent - + Are you sure? -- qBittorrent Είστε σίγουρος? -- qBittorrent @@ -1092,7 +1092,7 @@ Copyright © 2006 από τον Christophe Dumez<br> έχει τελειώσει το κατέβασμα. - + Couldn't listen on any of the given ports. Δεν "ακροάστηκα" καμία σπό τις δωσμένες θύρες. @@ -1391,10 +1391,10 @@ Please close the other one first. Are you sure you want to delete the selected item(s) in download list and in hard drive? - Είστε σίγουρος/η οτι θέλετε να διαγράψετε το(α) επιλεγμένο(α) αντικείμενο(α) από τη λίστα κατεβάσματος και το σκληρό δίσκο? + Είστε σίγουρος/η οτι θέλετε να διαγράψετε το(α) επιλεγμένο(α) αντικείμενο(α) από τη λίστα κατεβάσματος και το σκληρό δίσκο? - + Download finished Το κατέβασμα τελείωσε @@ -1416,17 +1416,17 @@ Please close the other one first. qBittorrent %1 - + Connection status: Κατάσταση Σύνδεσης: - + Offline Offline - + No peers found... Δεν βρέθηκαν συνδέσεις... @@ -1526,37 +1526,37 @@ Please close the other one first. Είστε σίγουρος/η οτι θέλετε να κλείσετε την εφαρμογή? - + '%1' was removed. 'xxx.avi' was removed. Το '%1' αφαιρέθηκε. - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. Το '%1' προστέθηκε στη λίστα κατεβάσματος. - + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) Το '%1' ξανάρχισε. (γρήγορη επανασύνδεση) - + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. Το '%1' είναι ήδη στη λίστα κατεβάσματος. - + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' Αδύνατο να αποκωδικοποιηθεί το αρχείο τορεντ: '%1' - + None i.e: No error message Κανένα @@ -1568,12 +1568,12 @@ Please close the other one first. Ακρόαση στη θύρα: %1 - + All downloads were paused. Όλα τα κατεβάσματα είναι σε παύση. - + '%1' paused. xxx.avi paused. '%1' σε παύση. @@ -1585,30 +1585,30 @@ Please close the other one first. Σύνδεση... - + All downloads were resumed. Όλα τα κατεβάσματα ξανάρχισαν. - + '%1' resumed. e.g: xxx.avi resumed. Το '%1' ξανάρχισε. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. Έχει τελειώσει το κατέβασμα του '%1'. - + I/O Error i.e: Input/Output Error I/O Λάθος - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused Ένα σφάλμα προέκυψε κατά την προσπάθεια ανάγνωσης ή εγγραφής του %1. Ο δίσκος είναι πιθανόν πλήρης, το κατέβασμα είναι σε παύση @@ -1620,23 +1620,23 @@ Please close the other one first. Ένα σφάλμα προέκυψε (δίσκος πλήρης?), το '%1' είναι σε παύση. - + Connection Status: Κατάσταση Σύνδεσης: - + Online Online - + Firewalled? i.e: Behind a firewall/router? Σε τοίχο προστασίας (firewall)? - + No incoming connections... Καμία εισερχόμενη σύνδεση... @@ -1662,13 +1662,13 @@ Please close the other one first. Αποτελέσματα - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... Κατέβασμα του '%1', παρακαλώ περιμένετε... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Ένα σφάλμα προέκυψε (δίσκος πλήρης?), το '%1' είναι σε παύση. @@ -1684,28 +1684,28 @@ Please close the other one first. - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 - + DHT support [ON], port: %1 - + DHT support [OFF] - + PeX support [ON] - + PeX support [OFF] @@ -1716,22 +1716,17 @@ Are you sure you want to quit qBittorrent? - + Downloads - - Are you sure you want to delete the selected item(s) in finished list and in hard drive? - - - - + Are you sure you want to delete the selected item(s) in finished list? - + UPnP support [ON] @@ -1741,17 +1736,17 @@ Are you sure you want to quit qBittorrent? - + Encryption support [ON] - + Encryption support [FORCED] - + Encryption support [OFF] @@ -1802,7 +1797,23 @@ Are you sure you want to quit qBittorrent? - Fast resume data was rejected for torrent %1 + Fast resume data was rejected for torrent %1, checking again... + + + + + Are you sure you want to delete the selected item(s) from download list and from hard drive? + + + + + Are you sure you want to delete the selected item(s) from finished list and from hard drive? + + + + + '%1' was removed permanently. + 'xxx.avi' was removed permanently. @@ -2353,7 +2364,7 @@ Are you sure you want to quit qBittorrent? Πρέπει να επιλέξετε τουλάχιστο μια μηχανή αναζήτησης. - + Results Αποτελέσματα diff --git a/src/lang/qbittorrent_en.qm b/src/lang/qbittorrent_en.qm index 72d2da9ce..d29f00ce6 100644 Binary files a/src/lang/qbittorrent_en.qm and b/src/lang/qbittorrent_en.qm differ diff --git a/src/lang/qbittorrent_en.ts b/src/lang/qbittorrent_en.ts index bed664529..275864eff 100644 --- a/src/lang/qbittorrent_en.ts +++ b/src/lang/qbittorrent_en.ts @@ -582,48 +582,48 @@ Copyright © 2006 by Christophe Dumez<br> FinishedTorrents - + Finished - + Name i.e: file name - + Size i.e: file size - + Progress i.e: % downloaded - + UP Speed i.e: Upload speed - + Seeds/Leechs i.e: full/partial sources - + None i.e: No error message - + Ratio @@ -636,22 +636,22 @@ Copyright © 2006 by Christophe Dumez<br> - + This file is either corrupted or this isn't a torrent. - + &Yes - + &No - + Are you sure you want to delete the selected item(s) in download list? @@ -661,12 +661,12 @@ Copyright © 2006 by Christophe Dumez<br> - + Are you sure? -- qBittorrent - + Couldn't listen on any of the given ports. @@ -682,15 +682,10 @@ Please close the other one first. - + Download finished - - - Are you sure you want to delete the selected item(s) in download list and in hard drive? - - qBittorrent %1 @@ -698,17 +693,17 @@ Please close the other one first. - + Connection status: - + Offline - + No peers found... @@ -783,110 +778,110 @@ Please close the other one first. - + '%1' was removed. 'xxx.avi' was removed. - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. - + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) - + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. - + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' - + None i.e: No error message - + All downloads were paused. - + '%1' paused. xxx.avi paused. - + All downloads were resumed. - + '%1' resumed. e.g: xxx.avi resumed. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. - + I/O Error i.e: Input/Output Error - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused - + Connection Status: - + Online - + Firewalled? i.e: Behind a firewall/router? - + No incoming connections... - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. @@ -902,28 +897,28 @@ Please close the other one first. - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 - + DHT support [ON], port: %1 - + DHT support [OFF] - + PeX support [ON] - + PeX support [OFF] @@ -934,7 +929,7 @@ Are you sure you want to quit qBittorrent? - + Downloads @@ -944,17 +939,12 @@ Are you sure you want to quit qBittorrent? - - Are you sure you want to delete the selected item(s) in finished list and in hard drive? - - - - + Are you sure you want to delete the selected item(s) in finished list? - + UPnP support [ON] @@ -964,17 +954,17 @@ Are you sure you want to quit qBittorrent? - + Encryption support [ON] - + Encryption support [FORCED] - + Encryption support [OFF] @@ -1025,7 +1015,23 @@ Are you sure you want to quit qBittorrent? - Fast resume data was rejected for torrent %1 + Fast resume data was rejected for torrent %1, checking again... + + + + + Are you sure you want to delete the selected item(s) from download list and from hard drive? + + + + + Are you sure you want to delete the selected item(s) from finished list and from hard drive? + + + + + '%1' was removed permanently. + 'xxx.avi' was removed permanently. @@ -1413,7 +1419,7 @@ Are you sure you want to quit qBittorrent? - + Results diff --git a/src/lang/qbittorrent_es.qm b/src/lang/qbittorrent_es.qm index 14c6ea752..576d9f564 100644 Binary files a/src/lang/qbittorrent_es.qm and b/src/lang/qbittorrent_es.qm differ diff --git a/src/lang/qbittorrent_es.ts b/src/lang/qbittorrent_es.ts index f62ecf59f..de14b5ac5 100644 --- a/src/lang/qbittorrent_es.ts +++ b/src/lang/qbittorrent_es.ts @@ -736,24 +736,24 @@ Copyright © 2006 por Christophe Dumez<br> FinishedTorrents - + Finished Terminado - + Name i.e: file name Nombre - + Size i.e: file size Tamaño - + Progress i.e: % downloaded Progreso @@ -765,13 +765,13 @@ Copyright © 2006 por Christophe Dumez<br> Velocidad de Descarga - + UP Speed i.e: Upload speed Velocidad de Subida - + Seeds/Leechs i.e: full/partial sources Semillas/Leechs @@ -794,13 +794,13 @@ Copyright © 2006 por Christophe Dumez<br> Terminado - + None i.e: No error message Ninguno - + Ratio @@ -879,7 +879,7 @@ Copyright © 2006 por Christophe Dumez<br> Imposible decodificar el archivo torrent: - + This file is either corrupted or this isn't a torrent. Este archivo puede estar corrupto, o no ser un torrent. @@ -889,12 +889,12 @@ Copyright © 2006 por Christophe Dumez<br> ¿Seguro que quieres eliminar todos los archivos de la lista de descargas? - + &Yes &Sí - + &No &No @@ -904,7 +904,7 @@ Copyright © 2006 por Christophe Dumez<br> Lista de descargas borrada. - + Are you sure you want to delete the selected item(s) in download list? ¿Seguro que quieres borrar el o los elemento(s) seleccionados de la lista de descargas? @@ -1005,7 +1005,7 @@ Copyright © 2006 por Christophe Dumez<br> qBittorrent - + Are you sure? -- qBittorrent ¿Estás seguro? -- qBittorrent @@ -1046,7 +1046,7 @@ Copyright © 2006 por Christophe Dumez<br> No se pudo escuchar en ninguno de los puertos brindados. - + Couldn't listen on any of the given ports. No se pudo escuchar en ninguno de los puertos brindados. @@ -1320,10 +1320,10 @@ Por favor cierra el otro antes. Are you sure you want to delete the selected item(s) in download list and in hard drive? - ¿Seguro que deseas borrar el o los elementos seleccionados de la lista de descargas y del disco duro? + ¿Seguro que deseas borrar el o los elementos seleccionados de la lista de descargas y del disco duro? - + Download finished Descarga terminada @@ -1345,17 +1345,17 @@ Por favor cierra el otro antes. qBittorrent %1 - + Connection status: Estado de la conexión: - + Offline Offline - + No peers found... No se encontraron peers... @@ -1455,37 +1455,37 @@ Por favor cierra el otro antes. ¿Estás seguro de que deseas salir? - + '%1' was removed. 'xxx.avi' was removed. '%1' fué removido. - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. '%1' agregado a la lista de descargas. - + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) '%1' reiniciado. (reinicio rápido) - + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. '%1' ya está en la lista de descargas. - + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' Imposible decodificar el archivo torrent: '%1' - + None i.e: No error message Ninguno @@ -1497,12 +1497,12 @@ Por favor cierra el otro antes. Escuchando en el puerto: %1 - + All downloads were paused. Todas las descargas en pausa. - + '%1' paused. xxx.avi paused. '%1' en pausa. @@ -1514,30 +1514,30 @@ Por favor cierra el otro antes. Conectando... - + All downloads were resumed. Todas las descargas reiniciadas. - + '%1' resumed. e.g: xxx.avi resumed. '%1' reiniciado. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 ha terminado de descargarse. - + I/O Error i.e: Input/Output Error Error de Entrada/Salida - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused Un error ocurrió mientras se intentaba leer o escribir %1. El disco tal vez esté lleno, la descarga fué pausada @@ -1549,23 +1549,23 @@ Por favor cierra el otro antes. Un error ocurrió (¿disco lleno?), '%1' pausado. - + Connection Status: Estado de la conexión: - + Online En línea - + Firewalled? i.e: Behind a firewall/router? ¿Con firewall? - + No incoming connections... Sin conexiones entrantes... @@ -1591,13 +1591,13 @@ Por favor cierra el otro antes. Resultados - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... Descargando '%1', por favor espera... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Un error ocurrió (¿disco lleno?), '%1' pausado. @@ -1613,28 +1613,28 @@ Por favor cierra el otro antes. - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 - + DHT support [ON], port: %1 - + DHT support [OFF] - + PeX support [ON] - + PeX support [OFF] @@ -1645,22 +1645,17 @@ Are you sure you want to quit qBittorrent? - + Downloads - - Are you sure you want to delete the selected item(s) in finished list and in hard drive? - - - - + Are you sure you want to delete the selected item(s) in finished list? - + UPnP support [ON] @@ -1670,17 +1665,17 @@ Are you sure you want to quit qBittorrent? - + Encryption support [ON] - + Encryption support [FORCED] - + Encryption support [OFF] @@ -1731,7 +1726,23 @@ Are you sure you want to quit qBittorrent? - Fast resume data was rejected for torrent %1 + Fast resume data was rejected for torrent %1, checking again... + + + + + Are you sure you want to delete the selected item(s) from download list and from hard drive? + + + + + Are you sure you want to delete the selected item(s) from finished list and from hard drive? + + + + + '%1' was removed permanently. + 'xxx.avi' was removed permanently. @@ -2282,7 +2293,7 @@ Are you sure you want to quit qBittorrent? Debes seleccionar al menos un motor de búsqueda. - + Results Resultados diff --git a/src/lang/qbittorrent_fi.qm b/src/lang/qbittorrent_fi.qm index 901bc6016..759f946d9 100644 Binary files a/src/lang/qbittorrent_fi.qm and b/src/lang/qbittorrent_fi.qm differ diff --git a/src/lang/qbittorrent_fi.ts b/src/lang/qbittorrent_fi.ts index 11e0cf47c..57129f231 100644 --- a/src/lang/qbittorrent_fi.ts +++ b/src/lang/qbittorrent_fi.ts @@ -635,24 +635,24 @@ Tekijänoikeus © 2006 Christophe Dumez<br> FinishedTorrents - + Finished Valmis - + Name i.e: file name Nimi - + Size i.e: file size Koko - + Progress i.e: % downloaded Edistyminen @@ -664,13 +664,13 @@ Tekijänoikeus © 2006 Christophe Dumez<br> Latausnopeus - + UP Speed i.e: Upload speed Lähetysnopeus - + Seeds/Leechs i.e: full/partial sources @@ -693,13 +693,13 @@ Tekijänoikeus © 2006 Christophe Dumez<br> Valmis - + None i.e: No error message Ei mikään - + Ratio @@ -733,7 +733,7 @@ Tekijänoikeus © 2006 Christophe Dumez<br> Haun aika tapahtui virhe... - + Are you sure? -- qBittorrent Oletko varma? — qBittorrent @@ -743,14 +743,14 @@ Tekijänoikeus © 2006 Christophe Dumez<br> Haluatko varmasti poistaa kaikki tiedostot latauslistasta? - + Are you sure you want to delete the selected item(s) in download list? Haluatko varmasti poistaa valitut tiedostot latauslistasta? Are you sure you want to delete the selected item(s) in download list and in hard drive? - Haluatko varmasti poistaa valitut kohteet latauslistasta ja tallennusmedialta? + Haluatko varmasti poistaa valitut kohteet latauslistasta ja tallennusmedialta? @@ -809,7 +809,7 @@ Tekijänoikeus © 2006 Christophe Dumez<br> Tiedoston lataaminen ei onnistunut: - + Couldn't listen on any of the given ports. Minkään annetun portin käyttäminen ei onnistunut. @@ -819,7 +819,7 @@ Tekijänoikeus © 2006 Christophe Dumez<br> Latausnopeus - + Download finished Lataus tuli valmiiksi @@ -886,7 +886,7 @@ Tekijänoikeus © 2006 Christophe Dumez<br> Nimi - + &No &Ei @@ -1054,7 +1054,7 @@ Please close the other one first. Uutta esikatselua ei voi aloittaa. - + This file is either corrupted or this isn't a torrent. Tiedosto ei ole kelvollinen torrent-tiedosto. @@ -1084,7 +1084,7 @@ Uutta esikatselua ei voi aloittaa. Lähetysnopeus: - + &Yes &Kyllä @@ -1110,17 +1110,17 @@ Uutta esikatselua ei voi aloittaa. - + Connection status: - + Offline - + No peers found... @@ -1225,48 +1225,48 @@ Uutta esikatselua ei voi aloittaa. - + '%1' was removed. 'xxx.avi' was removed. - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. - + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) - + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. - + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' - + None i.e: No error message Ei mikään - + All downloads were paused. - + '%1' paused. xxx.avi paused. @@ -1278,52 +1278,52 @@ Uutta esikatselua ei voi aloittaa. Yhdistetään... - + All downloads were resumed. - + '%1' resumed. e.g: xxx.avi resumed. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. - + I/O Error i.e: Input/Output Error I/O-virhe - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused - + Connection Status: - + Online - + Firewalled? i.e: Behind a firewall/router? - + No incoming connections... @@ -1334,13 +1334,13 @@ Uutta esikatselua ei voi aloittaa. Tulokset - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. @@ -1356,28 +1356,28 @@ Uutta esikatselua ei voi aloittaa. - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 - + DHT support [ON], port: %1 - + DHT support [OFF] - + PeX support [ON] - + PeX support [OFF] @@ -1388,22 +1388,17 @@ Are you sure you want to quit qBittorrent? - + Downloads - - Are you sure you want to delete the selected item(s) in finished list and in hard drive? - - - - + Are you sure you want to delete the selected item(s) in finished list? - + UPnP support [ON] @@ -1413,17 +1408,17 @@ Are you sure you want to quit qBittorrent? - + Encryption support [ON] - + Encryption support [FORCED] - + Encryption support [OFF] @@ -1474,7 +1469,23 @@ Are you sure you want to quit qBittorrent? - Fast resume data was rejected for torrent %1 + Fast resume data was rejected for torrent %1, checking again... + + + + + Are you sure you want to delete the selected item(s) from download list and from hard drive? + + + + + Are you sure you want to delete the selected item(s) from finished list and from hard drive? + + + + + '%1' was removed permanently. + 'xxx.avi' was removed permanently. @@ -1947,7 +1958,7 @@ Are you sure you want to quit qBittorrent? Valitse ensin ainakin yksi hakupalvelu. - + Results Tulokset diff --git a/src/lang/qbittorrent_fr.qm b/src/lang/qbittorrent_fr.qm index 19c045803..02b722920 100644 Binary files a/src/lang/qbittorrent_fr.qm and b/src/lang/qbittorrent_fr.qm differ diff --git a/src/lang/qbittorrent_fr.ts b/src/lang/qbittorrent_fr.ts index 62e2a729e..e4e989246 100644 --- a/src/lang/qbittorrent_fr.ts +++ b/src/lang/qbittorrent_fr.ts @@ -836,24 +836,24 @@ Copyright © 2006 par Christophe Dumez<br> FinishedTorrents - + Finished Terminé - + Name i.e: file name Nom - + Size i.e: file size Taille - + Progress i.e: % downloaded Progression @@ -865,13 +865,13 @@ Copyright © 2006 par Christophe Dumez<br> Vitesse DL - + UP Speed i.e: Upload speed Vitesse UP - + Seeds/Leechs i.e: full/partial sources Seeds/Leechs @@ -894,13 +894,13 @@ Copyright © 2006 par Christophe Dumez<br> Terminé - + None i.e: No error message Aucun - + Ratio Ratio @@ -943,12 +943,12 @@ Copyright © 2006 par Christophe Dumez<br> Impossible de décoder le fichier torrent : ' - + This file is either corrupted or this isn't a torrent. Ce fichier est corrompu ou il ne s'agit pas d'un torrent. - + Are you sure? -- qBittorrent Etes vous sûr ? -- qBittorrent @@ -958,17 +958,17 @@ Copyright © 2006 par Christophe Dumez<br> Etes-vous sûr de vouloir enlever tous les fichiers de la liste de téléchargement ? - + &Yes &Oui - + &No &Non - + Are you sure you want to delete the selected item(s) in download list? Etes-vous sûr de vouloir enlever tous les fichiers sélectionnés de la liste de téléchargement ? @@ -1165,7 +1165,7 @@ Copyright © 2006 par Christophe Dumez<br> a fini de télécharger. - + Couldn't listen on any of the given ports. Impossible d'écouter sur les ports donnés. @@ -1467,7 +1467,7 @@ Veuillez d'abord le quitter. Transferts - + Download finished Téléchargement terminé @@ -1490,7 +1490,7 @@ Veuillez d'abord le quitter. Are you sure you want to delete the selected item(s) in download list and in hard drive? - Etes-vous certain de vouloir supprimer les fichiers sélectionnés depuis la liste de téléchargement ainsi que le disque dur ? + Etes-vous certain de vouloir supprimer les fichiers sélectionnés depuis la liste de téléchargement ainsi que le disque dur ? @@ -1499,17 +1499,17 @@ Veuillez d'abord le quitter. qBittorrent %1 - + Connection status: Statut de la connexion : - + Offline Déconnecté - + No peers found... Aucune source trouvée... @@ -1614,37 +1614,37 @@ Veuillez d'abord le quitter. Etes vous certain de vouloir quitter ? - + '%1' was removed. 'xxx.avi' was removed. '%1' a été supprimé. - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. '%1' a été ajouté à la liste de téléchargement. - + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) '%1' a été relancé. (relancement rapide) - + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. '%1' est déjà présent dans la liste de téléchargement. - + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' Impossible de décoder le torrent : '%1' - + None i.e: No error message Aucun @@ -1656,12 +1656,12 @@ Veuillez d'abord le quitter. En écoute sur le port: %1 - + All downloads were paused. Tous les téléchargements ont été mis en pause. - + '%1' paused. xxx.avi paused. '%1' a été mis en pause. @@ -1673,30 +1673,30 @@ Veuillez d'abord le quitter. Connexion... - + All downloads were resumed. Tous les téléchargements ont été relancés. - + '%1' resumed. e.g: xxx.avi resumed. '%1' a été relancé. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. Le téléchargement de %1 est terminé. - + I/O Error i.e: Input/Output Error Erreur E/S - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused Une erreur s'est produite lors de la lecture ou l'écriture de %1. Le disque dur est probablement plein, le téléchargement a été mis en pause @@ -1708,23 +1708,23 @@ Veuillez d'abord le quitter. Une erreur s'est produite (disque plein ?), '%1' a été mis en pause. - + Connection Status: Etat de la connexion : - + Online Connecté - + Firewalled? i.e: Behind a firewall/router? Derrière un pare-feu ou un routeur ? - + No incoming connections... Aucune connexion entrante... @@ -1750,13 +1750,13 @@ Veuillez d'abord le quitter. Résultats - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... Téléchargement de '%1', veuillez patienter... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Une erreur s'est produite (disque plein ?), '%1' a été mis en pause. @@ -1772,28 +1772,28 @@ Veuillez d'abord le quitter. - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 qBittorrent écoute sur le port : %1 - + DHT support [ON], port: %1 Support DHT [ON], port : %1 - + DHT support [OFF] Support DHT [OFF] - + PeX support [ON] Support PeX [ON] - + PeX support [OFF] Support PeX [OFF] @@ -1805,22 +1805,22 @@ Are you sure you want to quit qBittorrent? Etes-vous certain de vouloir quitter qBittorrent ? - + Downloads Téléchargements Are you sure you want to delete the selected item(s) in finished list and in hard drive? - Etes-vous certain de vouloir supprimer les torrents sélectionnés dans la liste de partage et sur le disque dur ? + Etes-vous certain de vouloir supprimer les torrents sélectionnés dans la liste de partage et sur le disque dur ? - + Are you sure you want to delete the selected item(s) in finished list? Etes-vous certain de vouloir supprimer les torrents sélectionnés de la liste de partage ? - + UPnP support [ON] Support UPnP [ON] @@ -1830,17 +1830,17 @@ Etes-vous certain de vouloir quitter qBittorrent ? Attention, partager des oeuvres sous copyright sans en avoir la permission est illégal. - + Encryption support [ON] Support cryptage [ON] - + Encryption support [FORCED] Support cryptage [Forcé] - + Encryption support [OFF] Support cryptage [OFF] @@ -1891,7 +1891,23 @@ Etes-vous certain de vouloir quitter qBittorrent ? - Fast resume data was rejected for torrent %1 + Fast resume data was rejected for torrent %1, checking again... + + + + + Are you sure you want to delete the selected item(s) from download list and from hard drive? + + + + + Are you sure you want to delete the selected item(s) from finished list and from hard drive? + + + + + '%1' was removed permanently. + 'xxx.avi' was removed permanently. @@ -2457,7 +2473,7 @@ Etes-vous certain de vouloir quitter qBittorrent ? Vous devez sélectionner au moins un moteur de recherche. - + Results Résultats diff --git a/src/lang/qbittorrent_hu.qm b/src/lang/qbittorrent_hu.qm index fb883bfaa..c9d04e565 100644 Binary files a/src/lang/qbittorrent_hu.qm and b/src/lang/qbittorrent_hu.qm differ diff --git a/src/lang/qbittorrent_hu.ts b/src/lang/qbittorrent_hu.ts index 228af963d..0d7da6f9d 100644 --- a/src/lang/qbittorrent_hu.ts +++ b/src/lang/qbittorrent_hu.ts @@ -585,24 +585,24 @@ Copyright © 2006 by Christophe Dumez<br> FinishedTorrents - + Finished Feltöltés - + Name i.e: file name Név - + Size i.e: file size Méret - + Progress i.e: % downloaded Folyamat @@ -614,13 +614,13 @@ Copyright © 2006 by Christophe Dumez<br> Bejövő sebesség - + UP Speed i.e: Upload speed Kimenő sebesség - + Seeds/Leechs i.e: full/partial sources Seeder/Leecher @@ -643,13 +643,13 @@ Copyright © 2006 by Christophe Dumez<br> Letöltve - + None i.e: No error message Nincs - + Ratio @@ -662,22 +662,22 @@ Copyright © 2006 by Christophe Dumez<br> Torrent fájl megnyitása - + This file is either corrupted or this isn't a torrent. Ez a fájl sérült, vagy nem is torrent. - + &Yes &Igen - + &No &Nem - + Are you sure you want to delete the selected item(s) in download list? Biztos vagy benne, hogy törlöd a felsorlolt elemeket a letöltési listáról? @@ -697,12 +697,12 @@ Copyright © 2006 by Christophe Dumez<br> Torrentek - + Are you sure? -- qBittorrent Egészen biztos? -- qBittorrent - + Couldn't listen on any of the given ports. A megadott porok zártak. @@ -729,14 +729,14 @@ Please close the other one first. Kérlek előbb azt zárd be. - + Download finished Letöltés elkészült Are you sure you want to delete the selected item(s) in download list and in hard drive? - Egészen biztos vagy benne, hogy törlöd a felsorlolt elemeket a letöltési listáról ÉS a merevlemezről? + Egészen biztos vagy benne, hogy törlöd a felsorlolt elemeket a letöltési listáról ÉS a merevlemezről? @@ -745,17 +745,17 @@ Kérlek előbb azt zárd be. qBittorrent %1 - + Connection status: A kapcsolat állapota: - + Offline Offline - + No peers found... Nem találtam ügyfélt... @@ -842,48 +842,48 @@ Kérlek előbb azt zárd be. Egészen biztos, hogy kilépsz? - + '%1' was removed. 'xxx.avi' was removed. '%1' eltávolítva. - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. '%1' felvéve a letöltési listára. - + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) '%1' visszaállítva. (folytatás) - + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. '%1' már letöltés alatt. - + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' Megfejthetetlen torrent: '%1' - + None i.e: No error message Nincs - + All downloads were paused. Minden letöltés megszakítva. - + '%1' paused. xxx.avi paused. '%1' megállítva. @@ -895,63 +895,63 @@ Kérlek előbb azt zárd be. Csatlakozás... - + All downloads were resumed. Mindegyik letöltés elindítva. - + '%1' resumed. e.g: xxx.avi resumed. '%1' elindítva. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 letöltve. - + I/O Error i.e: Input/Output Error I/O Hiba - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused Hiba történ a(z) %1 írása/olvasása közben. Valószínűleg tele a lemez, így a letöltés megszakítva - + Connection Status: A kapcsolat állapota: - + Online Online - + Firewalled? i.e: Behind a firewall/router? Tűzfal probléma? - + No incoming connections... Nincs kapcsolat... - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... Letöltés alatt: '%1', kis türelmet... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Hiba történt (megtelt a merevlemez?), '%1' megállítva. @@ -967,28 +967,28 @@ Kérlek előbb azt zárd be. RSS - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 qBittorrent ezen a porton figyel: %1 - + DHT support [ON], port: %1 DHT funkció [ON], port: %1 - + DHT support [OFF] DHT funkció [OFF] - + PeX support [ON] PeX [ON] - + PeX support [OFF] PeX [OFF] @@ -1000,7 +1000,7 @@ Are you sure you want to quit qBittorrent? Mégis leállítod a qBittorrentet? - + Downloads Letöltések @@ -1012,15 +1012,15 @@ Mégis leállítod a qBittorrentet? Are you sure you want to delete the selected item(s) in finished list and in hard drive? - Egészen biztos vagy benne, hogy törlöd a felsorolt elemeket a feltöltési listáról ÉS a merevlemezről? + Egészen biztos vagy benne, hogy törlöd a felsorolt elemeket a feltöltési listáról ÉS a merevlemezről? - + Are you sure you want to delete the selected item(s) in finished list? Biztos vagy benne, hogy törlöd a felsorolt elemeket a feltöltési listáról? - + UPnP support [ON] UPnP támogatás [ON] @@ -1030,17 +1030,17 @@ Mégis leállítod a qBittorrentet? Csak óvatosan a megosztással. Nehogy megsértsd a szerzői jogokat!. - + Encryption support [ON] Titkosítás [ON] - + Encryption support [FORCED] Titkosítás [KÉNYSZERÍTVE] - + Encryption support [OFF] Titkosítás [OFF] @@ -1091,7 +1091,23 @@ Mégis leállítod a qBittorrentet? - Fast resume data was rejected for torrent %1 + Fast resume data was rejected for torrent %1, checking again... + + + + + Are you sure you want to delete the selected item(s) from download list and from hard drive? + + + + + Are you sure you want to delete the selected item(s) from finished list and from hard drive? + + + + + '%1' was removed permanently. + 'xxx.avi' was removed permanently. @@ -1494,7 +1510,7 @@ Mégis leállítod a qBittorrentet? Válassz legalább egy keresőt. - + Results Eredmény diff --git a/src/lang/qbittorrent_it.qm b/src/lang/qbittorrent_it.qm index 2ca970419..3bc6f3c18 100644 Binary files a/src/lang/qbittorrent_it.qm and b/src/lang/qbittorrent_it.qm differ diff --git a/src/lang/qbittorrent_it.ts b/src/lang/qbittorrent_it.ts index 57e4bba6f..222f05526 100644 --- a/src/lang/qbittorrent_it.ts +++ b/src/lang/qbittorrent_it.ts @@ -666,36 +666,36 @@ Copyright © 2006 by Christophe Dumez<br> FinishedTorrents - + Finished - + Name i.e: file name Nome - + Size i.e: file size Dimensione - + Progress i.e: % downloaded Progresso - + UP Speed i.e: Upload speed - + Seeds/Leechs i.e: full/partial sources Seeds/Leechs @@ -712,13 +712,13 @@ Copyright © 2006 by Christophe Dumez<br> ETA - + None i.e: No error message - + Ratio @@ -731,7 +731,7 @@ Copyright © 2006 by Christophe Dumez<br> Apri file torrent - + This file is either corrupted or this isn't a torrent. Questo file è corrotto o non è un torrent @@ -741,17 +741,17 @@ Copyright © 2006 by Christophe Dumez<br> Sei sicuro di voler cancellare tutti i file nella lista di download? - + &Yes &Si - + &No &No - + Are you sure you want to delete the selected item(s) in download list? Sei sicuro di voler cancellare gli elementi selezionati dalla lista dei download? @@ -860,7 +860,7 @@ Copyright © 2006 by Christophe Dumez<br> qBittorrent - + Are you sure? -- qBittorrent Sei sicuro? -- qBittorrent @@ -890,7 +890,7 @@ Copyright © 2006 by Christophe Dumez<br> ha finito il dowload. - + Couldn't listen on any of the given ports. Impossibile mettersi in ascolto sulle porte scelte. @@ -1097,7 +1097,7 @@ Example: Downloading www.example.com/test.torrent Downloading - + Download finished Download finito @@ -1120,7 +1120,7 @@ Example: Downloading www.example.com/test.torrent Are you sure you want to delete the selected item(s) in download list and in hard drive? - Sei sicuro di voler rimuovere i selezionati Downloads e i relativi files incompleti? + Sei sicuro di voler rimuovere i selezionati Downloads e i relativi files incompleti? @@ -1134,17 +1134,17 @@ Example: Downloading www.example.com/test.torrent qBittorrent %1 - + Connection status: Status di connessione: - + Offline Non connesso - + No peers found... Nessun peer... @@ -1249,37 +1249,37 @@ Example: Downloading www.example.com/test.torrent Sei sicuro di voler uscire? - + '%1' was removed. 'xxx.avi' was removed. '%1' è stato rimosso - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. '%1' aggiunto alla lista downloads. - + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) '%1' ripreso. (fast resume) - + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. '%1' è già nella lista downloads - + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' Impossibile decifrare il file torrent: '%1' - + None i.e: No error message Nessun @@ -1291,12 +1291,12 @@ Example: Downloading www.example.com/test.torrent In ascolto sulla porta: %1 - + All downloads were paused. Tutti i downloads sono stati fermati. - + '%1' paused. xxx.avi paused. '%1' fermato. @@ -1308,52 +1308,52 @@ Example: Downloading www.example.com/test.torrent Connessione in corso... - + All downloads were resumed. Tutti i downloads sono stati ripresi. - + '%1' resumed. e.g: xxx.avi resumed. '%1' ripreso. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 scaricato. - + I/O Error i.e: Input/Output Error Errore I/O - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused C'è stato un errore di scrittura o di lettura con %1. Probabilmente il disco rigido è pieno, il download è stato fermato - + Connection Status: Status connessione: - + Online Online - + Firewalled? i.e: Behind a firewall/router? Firewalled? - + No incoming connections... Nessuna connession in entrata... @@ -1379,13 +1379,13 @@ Example: Downloading www.example.com/test.torrent Risultati - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... Download di '%1' in corso... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. C'è stato un errore (disco pieno?), '%1' fermato. @@ -1401,28 +1401,28 @@ Example: Downloading www.example.com/test.torrent - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 - + DHT support [ON], port: %1 - + DHT support [OFF] - + PeX support [ON] - + PeX support [OFF] @@ -1433,22 +1433,17 @@ Are you sure you want to quit qBittorrent? - + Downloads - - Are you sure you want to delete the selected item(s) in finished list and in hard drive? - - - - + Are you sure you want to delete the selected item(s) in finished list? - + UPnP support [ON] @@ -1458,17 +1453,17 @@ Are you sure you want to quit qBittorrent? - + Encryption support [ON] - + Encryption support [FORCED] - + Encryption support [OFF] @@ -1519,7 +1514,23 @@ Are you sure you want to quit qBittorrent? - Fast resume data was rejected for torrent %1 + Fast resume data was rejected for torrent %1, checking again... + + + + + Are you sure you want to delete the selected item(s) from download list and from hard drive? + + + + + Are you sure you want to delete the selected item(s) from finished list and from hard drive? + + + + + '%1' was removed permanently. + 'xxx.avi' was removed permanently. @@ -1992,7 +2003,7 @@ Are you sure you want to quit qBittorrent? Devi scegliere almeno un motore di ricerca. - + Results Risultati diff --git a/src/lang/qbittorrent_ja.qm b/src/lang/qbittorrent_ja.qm index 24fbc6387..ef9065d16 100644 Binary files a/src/lang/qbittorrent_ja.qm and b/src/lang/qbittorrent_ja.qm differ diff --git a/src/lang/qbittorrent_ja.ts b/src/lang/qbittorrent_ja.ts index eac4d68e5..227d1afd4 100644 --- a/src/lang/qbittorrent_ja.ts +++ b/src/lang/qbittorrent_ja.ts @@ -625,24 +625,24 @@ Copyright © 2006 by Christophe Dumez<br> FinishedTorrents - + Finished 完了しました - + Name i.e: file name 名前 - + Size i.e: file size サイズ - + Progress i.e: % downloaded 進行状況 @@ -654,13 +654,13 @@ Copyright © 2006 by Christophe Dumez<br> DL 速度 - + UP Speed i.e: Upload speed UP 速度 - + Seeds/Leechs i.e: full/partial sources 速度/リーチ @@ -683,13 +683,13 @@ Copyright © 2006 by Christophe Dumez<br> 完了済み - + None i.e: No error message なし - + Ratio @@ -702,22 +702,22 @@ Copyright © 2006 by Christophe Dumez<br> Torrent ファイルを開く - + This file is either corrupted or this isn't a torrent. このファイルは壊れているかこれは torrent ではないかのどちらかです。 - + &Yes はい(&Y) - + &No いいえ(&N) - + Are you sure you want to delete the selected item(s) in download list? ダウンロードの一覧にある選択されたアイテムを削除してもよろしいですか? @@ -737,12 +737,12 @@ Copyright © 2006 by Christophe Dumez<br> Torrent ファイル - + Are you sure? -- qBittorrent よろしいですか? -- qBittorrent - + Couldn't listen on any of the given ports. 所定のポートで記入できませんでした。 @@ -769,14 +769,14 @@ Please close the other one first. まず他の 1 つを閉じてください。 - + Download finished ダウンロードが完了しました Are you sure you want to delete the selected item(s) in download list and in hard drive? - ダウンロードの一覧およびハード ドライブにある選択されたアイテムを削除してもよろしいですか? + ダウンロードの一覧およびハード ドライブにある選択されたアイテムを削除してもよろしいですか? @@ -785,17 +785,17 @@ Please close the other one first. qBittorrent %1 - + Connection status: 接続状態: - + Offline オフライン - + No peers found... ピアが見つかりません... @@ -882,48 +882,48 @@ Please close the other one first. 終了してもよろしいですか? - + '%1' was removed. 'xxx.avi' was removed. '%1' は削除されました。 - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. '%1' がダウンロードの一覧に追加されました。 - + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) '%1' が再開されました。 (高速再開) - + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. '%1' はすでにダウンロードの一覧にあります。 - + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' Torrent ファイルをデコードすることができません: '%1' - + None i.e: No error message なし - + All downloads were paused. すべてのダウンロードが一時停止されました。 - + '%1' paused. xxx.avi paused. '%1' が停止されました。 @@ -935,63 +935,63 @@ Please close the other one first. 接続しています... - + All downloads were resumed. すべてのダウンロードが再開されました。 - + '%1' resumed. e.g: xxx.avi resumed. '%1' が再開されました。 - + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 はダウンロードが完了しました。 - + I/O Error i.e: Input/Output Error I/O エラー - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused %1 の読み込みまたは書き込みを試行にエラーが発生しました。ディスクはおそらくいっぱいです、ダウンロードは一時停止されました - + Connection Status: 接続状態: - + Online オンライン - + Firewalled? i.e: Behind a firewall/router? ファイアウォールされましたか? - + No incoming connections... 次期接続がありません... - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... '%1' をダウンロードしています、お待ちください... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. エラーが発生しました (ディスクいっぱい?)、'%1' が停止されました。 @@ -1017,18 +1017,18 @@ Please close the other one first. UPnP: WAN が検出されました! - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 qBittorrent は次のポートに拘束されています: %1 - + DHT support [ON], port: %1 DHT サポート [オン]、ポート: %1 - + DHT support [OFF] DHT サポート [オフ] @@ -1043,12 +1043,12 @@ Please close the other one first. UPnP サポート [オフ] - + PeX support [ON] PeX サポート [オン] - + PeX support [OFF] PeX サポート [オフ] @@ -1060,7 +1060,7 @@ Are you sure you want to quit qBittorrent? qBittorrent を終了してもよろしいですか? - + Downloads ダウンロード @@ -1072,15 +1072,15 @@ qBittorrent を終了してもよろしいですか? Are you sure you want to delete the selected item(s) in finished list and in hard drive? - 完了済みの一覧およびハード ドライブにある選択されたアイテムを削除してもよろしいですか? + 完了済みの一覧およびハード ドライブにある選択されたアイテムを削除してもよろしいですか? - + Are you sure you want to delete the selected item(s) in finished list? ダウンロードの一覧にある選択されたアイテムを削除してもよろしいですか? - + UPnP support [ON] UPnP サポート [オン] @@ -1090,17 +1090,17 @@ qBittorrent を終了してもよろしいですか? - + Encryption support [ON] - + Encryption support [FORCED] - + Encryption support [OFF] @@ -1151,7 +1151,23 @@ qBittorrent を終了してもよろしいですか? - Fast resume data was rejected for torrent %1 + Fast resume data was rejected for torrent %1, checking again... + + + + + Are you sure you want to delete the selected item(s) from download list and from hard drive? + + + + + Are you sure you want to delete the selected item(s) from finished list and from hard drive? + + + + + '%1' was removed permanently. + 'xxx.avi' was removed permanently. @@ -1579,7 +1595,7 @@ qBittorrent を終了してもよろしいですか? 少なくとも 1 つの検索エンジンを選択する必要があります。 - + Results 結果 diff --git a/src/lang/qbittorrent_ko.qm b/src/lang/qbittorrent_ko.qm index 69fa3f798..a71bc34b6 100644 Binary files a/src/lang/qbittorrent_ko.qm and b/src/lang/qbittorrent_ko.qm differ diff --git a/src/lang/qbittorrent_ko.ts b/src/lang/qbittorrent_ko.ts index 4d58a63af..76d337bde 100644 --- a/src/lang/qbittorrent_ko.ts +++ b/src/lang/qbittorrent_ko.ts @@ -735,24 +735,24 @@ list: FinishedTorrents - + Finished - + Name i.e: file name 파일 이름 - + Size i.e: file size 크기 - + Progress i.e: % downloaded 진행상황 @@ -764,13 +764,13 @@ list: 다운로드 속도 - + UP Speed i.e: Upload speed 업로드 속도 - + Seeds/Leechs i.e: full/partial sources 완전체 공유/부분 공유 @@ -787,13 +787,13 @@ list: 남은시간 - + None i.e: No error message 없음 - + Ratio @@ -891,12 +891,12 @@ list? 파일을 지우고 싶으세요? - + &Yes &예 - + &No &아니요 @@ -1000,7 +1000,7 @@ download list? - + This file is either corrupted or this isn't a torrent. 이 파일은 오류가 있거나 토런트 파일이 아닙니다. @@ -1010,7 +1010,7 @@ download list? 다운로드 목록에 있는 모든 파일을 지우고 싶으세요? - + Are you sure you want to delete the selected item(s) in download list? 다운로딩 목록에서 선택하신 모든 아이템을 삭제하시겠습니까? @@ -1030,7 +1030,7 @@ download list? 큐비토런트 - + Are you sure? -- qBittorrent 재확인해주십시요? -- 큐비토런트 @@ -1066,7 +1066,7 @@ download list? 가 완료되었습니다. - + Couldn't listen on any of the given ports. 설정하신 포트에 연결할수 없습니다. @@ -1345,10 +1345,10 @@ Please close the other one first. Are you sure you want to delete the selected item(s) in download list and in hard drive? - 정말로 지금 선택하신 파일들을 다운로드 목록과 하드 드라이브에서 삭제하시겠습니까? + 정말로 지금 선택하신 파일들을 다운로드 목록과 하드 드라이브에서 삭제하시겠습니까? - + Download finished 다운로드 완료 @@ -1370,17 +1370,17 @@ Please close the other one first. 큐비토런트 %1 - + Connection status: 연결 상태: - + Offline 오프라인 - + No peers found... 피어가 없습니다... @@ -1480,37 +1480,37 @@ Please close the other one first. 정말로 종료하시겠습니까? - + '%1' was removed. 'xxx.avi' was removed. '%1' 가 삭제되었습니다. - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. '%1'가 다운로드 목록에 추가되었습니다. - + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) '%1'가 다시 시작되었습니다. (빠른 재개) - + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. '%1'는/은 이미 다운로드 목록에 포함되어 있습니다. - + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' 다음 파일을 디코드할수 없습니다: '%1' - + None i.e: No error message 없음 @@ -1522,12 +1522,12 @@ Please close the other one first. 이미 연결 된 포트: %1 - + All downloads were paused. 모든 다운로드가 멈추었습니다. - + '%1' paused. xxx.avi paused. '%1'가 정지 되었습니다. @@ -1539,30 +1539,30 @@ Please close the other one first. 연결중... - + All downloads were resumed. 모든 다운로드가 다시 시작되었습니다. - + '%1' resumed. e.g: xxx.avi resumed. '%1' 가 다운로드를 다시 시작되었습니다. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1가 다운로드를 완료하였습니다. - + I/O Error i.e: Input/Output Error I/O 에러 - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused %1을 사용하려고 하던 중 오류가 발생했습니다. 디스크 용량이 꽉찼고 다운로드가 중지되었습니다 @@ -1574,23 +1574,23 @@ Please close the other one first. 오류 발생 (디스크가 꽉찼습니까?), '%1'가 정지 되었습니다. - + Connection Status: 연결 상태: - + Online 온라인 - + Firewalled? i.e: Behind a firewall/router? 방화벽이 설치되어있습니까? - + No incoming connections... 받는 연결이 없습니다... @@ -1616,13 +1616,13 @@ Please close the other one first. 결과 - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... '%1'을 다운 중입니다, 잠시 기다려 주세요... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. 오류 발생 (디스크가 꽉찼습니까?), '%1'가 정지 되었습니다. @@ -1638,28 +1638,28 @@ Please close the other one first. - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 - + DHT support [ON], port: %1 - + DHT support [OFF] - + PeX support [ON] - + PeX support [OFF] @@ -1670,22 +1670,17 @@ Are you sure you want to quit qBittorrent? - + Downloads - - Are you sure you want to delete the selected item(s) in finished list and in hard drive? - - - - + Are you sure you want to delete the selected item(s) in finished list? - + UPnP support [ON] @@ -1695,17 +1690,17 @@ Are you sure you want to quit qBittorrent? - + Encryption support [ON] - + Encryption support [FORCED] - + Encryption support [OFF] @@ -1756,7 +1751,23 @@ Are you sure you want to quit qBittorrent? - Fast resume data was rejected for torrent %1 + Fast resume data was rejected for torrent %1, checking again... + + + + + Are you sure you want to delete the selected item(s) from download list and from hard drive? + + + + + Are you sure you want to delete the selected item(s) from finished list and from hard drive? + + + + + '%1' was removed permanently. + 'xxx.avi' was removed permanently. @@ -2307,7 +2318,7 @@ Are you sure you want to quit qBittorrent? 적어도 하나 이상의 검색 엔진을 선택해야 합니다. - + Results 결과 diff --git a/src/lang/qbittorrent_nb.qm b/src/lang/qbittorrent_nb.qm index 321af8bb7..6d9e9151c 100644 Binary files a/src/lang/qbittorrent_nb.qm and b/src/lang/qbittorrent_nb.qm differ diff --git a/src/lang/qbittorrent_nb.ts b/src/lang/qbittorrent_nb.ts index c51c4371e..7daed24ab 100644 --- a/src/lang/qbittorrent_nb.ts +++ b/src/lang/qbittorrent_nb.ts @@ -655,24 +655,24 @@ Copyright © 2006 av Christophe Dumez<br> FinishedTorrents - + Finished Ferdig - + Name i.e: file name Navn - + Size i.e: file size Størrelse - + Progress i.e: % downloaded @@ -684,13 +684,13 @@ Copyright © 2006 av Christophe Dumez<br> Nedlastingshastighet - + UP Speed i.e: Upload speed Opplastingshastighet - + Seeds/Leechs i.e: full/partial sources Delere/Nedlastere @@ -713,13 +713,13 @@ Copyright © 2006 av Christophe Dumez<br> Ferdig - + None i.e: No error message Ingen - + Ratio @@ -732,7 +732,7 @@ Copyright © 2006 av Christophe Dumez<br> Åpne torrentfiler - + This file is either corrupted or this isn't a torrent. Denne filen er enten ødelagt, eller det er ikke en torrent. @@ -742,17 +742,17 @@ Copyright © 2006 av Christophe Dumez<br> Ønsker du å slette alle filene in nedlastingslisten? - + &Yes &Ja - + &No &Nei - + Are you sure you want to delete the selected item(s) in download list? Ønsker du å slette valgt(e) element(er) i nedlastingslisten? @@ -861,7 +861,7 @@ Copyright © 2006 av Christophe Dumez<br> qBittorrent - + Are you sure? -- qBittorrent Er du sikker? -- qBittorrent @@ -891,7 +891,7 @@ Copyright © 2006 av Christophe Dumez<br> er ferdig lastet ned. - + Couldn't listen on any of the given ports. Klarte ikke å lytte på noen av de oppgitte portene. @@ -1099,10 +1099,10 @@ Vennligst avslutt denne først. Are you sure you want to delete the selected item(s) in download list and in hard drive? - Ønsker du å slette valgte element(er) i nedlastningslisten, og fra lagringsenheten? + Ønsker du å slette valgte element(er) i nedlastningslisten, og fra lagringsenheten? - + Download finished Nedlastingen er fullført @@ -1129,17 +1129,17 @@ Vennligst avslutt denne først. qBittorrent %1 - + Connection status: Tilkoblingsstatus: - + Offline Frakoblet - + No peers found... Ingen tjenere funnet... @@ -1244,37 +1244,37 @@ Vennligst avslutt denne først. Ønsker du å avslutte qBittorrent? - + '%1' was removed. 'xxx.avi' was removed. '%1' ble fjernet. - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. '%1' ble lagt til i nedlastingslisten. - + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) '%1' ble gjenopptatt (hurtig gjenopptaging) - + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. '%1' finnes allerede i nedlastingslisten. - + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' Klarte ikke å dekode torrentfilen: '%1' - + None i.e: No error message Ingen @@ -1286,12 +1286,12 @@ Vennligst avslutt denne først. Lytter på port: %1 - + All downloads were paused. Alle nedlastinger ble pauset. - + '%1' paused. xxx.avi paused. '%1' pauset. @@ -1303,30 +1303,30 @@ Vennligst avslutt denne først. Kobler til... - + All downloads were resumed. Alle nedlastinger ble gjenopptatt. - + '%1' resumed. e.g: xxx.avi resumed. '%1' gjenopptatt. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 er ferdig nedlastet. - + I/O Error i.e: Input/Output Error Lese/Skrive feil - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused Det oppsto en feil ved lesing eller skriving til %1. Disken er mest sannsynelig full, nedlastingen har blitt pauset @@ -1338,23 +1338,23 @@ Vennligst avslutt denne først. Det har oppstått en feil (full disk?), '%1' er pauset. - + Connection Status: Tilkoblingsstatus: - + Online Tilkoblet - + Firewalled? i.e: Behind a firewall/router? Beskyttet av en brannmur? - + No incoming connections... Ingen innkommende tilkoblinger... @@ -1380,13 +1380,13 @@ Vennligst avslutt denne først. Resultater - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... Laster ned '%1'... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Det har oppstått en feil (full disk?), '%1' er pauset. @@ -1402,28 +1402,28 @@ Vennligst avslutt denne først. - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 - + DHT support [ON], port: %1 - + DHT support [OFF] - + PeX support [ON] - + PeX support [OFF] @@ -1434,22 +1434,17 @@ Are you sure you want to quit qBittorrent? - + Downloads - - Are you sure you want to delete the selected item(s) in finished list and in hard drive? - - - - + Are you sure you want to delete the selected item(s) in finished list? - + UPnP support [ON] @@ -1459,17 +1454,17 @@ Are you sure you want to quit qBittorrent? - + Encryption support [ON] - + Encryption support [FORCED] - + Encryption support [OFF] @@ -1520,7 +1515,23 @@ Are you sure you want to quit qBittorrent? - Fast resume data was rejected for torrent %1 + Fast resume data was rejected for torrent %1, checking again... + + + + + Are you sure you want to delete the selected item(s) from download list and from hard drive? + + + + + Are you sure you want to delete the selected item(s) from finished list and from hard drive? + + + + + '%1' was removed permanently. + 'xxx.avi' was removed permanently. @@ -1993,7 +2004,7 @@ Are you sure you want to quit qBittorrent? Du må velge minst en søkemotor. - + Results Resultater diff --git a/src/lang/qbittorrent_nl.qm b/src/lang/qbittorrent_nl.qm index 1d5350156..e5d08f83d 100644 Binary files a/src/lang/qbittorrent_nl.qm and b/src/lang/qbittorrent_nl.qm differ diff --git a/src/lang/qbittorrent_nl.ts b/src/lang/qbittorrent_nl.ts index bb07cf8fc..2eee747f0 100644 --- a/src/lang/qbittorrent_nl.ts +++ b/src/lang/qbittorrent_nl.ts @@ -809,24 +809,24 @@ Copyright 2006 door Christophe Dumez<br> FinishedTorrents - + Finished - + Name i.e: file name Naam - + Size i.e: file size Grootte - + Progress i.e: % downloaded Voortgang @@ -838,13 +838,13 @@ Copyright 2006 door Christophe Dumez<br> DL snelheid - + UP Speed i.e: Upload speed UP snelheid - + Seeds/Leechs i.e: full/partial sources Up-/Downloaders @@ -861,13 +861,13 @@ Copyright 2006 door Christophe Dumez<br> Geschatte resterende tijd - + None i.e: No error message Geen - + Ratio @@ -956,12 +956,12 @@ Copyright 2006 door Christophe Dumez<br> Torrentfile kan niet gedecodeerd worden: - + This file is either corrupted or this isn't a torrent. Dit bestand is corrupt of is geen torrent. - + Are you sure? -- qBittorrent Weet u het zeker? -- qBittorrent @@ -971,12 +971,12 @@ Copyright 2006 door Christophe Dumez<br> Weet u zeker dat u alle bestanden uit de downloadlijst wilt verwijderen? - + &Yes &Ja - + &No &Nee @@ -986,7 +986,7 @@ Copyright 2006 door Christophe Dumez<br> Downloadlijst leeg gemaakt. - + Are you sure you want to delete the selected item(s) in download list? Weet u zeker dat u de geselecteerde bestanden uit de downloadlijst wilt verwijderen? @@ -1054,7 +1054,7 @@ Copyright 2006 door Christophe Dumez<br> is klaar met downloaden. - + Couldn't listen on any of the given ports. Kan niet luisteren op de aangegeven poorten. @@ -1336,7 +1336,7 @@ Stop het eerste proccess eerst. Overdrachten - + Download finished Download afgerond @@ -1359,7 +1359,7 @@ Stop het eerste proccess eerst. Are you sure you want to delete the selected item(s) in download list and in hard drive? - Weet u zeker dat u de geselecteerde onderdelen in de download lijst en van harde schijf wil verwijderen? + Weet u zeker dat u de geselecteerde onderdelen in de download lijst en van harde schijf wil verwijderen? @@ -1368,17 +1368,17 @@ Stop het eerste proccess eerst. qBittorrent %1 - + Connection status: Verbindingsstatus: - + Offline Offline - + No peers found... Geen peers gevonden... @@ -1478,37 +1478,37 @@ Stop het eerste proccess eerst. Weet u zeker dat u wilt afsluiten? - + '%1' was removed. 'xxx.avi' was removed. '%1' is verwijderd. - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. '%1' toegevoegd aan de downloadlijst. - + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) '%1' hervat. (snelle hervatting) - + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. '%1' staat al in de downloadlijst. - + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' Torrentbestand kan niet worden gedecodeerd: '%1' - + None i.e: No error message Geen @@ -1520,12 +1520,12 @@ Stop het eerste proccess eerst. Aan het luisteren op poort: %1 - + All downloads were paused. Alle downloads gepauzeerd. - + '%1' paused. xxx.avi paused. '%1' gepauzeerd. @@ -1537,52 +1537,52 @@ Stop het eerste proccess eerst. Verbinding maken... - + All downloads were resumed. Alle downloads hervat. - + '%1' resumed. e.g: xxx.avi resumed. '%1' hervat. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 is klaar met downloaden. - + I/O Error i.e: Input/Output Error I/O Fout - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused Een fout is opgetreden tijdens het lezen of schrijven van %1. De schijf is waarschijnlijk vol, de download is gepauzeerd - + Connection Status: Verbindingsstatus: - + Online Online - + Firewalled? i.e: Behind a firewall/router? Geblokkeerd? - + No incoming connections... Geen inkomende verbindingen... @@ -1608,13 +1608,13 @@ Stop het eerste proccess eerst. Resultaten - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... Bezig met downloaden van '%1', even geduld alstublieft... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Er is een fout opgetreden (schijf vol?), '%1' gepauzeerd. @@ -1630,28 +1630,28 @@ Stop het eerste proccess eerst. - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 - + DHT support [ON], port: %1 - + DHT support [OFF] - + PeX support [ON] - + PeX support [OFF] @@ -1662,22 +1662,17 @@ Are you sure you want to quit qBittorrent? - + Downloads - - Are you sure you want to delete the selected item(s) in finished list and in hard drive? - - - - + Are you sure you want to delete the selected item(s) in finished list? - + UPnP support [ON] @@ -1687,17 +1682,17 @@ Are you sure you want to quit qBittorrent? - + Encryption support [ON] - + Encryption support [FORCED] - + Encryption support [OFF] @@ -1748,7 +1743,23 @@ Are you sure you want to quit qBittorrent? - Fast resume data was rejected for torrent %1 + Fast resume data was rejected for torrent %1, checking again... + + + + + Are you sure you want to delete the selected item(s) from download list and from hard drive? + + + + + Are you sure you want to delete the selected item(s) from finished list and from hard drive? + + + + + '%1' was removed permanently. + 'xxx.avi' was removed permanently. @@ -2299,7 +2310,7 @@ Are you sure you want to quit qBittorrent? U moet tenminste een zoekmachine kiezen. - + Results Resultaten diff --git a/src/lang/qbittorrent_pl.qm b/src/lang/qbittorrent_pl.qm index 1c3a63ff0..5e36e5c02 100644 Binary files a/src/lang/qbittorrent_pl.qm and b/src/lang/qbittorrent_pl.qm differ diff --git a/src/lang/qbittorrent_pl.ts b/src/lang/qbittorrent_pl.ts index ffbdf0a2b..ff91aae81 100644 --- a/src/lang/qbittorrent_pl.ts +++ b/src/lang/qbittorrent_pl.ts @@ -797,24 +797,24 @@ Wszystkie prawa zastrżeżone © 2006 Christophe Dumez<br> FinishedTorrents - + Finished Zakończono - + Name i.e: file name Nazwa - + Size i.e: file size Rozmiar - + Progress i.e: % downloaded Postęp @@ -826,13 +826,13 @@ Wszystkie prawa zastrżeżone © 2006 Christophe Dumez<br> Prędkość DL - + UP Speed i.e: Upload speed Prędkość UP - + Seeds/Leechs i.e: full/partial sources Seeds/Leechs @@ -855,13 +855,13 @@ Wszystkie prawa zastrżeżone © 2006 Christophe Dumez<br> Zakończono - + None i.e: No error message Brak - + Ratio Ratio @@ -935,7 +935,7 @@ Wszystkie prawa zastrżeżone © 2006 Christophe Dumez<br> Problem z odkodowaniem pliku torrent: - + This file is either corrupted or this isn't a torrent. Plik jest uszkodzony lub nie jest plikiem torrent. @@ -945,12 +945,12 @@ Wszystkie prawa zastrżeżone © 2006 Christophe Dumez<br> Czy chcesz usunać wszystkie pliki z listy pobierania? - + &Yes &Tak - + &No &Nie @@ -960,7 +960,7 @@ Wszystkie prawa zastrżeżone © 2006 Christophe Dumez<br> List pobierania wyczyszczona. - + Are you sure you want to delete the selected item(s) in download list? Czy chcesz usunąć wybrane elementy z listy pobierania? @@ -1056,7 +1056,7 @@ Wszystkie prawa zastrżeżone © 2006 Christophe Dumez<br> qBittorrent - + Are you sure? -- qBittorrent Jesteś pewny? -- qBittorrent @@ -1097,7 +1097,7 @@ Wszystkie prawa zastrżeżone © 2006 Christophe Dumez<br> zakończył sciąganie. - + Couldn't listen on any of the given ports. Nie można nasłuchiwać na żadnym z podanych portów. @@ -1378,10 +1378,10 @@ Zamknij najpierw okno podglądu. Are you sure you want to delete the selected item(s) in download list and in hard drive? - Czy na pewno chcesz usunąć wybrany element z listy i z dysku? + Czy na pewno chcesz usunąć wybrany element z listy i z dysku? - + Download finished Pobieranie zakończone @@ -1403,17 +1403,17 @@ Zamknij najpierw okno podglądu. qBittorent %1 - + Connection status: Status połączenia: - + Offline Niepołączony - + No peers found... Nie znaleziono peerów... @@ -1513,37 +1513,37 @@ Zamknij najpierw okno podglądu. Czy na pewno chcesz zakończyć aplikację? - + '%1' was removed. 'xxx.avi' was removed. '%1' został usunięty. - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. '%1' dodany do listy pobierania. - + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) '%1' wzniowiony. (szybkie wznawianie) - + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. '%1' jest już na liście pobierania. - + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' Problem z odczytem pliku torrent: '%1' - + None i.e: No error message Brak @@ -1555,12 +1555,12 @@ Zamknij najpierw okno podglądu. Nasłuchuje na porcie: %1 - + All downloads were paused. Wszystkie zadania pobierania wstrzymane. - + '%1' paused. xxx.avi paused. '%1' wstrzymany. @@ -1572,30 +1572,30 @@ Zamknij najpierw okno podglądu. Łączenie... - + All downloads were resumed. Wszystkie zadania pobierania wzniowione. - + '%1' resumed. e.g: xxx.avi resumed. '%1' wznowiony. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 został pobrany. - + I/O Error i.e: Input/Output Error Błąd We/Wy - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused Wystąpił błąd podczas próby odczytu lub zapisu %1. Prawdopodobnie brak miejsca na dysku, zadania pobierania zostały wstrzymane @@ -1607,23 +1607,23 @@ Zamknij najpierw okno podglądu. Wystąpił błąd (brak miejsca?), '%1' wstrzymany. - + Connection Status: Status połączenia: - + Online Połączony - + Firewalled? i.e: Behind a firewall/router? Zablokowany? - + No incoming connections... Brak połączeń przychodzących... @@ -1649,13 +1649,13 @@ Zamknij najpierw okno podglądu. Wyniki - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... Pobieranie '%1', proszę czekać... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Wystąpił błąd (brak miejsca?), '%1' wstrzymany. @@ -1671,28 +1671,28 @@ Zamknij najpierw okno podglądu. RSS - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 e.g: qBittorrent jest podłączony do portu: 1666 - + DHT support [ON], port: %1 Wsparcie DHT [WŁ], port: %1 - + DHT support [OFF] Wsparcie DHT [WYŁ] - + PeX support [ON] Wsparcie PeX [WŁ] - + PeX support [OFF] Wsparcie pEx [WYŁ] @@ -1704,22 +1704,22 @@ Are you sure you want to quit qBittorrent? Czy napewno zamknąć qBittorrent? - + Downloads Pobieranie Are you sure you want to delete the selected item(s) in finished list and in hard drive? - Czy napewno usunąć wybrane pozycje z listy zakończonych z twardego dysku? + Czy napewno usunąć wybrane pozycje z listy zakończonych z twardego dysku? - + Are you sure you want to delete the selected item(s) in finished list? Czy napewno usunąć wybrane pozycje z listy zakończonych? - + UPnP support [ON] Wsparcie UPnP [WŁ] @@ -1729,17 +1729,17 @@ Czy napewno zamknąć qBittorrent? Bądź ostrożny, wymiana plików chronionych prawami autorskimi jest niezgodna z prawem. - + Encryption support [ON] Wsparcie szyfrowania [WŁ] - + Encryption support [FORCED] Wsparcie szyfrowania [WYMUSZONE] - + Encryption support [OFF] Wsparcie szyfrowania [WYŁ] @@ -1790,7 +1790,23 @@ Czy napewno zamknąć qBittorrent? - Fast resume data was rejected for torrent %1 + Fast resume data was rejected for torrent %1, checking again... + + + + + Are you sure you want to delete the selected item(s) from download list and from hard drive? + + + + + Are you sure you want to delete the selected item(s) from finished list and from hard drive? + + + + + '%1' was removed permanently. + 'xxx.avi' was removed permanently. @@ -2351,7 +2367,7 @@ Czy napewno zamknąć qBittorrent? Musisz wybrać przynajmniej jedną wyszukiwarkę. - + Results Wyniki diff --git a/src/lang/qbittorrent_pt.qm b/src/lang/qbittorrent_pt.qm index 79229e78b..36a4926d7 100644 Binary files a/src/lang/qbittorrent_pt.qm and b/src/lang/qbittorrent_pt.qm differ diff --git a/src/lang/qbittorrent_pt.ts b/src/lang/qbittorrent_pt.ts index 25078a5b1..a45b2985d 100644 --- a/src/lang/qbittorrent_pt.ts +++ b/src/lang/qbittorrent_pt.ts @@ -665,24 +665,24 @@ Copyright ©2007 por Christophe Dumez<br> FinishedTorrents - + Finished Concluído - + Name i.e: file name Nome - + Size i.e: file size Tamanho - + Progress i.e: % downloaded Progresso @@ -694,13 +694,13 @@ Copyright ©2007 por Christophe Dumez<br> Velocidade de download - + UP Speed i.e: Upload speed Velocidade de Upload - + Seeds/Leechs i.e: full/partial sources Seeds/Leechs @@ -723,13 +723,13 @@ Copyright ©2007 por Christophe Dumez<br> Concluído - + None i.e: No error message Nenhum - + Ratio @@ -747,7 +747,7 @@ Copyright ©2007 por Christophe Dumez<br> Desconhecido - + This file is either corrupted or this isn't a torrent. Este arquivo está corrompido ou não é um torrent. @@ -757,17 +757,17 @@ Copyright ©2007 por Christophe Dumez<br> Tem certeza que deseja apagar todos os arquivos na lista de downloads? - + &Yes &Sim - + &No &Não - + Are you sure you want to delete the selected item(s) in download list? Tem certeza que deseja apagar o(s) arquivo(s) selecionado(s) na lista de downloads? @@ -896,7 +896,7 @@ Copyright ©2007 por Christophe Dumez<br> qBittorrent - + Are you sure? -- qBittorrent Tem certeza? -- qBittorrent @@ -926,7 +926,7 @@ Copyright ©2007 por Christophe Dumez<br> download finalizado. - + Couldn't listen on any of the given ports. Não foi possível escutar pelas portas dadas. @@ -1150,7 +1150,7 @@ Por favor feche o outro primeiro. Transferências - + Download finished Download finalizado @@ -1173,7 +1173,7 @@ Por favor feche o outro primeiro. Are you sure you want to delete the selected item(s) in download list and in hard drive? - Você tem certeza que quer deletar o(s) arquivo(s) selecionado(s) da lista de download e do seu disco rígido? + Você tem certeza que quer deletar o(s) arquivo(s) selecionado(s) da lista de download e do seu disco rígido? @@ -1187,17 +1187,17 @@ Por favor feche o outro primeiro. qBittorrent %1 - + Connection status: Estado da conexão: - + Offline Offline - + No peers found... Peers não encontrados... @@ -1297,37 +1297,37 @@ Por favor feche o outro primeiro. Você tem certeza que quer sair? - + '%1' was removed. 'xxx.avi' was removed. '%1' foi deletado. - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. '%1' adicionado a lista de download. - + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) '%1' continuando. (continue rápido) - + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. '%1' já está na lista de download. - + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' Incapaz de decodificar arquivo torrent: '%1' - + None i.e: No error message Nenhum @@ -1339,12 +1339,12 @@ Por favor feche o outro primeiro. Escutando a porta: %1 - + All downloads were paused. Todos os downloads pausados. - + '%1' paused. xxx.avi paused. '%1' pausado. @@ -1356,30 +1356,30 @@ Por favor feche o outro primeiro. Conectando... - + All downloads were resumed. Todos os downloads foram resumidos. - + '%1' resumed. e.g: xxx.avi resumed. '%1' resumido. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 download finalizado. - + I/O Error i.e: Input/Output Error Erro de Entrada/Saída - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused Ocorreu um erro quando tentava ler ou escrever %1. Provavelmente o seu disco está cheio, o download foi pausado @@ -1391,23 +1391,23 @@ Por favor feche o outro primeiro. Ocorreu um erro (disco cheio?), '%1' pausado. - + Connection Status: Estado da conexão: - + Online Online - + Firewalled? i.e: Behind a firewall/router? Sob firewall? - + No incoming connections... Sem conexão... @@ -1433,13 +1433,13 @@ Por favor feche o outro primeiro. Resultados - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... baixando '%1', por favor espere... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Ocorreu um erro (disco cheio?), '%1' pausado. @@ -1455,28 +1455,28 @@ Por favor feche o outro primeiro. - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 - + DHT support [ON], port: %1 - + DHT support [OFF] - + PeX support [ON] - + PeX support [OFF] @@ -1487,22 +1487,17 @@ Are you sure you want to quit qBittorrent? - + Downloads - - Are you sure you want to delete the selected item(s) in finished list and in hard drive? - - - - + Are you sure you want to delete the selected item(s) in finished list? - + UPnP support [ON] @@ -1512,17 +1507,17 @@ Are you sure you want to quit qBittorrent? - + Encryption support [ON] - + Encryption support [FORCED] - + Encryption support [OFF] @@ -1573,7 +1568,23 @@ Are you sure you want to quit qBittorrent? - Fast resume data was rejected for torrent %1 + Fast resume data was rejected for torrent %1, checking again... + + + + + Are you sure you want to delete the selected item(s) from download list and from hard drive? + + + + + Are you sure you want to delete the selected item(s) from finished list and from hard drive? + + + + + '%1' was removed permanently. + 'xxx.avi' was removed permanently. @@ -2109,7 +2120,7 @@ Are you sure you want to quit qBittorrent? Você deve selecionar pelo menos um mecanismo de busca. - + Results Resultados diff --git a/src/lang/qbittorrent_ro.qm b/src/lang/qbittorrent_ro.qm index 32eed8ded..c8a28de12 100644 Binary files a/src/lang/qbittorrent_ro.qm and b/src/lang/qbittorrent_ro.qm differ diff --git a/src/lang/qbittorrent_ro.ts b/src/lang/qbittorrent_ro.ts index 38e157458..449c8dc71 100644 --- a/src/lang/qbittorrent_ro.ts +++ b/src/lang/qbittorrent_ro.ts @@ -675,24 +675,24 @@ Copyright © 2006 by Christophe Dumez<br> FinishedTorrents - + Finished Finişat - + Name i.e: file name Nume - + Size i.e: file size Capacitate - + Progress i.e: % downloaded Progress @@ -704,13 +704,13 @@ Copyright © 2006 by Christophe Dumez<br> Viteză DL - + UP Speed i.e: Upload speed Viteză UP - + Seeds/Leechs i.e: full/partial sources @@ -733,13 +733,13 @@ Copyright © 2006 by Christophe Dumez<br> Finişat - + None i.e: No error message Nimic - + Ratio @@ -757,7 +757,7 @@ Copyright © 2006 by Christophe Dumez<br> Necunoscut - + This file is either corrupted or this isn't a torrent. Acest fişier este deteriorat sau nu este torrent. @@ -767,17 +767,17 @@ Copyright © 2006 by Christophe Dumez<br> Sunteţi siguri să ştergeţi toate fişierele din lista de download? - + &Yes &Yes - + &No &No - + Are you sure you want to delete the selected item(s) in download list? Sunteţi siguri să ştergeţi itemii selectaţi din lista download? @@ -906,7 +906,7 @@ Copyright © 2006 by Christophe Dumez<br> qBittorrent - + Are you sure? -- qBittorrent Sunteţi siguri? -- qBittorrent @@ -936,7 +936,7 @@ Copyright © 2006 by Christophe Dumez<br> am terminat descărcarea. - + Couldn't listen on any of the given ports. Nu pot asculta pe orice port dat. @@ -1190,10 +1190,10 @@ Vă rugăm să-l opriţi. Are you sure you want to delete the selected item(s) in download list and in hard drive? - Doriti să ştergeţi item(ii) selectaţi? + Doriti să ştergeţi item(ii) selectaţi? - + Download finished @@ -1220,17 +1220,17 @@ Vă rugăm să-l opriţi. - + Connection status: - + Offline - + No peers found... @@ -1324,48 +1324,48 @@ Vă rugăm să-l opriţi. - + '%1' was removed. 'xxx.avi' was removed. - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. - + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) - + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. - + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' - + None i.e: No error message Nimic - + All downloads were paused. - + '%1' paused. xxx.avi paused. @@ -1377,52 +1377,52 @@ Vă rugăm să-l opriţi. Conectare... - + All downloads were resumed. - + '%1' resumed. e.g: xxx.avi resumed. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. - + I/O Error i.e: Input/Output Error Eroare de intrare/eşire - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused - + Connection Status: - + Online - + Firewalled? i.e: Behind a firewall/router? - + No incoming connections... @@ -1433,13 +1433,13 @@ Vă rugăm să-l opriţi. Rezultate - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. @@ -1455,28 +1455,28 @@ Vă rugăm să-l opriţi. - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 - + DHT support [ON], port: %1 - + DHT support [OFF] - + PeX support [ON] - + PeX support [OFF] @@ -1487,22 +1487,17 @@ Are you sure you want to quit qBittorrent? - + Downloads - - Are you sure you want to delete the selected item(s) in finished list and in hard drive? - - - - + Are you sure you want to delete the selected item(s) in finished list? - + UPnP support [ON] @@ -1512,17 +1507,17 @@ Are you sure you want to quit qBittorrent? - + Encryption support [ON] - + Encryption support [FORCED] - + Encryption support [OFF] @@ -1573,7 +1568,23 @@ Are you sure you want to quit qBittorrent? - Fast resume data was rejected for torrent %1 + Fast resume data was rejected for torrent %1, checking again... + + + + + Are you sure you want to delete the selected item(s) from download list and from hard drive? + + + + + Are you sure you want to delete the selected item(s) from finished list and from hard drive? + + + + + '%1' was removed permanently. + 'xxx.avi' was removed permanently. @@ -2109,7 +2120,7 @@ Are you sure you want to quit qBittorrent? Trebuie să selectaţi cel puţin un motor de căutare. - + Results Rezultate diff --git a/src/lang/qbittorrent_ru.qm b/src/lang/qbittorrent_ru.qm index a1352583f..98db7623c 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 54dba6d5b..0ed16c241 100644 --- a/src/lang/qbittorrent_ru.ts +++ b/src/lang/qbittorrent_ru.ts @@ -732,24 +732,24 @@ Copyright © 2006 by Christophe Dumez<br> FinishedTorrents - + Finished Завершено - + Name i.e: file name Имя - + Size i.e: file size Размер - + Progress i.e: % downloaded @@ -761,13 +761,13 @@ Copyright © 2006 by Christophe Dumez<br> Скорость скач - + UP Speed i.e: Upload speed Скорость загр - + Seeds/Leechs i.e: full/partial sources Раздающих/Качающих @@ -784,13 +784,13 @@ Copyright © 2006 by Christophe Dumez<br> Завершено - + None i.e: No error message Нет - + Ratio @@ -879,12 +879,12 @@ Copyright © 2006 by Christophe Dumez<br> Невозможно декодировать torrent файл: - + This file is either corrupted or this isn't a torrent. Этот файл либо поврежден, либо не torrent типа. - + Are you sure? -- qBittorrent Вы уверены? -- qBittorrent @@ -894,12 +894,12 @@ Copyright © 2006 by Christophe Dumez<br> Вы уверены что хотите удалить все файлы из списка закачек? - + &Yes &Да - + &No &Нет @@ -909,7 +909,7 @@ Copyright © 2006 by Christophe Dumez<br> Список закачек очищен. - + Are you sure you want to delete the selected item(s) in download list? Вы уверены что хотите удалить выделенные пункты из списка закачек? @@ -977,7 +977,7 @@ Copyright © 2006 by Christophe Dumez<br> скачивание завершено. - + Couldn't listen on any of the given ports. Невозможно прослушать ни один из заданных портов. @@ -1285,10 +1285,10 @@ Please close the other one first. Are you sure you want to delete the selected item(s) in download list and in hard drive? - Вы действительно хотите удалить выбранный(-е) элемент(ы) из списка скачек и с жесткого диска? + Вы действительно хотите удалить выбранный(-е) элемент(ы) из списка скачек и с жесткого диска? - + Download finished Скачивание завершено @@ -1310,17 +1310,17 @@ Please close the other one first. qBittorrent %1 - + Connection status: Состояние связи: - + Offline Не в сети - + No peers found... Не найдено пиров... @@ -1420,37 +1420,37 @@ Please close the other one first. Вы действительно хотите выйти? - + '%1' was removed. 'xxx.avi' was removed. '%1' был удален. - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. '%1' добавлен в список закачек. - + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) '%1' запущен. (быстрый запуск) - + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. '%1' уже присутствует в списке закачек. - + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' Не удалось раскодировать torrent файл: '%1' - + None i.e: No error message Нет @@ -1462,12 +1462,12 @@ Please close the other one first. Прослушивание порта: %1 - + All downloads were paused. Все закачки были приостановлены. - + '%1' paused. xxx.avi paused. '%1' приостановлен. @@ -1479,30 +1479,30 @@ Please close the other one first. Подключение... - + All downloads were resumed. Все закачки были запущены. - + '%1' resumed. e.g: xxx.avi resumed. '%1' запущена. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. скачивание %1 завершено. - + I/O Error i.e: Input/Output Error Ошибка ввода/вывода - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused При попытке чтения/записи %1 произошла ошибка. Возможно, на диске не хватает места, закачка приостановлена @@ -1514,23 +1514,23 @@ Please close the other one first. Произошла ошибка (нет места?), '%1' остановлен. - + Connection Status: Состояние связи: - + Online В сети - + Firewalled? i.e: Behind a firewall/router? Файерволл? - + No incoming connections... Нет входящих соединений... @@ -1556,13 +1556,13 @@ Please close the other one first. Результаты - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... Скачивание '%1', подождите... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Произошла ошибка (нет места?), '%1' остановлен. @@ -1578,28 +1578,28 @@ Please close the other one first. - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 - + DHT support [ON], port: %1 - + DHT support [OFF] - + PeX support [ON] - + PeX support [OFF] @@ -1610,22 +1610,17 @@ Are you sure you want to quit qBittorrent? - + Downloads - - Are you sure you want to delete the selected item(s) in finished list and in hard drive? - - - - + Are you sure you want to delete the selected item(s) in finished list? - + UPnP support [ON] @@ -1635,17 +1630,17 @@ Are you sure you want to quit qBittorrent? - + Encryption support [ON] - + Encryption support [FORCED] - + Encryption support [OFF] @@ -1696,7 +1691,23 @@ Are you sure you want to quit qBittorrent? - Fast resume data was rejected for torrent %1 + Fast resume data was rejected for torrent %1, checking again... + + + + + Are you sure you want to delete the selected item(s) from download list and from hard drive? + + + + + Are you sure you want to delete the selected item(s) from finished list and from hard drive? + + + + + '%1' was removed permanently. + 'xxx.avi' was removed permanently. @@ -2237,7 +2248,7 @@ Are you sure you want to quit qBittorrent? Вы должны выбрать по меньшей мере один поисковый двигатель. - + Results Результаты diff --git a/src/lang/qbittorrent_sk.qm b/src/lang/qbittorrent_sk.qm index cfe0634f8..8dc3ffb36 100644 Binary files a/src/lang/qbittorrent_sk.qm and b/src/lang/qbittorrent_sk.qm differ diff --git a/src/lang/qbittorrent_sk.ts b/src/lang/qbittorrent_sk.ts index 0c2c33f94..c0c564ee9 100644 --- a/src/lang/qbittorrent_sk.ts +++ b/src/lang/qbittorrent_sk.ts @@ -682,31 +682,31 @@ Copyright © 2006 by Christophe Dumez<br> FinishedTorrents - + Name i.e: file name - + Size i.e: file size - + Progress i.e: % downloaded Priebeh - + UP Speed i.e: Upload speed - + Seeds/Leechs i.e: full/partial sources Seederi/Leecheri @@ -718,18 +718,18 @@ Copyright © 2006 by Christophe Dumez<br> Skončené - + Finished Skončené - + None i.e: No error message - + Ratio @@ -747,7 +747,7 @@ Copyright © 2006 by Christophe Dumez<br> Nezne - + This file is either corrupted or this isn't a torrent. Tento súbor je buď poškodený alebo to nie je torrent. @@ -757,17 +757,17 @@ Copyright © 2006 by Christophe Dumez<br> Určite chcete zmazať všetky súbory v zozname sťahovaných? - + &Yes &Áno - + &No &Nie - + Are you sure you want to delete the selected item(s) in download list? Určite chcete zmazať vybrané položky v zozname sťahovaných? @@ -892,7 +892,7 @@ Copyright © 2006 by Christophe Dumez<br> qBittorrent - + Are you sure? -- qBittorrent Ste si istý? -- qBittorrent @@ -922,7 +922,7 @@ Copyright © 2006 by Christophe Dumez<br> skončilo sťahovanie. - + Couldn't listen on any of the given ports. Nepodarilo sa počúvať na žiadnom zo zadaných portov. @@ -1194,10 +1194,10 @@ Najskôr ho prosím zatvorte. Are you sure you want to delete the selected item(s) in download list and in hard drive? - Ste si istý, že chcete zmazať vybrané položky v zozname sťahovaných a na pevnom disku? + Ste si istý, že chcete zmazať vybrané položky v zozname sťahovaných a na pevnom disku? - + Download finished Sťahovanie dokončené @@ -1224,17 +1224,17 @@ Najskôr ho prosím zatvorte. qBittorrent %1 - + Connection status: Stav spojenia: - + Offline Offline - + No peers found... Neboli nájdení rovesníci... @@ -1334,37 +1334,37 @@ Najskôr ho prosím zatvorte. Ste si istý, že chcete skončiť? - + '%1' was removed. 'xxx.avi' was removed. '%1' bol odstránený. - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. '%1' bol pridaný do zoznamu na sťahovanie. - + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) '%1' bol obnovený. (rýchle obnovenie) - + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. '%1' sa už nachádza v zozname sťahovaných. - + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' Nebol omožné dekodovať torrent súbor: '%1' - + None i.e: No error message Žiadna @@ -1376,12 +1376,12 @@ Najskôr ho prosím zatvorte. Počúvam na porte: %1 - + All downloads were paused. Všetky sťahovania pozastavené. - + '%1' paused. xxx.avi paused. '%1' pozastavené. @@ -1393,30 +1393,30 @@ Najskôr ho prosím zatvorte. pripája sa... - + All downloads were resumed. Všetky sťahovania obnovené. - + '%1' resumed. e.g: xxx.avi resumed. '%1' obnovené. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 je stiahnutý. - + I/O Error i.e: Input/Output Error V/V Chyba - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused Vyskytla sa chyba pri pokuse o čítanie alebo zapisovanie do %1. Disk je pravdepodobne plný, sťahovanie bolo pozastavené @@ -1428,23 +1428,23 @@ Najskôr ho prosím zatvorte. Vyskytla sa chyba (plný disk?), '%1' pozastavené. - + Connection Status: Stav spojenia: - + Online Online - + Firewalled? i.e: Behind a firewall/router? Za firewallom? - + No incoming connections... Žiadne prichádzajúce spojenia... @@ -1470,13 +1470,13 @@ Najskôr ho prosím zatvorte. Výsledky - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... Sťahuje sa '%1', čakajte prosím... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Vyskytla sa chyba (plný disk?), '%1' pozastavené. @@ -1492,7 +1492,7 @@ Najskôr ho prosím zatvorte. - + Downloads @@ -1503,43 +1503,38 @@ Are you sure you want to quit qBittorrent? - - Are you sure you want to delete the selected item(s) in finished list and in hard drive? - - - - + Are you sure you want to delete the selected item(s) in finished list? - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 - + DHT support [ON], port: %1 - + DHT support [OFF] - + UPnP support [ON] - + PeX support [ON] - + PeX support [OFF] @@ -1549,17 +1544,17 @@ Are you sure you want to quit qBittorrent? - + Encryption support [ON] - + Encryption support [FORCED] - + Encryption support [OFF] @@ -1610,7 +1605,23 @@ Are you sure you want to quit qBittorrent? - Fast resume data was rejected for torrent %1 + Fast resume data was rejected for torrent %1, checking again... + + + + + Are you sure you want to delete the selected item(s) from download list and from hard drive? + + + + + Are you sure you want to delete the selected item(s) from finished list and from hard drive? + + + + + '%1' was removed permanently. + 'xxx.avi' was removed permanently. @@ -2136,7 +2147,7 @@ Are you sure you want to quit qBittorrent? Musíte zvoliť aspoň jeden vyhľadávač. - + Results Výsledky diff --git a/src/lang/qbittorrent_sv.qm b/src/lang/qbittorrent_sv.qm index dba8ef399..fc0d687e3 100644 Binary files a/src/lang/qbittorrent_sv.qm and b/src/lang/qbittorrent_sv.qm differ diff --git a/src/lang/qbittorrent_sv.ts b/src/lang/qbittorrent_sv.ts index 71c2f522d..ba44df5e7 100644 --- a/src/lang/qbittorrent_sv.ts +++ b/src/lang/qbittorrent_sv.ts @@ -633,24 +633,24 @@ Copyright © 2006 by Christophe Dumez<br> FinishedTorrents - + Finished Färdig - + Name i.e: file name Namn - + Size i.e: file size Storlek - + Progress i.e: % downloaded Förlopp @@ -662,13 +662,13 @@ Copyright © 2006 by Christophe Dumez<br> Hämtningshastighet - + UP Speed i.e: Upload speed Sändningshastighet - + Seeds/Leechs i.e: full/partial sources Dist/Repr @@ -691,13 +691,13 @@ Copyright © 2006 by Christophe Dumez<br> Färdig - + None i.e: No error message Ingen - + Ratio @@ -710,22 +710,22 @@ Copyright © 2006 by Christophe Dumez<br> Öppna Torrent-filer - + This file is either corrupted or this isn't a torrent. Denna fil är antingen skadad eller så är den inte en torrent-fil. - + &Yes &Ja - + &No &Nej - + Are you sure you want to delete the selected item(s) in download list? Är du säker på att du vill ta bort de markerade post(erna) i hämtningslistan? @@ -745,12 +745,12 @@ Copyright © 2006 by Christophe Dumez<br> Torrent-filer - + Are you sure? -- qBittorrent Är du säker? -- qBittorrent - + Couldn't listen on any of the given ports. Kunde inte lyssna på någon av de angivna portarna. @@ -859,10 +859,10 @@ Stäng den först. Are you sure you want to delete the selected item(s) in download list and in hard drive? - Är du säker på att du vill ta bort de markerade objekten i hämtningslistan och på hårddisken? + Är du säker på att du vill ta bort de markerade objekten i hämtningslistan och på hårddisken? - + Download finished Hämtningen är färdig @@ -878,17 +878,17 @@ Stäng den först. qBittorrent %1 - + Connection status: Anslutningsstatus: - + Offline Frånkopplad - + No peers found... Inga parter hittades... @@ -993,37 +993,37 @@ Stäng den först. Är du säker på att du vill avsluta? - + '%1' was removed. 'xxx.avi' was removed. \"%1\" togs bort. - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. \"%1\" lades till i hämtningslistan. - + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) \"%1\" återupptogs. (snabbt läge) - + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. \"%1\" finns redan i hämtningslistan. - + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' Kunde inte avkoda torrent-fil: \"%1\" - + None i.e: No error message Ingen @@ -1035,12 +1035,12 @@ Stäng den först. Lyssnar på port: %1 - + All downloads were paused. Alla hämtningar har pausats. - + '%1' paused. xxx.avi paused. \"%1\" pausad. @@ -1052,30 +1052,30 @@ Stäng den först. Ansluter... - + All downloads were resumed. Alla hämtningar har återupptagits. - + '%1' resumed. e.g: xxx.avi resumed. \"%1\" återupptogs. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 har hämtats färdigt. - + I/O Error i.e: Input/Output Error In/Ut-fel - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused Ett fel inträffade vid försök att läsa eller skriva %1. Disken är antagligen full, hämtningen har pausats @@ -1087,23 +1087,23 @@ Stäng den först. Ett fel inträffade (full disk?), \"%1\" pausad. - + Connection Status: Anslutningsstatus: - + Online Ansluten - + Firewalled? i.e: Behind a firewall/router? Brandvägg? - + No incoming connections... Inga inkommande anslutningar... @@ -1129,13 +1129,13 @@ Stäng den först. Resultat - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... Hämtar \"%1\", vänta... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Ett fel inträffade (full disk?), \"%1\" pausad. @@ -1151,28 +1151,28 @@ Stäng den först. - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 - + DHT support [ON], port: %1 - + DHT support [OFF] - + PeX support [ON] - + PeX support [OFF] @@ -1183,7 +1183,7 @@ Are you sure you want to quit qBittorrent? - + Downloads @@ -1193,17 +1193,12 @@ Are you sure you want to quit qBittorrent? Färdig - - Are you sure you want to delete the selected item(s) in finished list and in hard drive? - - - - + Are you sure you want to delete the selected item(s) in finished list? - + UPnP support [ON] @@ -1213,17 +1208,17 @@ Are you sure you want to quit qBittorrent? - + Encryption support [ON] - + Encryption support [FORCED] - + Encryption support [OFF] @@ -1274,7 +1269,23 @@ Are you sure you want to quit qBittorrent? - Fast resume data was rejected for torrent %1 + Fast resume data was rejected for torrent %1, checking again... + + + + + Are you sure you want to delete the selected item(s) from download list and from hard drive? + + + + + Are you sure you want to delete the selected item(s) from finished list and from hard drive? + + + + + '%1' was removed permanently. + 'xxx.avi' was removed permanently. @@ -1737,7 +1748,7 @@ Are you sure you want to quit qBittorrent? Du måste välja åtminstone en sökmotor. - + Results Resultat diff --git a/src/lang/qbittorrent_tr.qm b/src/lang/qbittorrent_tr.qm index fec783c6e..b5a3500d7 100644 Binary files a/src/lang/qbittorrent_tr.qm and b/src/lang/qbittorrent_tr.qm differ diff --git a/src/lang/qbittorrent_tr.ts b/src/lang/qbittorrent_tr.ts index 1bb5cbb5e..99234ce6c 100644 --- a/src/lang/qbittorrent_tr.ts +++ b/src/lang/qbittorrent_tr.ts @@ -798,19 +798,19 @@ Telif Hakkı © 2006 Christophe Dumez<br> FinishedTorrents - + Name i.e: file name İsim - + Size i.e: file size Boyut - + Progress i.e: % downloaded İlerleme @@ -822,13 +822,13 @@ Telif Hakkı © 2006 Christophe Dumez<br> DL Hızı - + UP Speed i.e: Upload speed UP Hızı - + Seeds/Leechs i.e: full/partial sources Seeds/Leechs @@ -851,18 +851,18 @@ Telif Hakkı © 2006 Christophe Dumez<br> Tamamlandı - + Finished Tamamlandı - + None i.e: No error message Yok - + Ratio @@ -885,7 +885,7 @@ Telif Hakkı © 2006 Christophe Dumez<br> Bilinmeyen - + This file is either corrupted or this isn't a torrent. Bu dosya bozuk ya da torrent dosyası değil. @@ -895,17 +895,17 @@ Telif Hakkı © 2006 Christophe Dumez<br> Download listesindeki bütün dosyaları silmek istediğinizden emin misiniz? - + &Yes &Evet - + &No &Hayır - + Are you sure you want to delete the selected item(s) in download list? Download listesindeki seçili öğeleri silmek istediğinize emin misiniz? @@ -1057,7 +1057,7 @@ Telif Hakkı © 2006 Christophe Dumez<br> qBittorrent - + Are you sure? -- qBittorrent Emin misiniz? -- qBittorrent @@ -1098,7 +1098,7 @@ Telif Hakkı © 2006 Christophe Dumez<br> download tamamlandı. - + Couldn't listen on any of the given ports. Verilen portların hiçbiri dinlenemedi. @@ -1387,10 +1387,10 @@ Lütfen önce diğerini kapatın. Are you sure you want to delete the selected item(s) in download list and in hard drive? - Seçilenleri download listesinden ve sabit diskinizden silmek istediğinize emin misiniz? + Seçilenleri download listesinden ve sabit diskinizden silmek istediğinize emin misiniz? - + Download finished Download bitti @@ -1412,17 +1412,17 @@ Lütfen önce diğerini kapatın. qBittorrent %1 - + Connection status: Bağlantı durumu: - + Offline Çevrimdışı - + No peers found... Kullanıcı bulunamadı... @@ -1522,37 +1522,37 @@ Lütfen önce diğerini kapatın. Çıkmak istediğinize emin misiniz? - + '%1' was removed. 'xxx.avi' was removed. '%1' silindi. - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. '%1' download listesine eklendi. - + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) '%1' devam ettirildi. (fast resume) - + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. '%1' zaten download listesinde var. - + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' Torrent dosyası çözümlenemiyor: '%1' - + None i.e: No error message Yok @@ -1564,12 +1564,12 @@ Lütfen önce diğerini kapatın. Port dinleniyor: %1 - + All downloads were paused. Bütün downloadlar duraklatıldı. - + '%1' paused. xxx.avi paused. '%1' duraklatıldı. @@ -1581,52 +1581,52 @@ Lütfen önce diğerini kapatın. Bağlanılıyor... - + All downloads were resumed. Bütün downloadlar devam ettirildi. - + '%1' resumed. e.g: xxx.avi resumed. '%1' devam ettirildi. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 downloadu tamamlandı. - + I/O Error i.e: Input/Output Error I/O Hatası - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused %1 okunmaya veya yazılmaya çalışılırken bir hata oluştu. Disk muhtemelen dolu, download duraklatıldı - + Connection Status: Bağlantı Durumu: - + Online Çevrimiçi - + Firewalled? i.e: Behind a firewall/router? Firewall açık mı? - + No incoming connections... Gelen bağlantı yok... @@ -1652,13 +1652,13 @@ Lütfen önce diğerini kapatın. Sonuçlar - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... Download ediliyor '%1', lütfen bekleyin... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Bir hata oluştu (dolu disk?), '%1' duraklatıldı. @@ -1674,7 +1674,7 @@ Lütfen önce diğerini kapatın. - + Downloads @@ -1685,43 +1685,38 @@ Are you sure you want to quit qBittorrent? - - Are you sure you want to delete the selected item(s) in finished list and in hard drive? - - - - + Are you sure you want to delete the selected item(s) in finished list? - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 - + DHT support [ON], port: %1 - + DHT support [OFF] - + PeX support [ON] - + PeX support [OFF] - + UPnP support [ON] @@ -1731,17 +1726,17 @@ Are you sure you want to quit qBittorrent? - + Encryption support [ON] - + Encryption support [FORCED] - + Encryption support [OFF] @@ -1792,7 +1787,23 @@ Are you sure you want to quit qBittorrent? - Fast resume data was rejected for torrent %1 + Fast resume data was rejected for torrent %1, checking again... + + + + + Are you sure you want to delete the selected item(s) from download list and from hard drive? + + + + + Are you sure you want to delete the selected item(s) from finished list and from hard drive? + + + + + '%1' was removed permanently. + 'xxx.avi' was removed permanently. @@ -2343,7 +2354,7 @@ Are you sure you want to quit qBittorrent? En az bir arama motoru seçmelisiniz. - + Results Sonuçlar diff --git a/src/lang/qbittorrent_uk.qm b/src/lang/qbittorrent_uk.qm index 6f8258772..46a89e125 100644 Binary files a/src/lang/qbittorrent_uk.qm and b/src/lang/qbittorrent_uk.qm differ diff --git a/src/lang/qbittorrent_uk.ts b/src/lang/qbittorrent_uk.ts index c57178381..d7b720308 100644 --- a/src/lang/qbittorrent_uk.ts +++ b/src/lang/qbittorrent_uk.ts @@ -727,36 +727,36 @@ Copyright © 2006 by Christophe Dumez<br> FinishedTorrents - + Finished Закінчено - + Name i.e: file name Ім'я - + Size i.e: file size Розмір - + Progress i.e: % downloaded Прогрес - + UP Speed i.e: Upload speed - + Seeds/Leechs i.e: full/partial sources Сідерів/Лічерів @@ -779,13 +779,13 @@ Copyright © 2006 by Christophe Dumez<br> Закінчено - + None i.e: No error message Немає - + Ratio @@ -803,7 +803,7 @@ Copyright © 2006 by Christophe Dumez<br> Невідомо - + This file is either corrupted or this isn't a torrent. Цей файл пошкоджено, або він не є torrent-файлом. @@ -813,17 +813,17 @@ Copyright © 2006 by Christophe Dumez<br> Ви впевнені що хочете видалити всі файли зі списку завантажень? - + &Yes &Так - + &No &Ні - + Are you sure you want to delete the selected item(s) in download list? Ви впевнені що хочете видалити вибрані файли зі списку завантажень? @@ -970,7 +970,7 @@ Copyright © 2006 by Christophe Dumez<br> qBittorrent - + Are you sure? -- qBittorrent Ви впевнені? -- qBittorrent @@ -1006,7 +1006,7 @@ Copyright © 2006 by Christophe Dumez<br> завантажено. - + Couldn't listen on any of the given ports. Не можу слухати по жодному з вказаних портів. @@ -1295,10 +1295,10 @@ Please close the other one first. Are you sure you want to delete the selected item(s) in download list and in hard drive? - Ви впевнені, що хочете видалити вибрані завантаження зі списку та з вінчестера? + Ви впевнені, що хочете видалити вибрані завантаження зі списку та з вінчестера? - + Download finished Завантаження завершено @@ -1320,17 +1320,17 @@ Please close the other one first. qBittorrent %1 - + Connection status: Статус з'єднання: - + Offline Офлайн - + No peers found... Не знайдено пірів... @@ -1430,37 +1430,37 @@ Please close the other one first. Ви впевнені, що хочете вийти? - + '%1' was removed. 'xxx.avi' was removed. '%1' було видалено. - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. '%1' додано до списку завантажень. - + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) '%1' відновлено. (швидке відновлення) - + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. '%1' вже є у списку завантажень. - + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' Неможливо декодувати торрент-файл: '%1' - + None i.e: No error message Немає @@ -1472,12 +1472,12 @@ Please close the other one first. Прослуховую порт: %1 - + All downloads were paused. Всі завантаження були призупинені. - + '%1' paused. xxx.avi paused. '%1' призупинено. @@ -1489,30 +1489,30 @@ Please close the other one first. З'єднуюсь... - + All downloads were resumed. Всі завантаження було відновлено. - + '%1' resumed. e.g: xxx.avi resumed. '%1' відновлено. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. Завантаження '%1' закінчилось. - + I/O Error i.e: Input/Output Error Помилка вводу/виводу - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused Сталася помилка під час запису чи зчитування %1. Можливо диск заповнено, завантаження було призупинено @@ -1524,23 +1524,23 @@ Please close the other one first. Сталася помилка (заповнено диск?), '%1' призупинено. - + Connection Status: Статус з'єднання: - + Online Онлайн - + Firewalled? i.e: Behind a firewall/router? Захищено фаєрволом? - + No incoming connections... Немає вхідних з'єднань... @@ -1566,13 +1566,13 @@ Please close the other one first. Результати - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... Завантажую '%1', будь-ласка зачекайте... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. Сталася помилка (заповнено диск?), '%1' призупинено. @@ -1588,28 +1588,28 @@ Please close the other one first. - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 - + DHT support [ON], port: %1 - + DHT support [OFF] - + PeX support [ON] - + PeX support [OFF] @@ -1620,22 +1620,17 @@ Are you sure you want to quit qBittorrent? - + Downloads - - Are you sure you want to delete the selected item(s) in finished list and in hard drive? - - - - + Are you sure you want to delete the selected item(s) in finished list? - + UPnP support [ON] @@ -1645,17 +1640,17 @@ Are you sure you want to quit qBittorrent? - + Encryption support [ON] - + Encryption support [FORCED] - + Encryption support [OFF] @@ -1706,7 +1701,23 @@ Are you sure you want to quit qBittorrent? - Fast resume data was rejected for torrent %1 + Fast resume data was rejected for torrent %1, checking again... + + + + + Are you sure you want to delete the selected item(s) from download list and from hard drive? + + + + + Are you sure you want to delete the selected item(s) from finished list and from hard drive? + + + + + '%1' was removed permanently. + 'xxx.avi' was removed permanently. @@ -2247,7 +2258,7 @@ Are you sure you want to quit qBittorrent? Ви повинні вибрати хоча б один пошуковик. - + Results Результати diff --git a/src/lang/qbittorrent_zh.qm b/src/lang/qbittorrent_zh.qm index b402174e3..b6080dd65 100644 Binary files a/src/lang/qbittorrent_zh.qm and b/src/lang/qbittorrent_zh.qm differ diff --git a/src/lang/qbittorrent_zh.ts b/src/lang/qbittorrent_zh.ts index e69f35fbb..5c63359d5 100644 --- a/src/lang/qbittorrent_zh.ts +++ b/src/lang/qbittorrent_zh.ts @@ -711,24 +711,24 @@ Copyright © 2006 by Christophe Dumez<br> FinishedTorrents - + Finished 完成 - + Name i.e: file name 名称 - + Size i.e: file size 大小 - + Progress i.e: % downloaded 进度 @@ -740,13 +740,13 @@ Copyright © 2006 by Christophe Dumez<br> 下载速度 - + UP Speed i.e: Upload speed 上传速度 - + Seeds/Leechs i.e: full/partial sources 完整种子/不完整种子 @@ -769,13 +769,13 @@ Copyright © 2006 by Christophe Dumez<br> 完成 - + None i.e: No error message - + Ratio @@ -793,7 +793,7 @@ Copyright © 2006 by Christophe Dumez<br> 无效 - + This file is either corrupted or this isn't a torrent. 该文件不是torrent文件或已经损坏. @@ -803,17 +803,17 @@ Copyright © 2006 by Christophe Dumez<br> 确定删除下载列表中的所有文件? - + &Yes &是 - + &No &否 - + Are you sure you want to delete the selected item(s) in download list? 确定删除所选中的文件? @@ -932,7 +932,7 @@ Copyright © 2006 by Christophe Dumez<br> 使用端口: - + Are you sure? -- qBittorrent 确定? -- qBittorrent @@ -962,7 +962,7 @@ Copyright © 2006 by Christophe Dumez<br> 下载完毕. - + Couldn't listen on any of the given ports. 所给端口无响应. @@ -1240,10 +1240,10 @@ Please close the other one first. Are you sure you want to delete the selected item(s) in download list and in hard drive? - 确定从硬盘及下载列表中删除所选中的项目? + 确定从硬盘及下载列表中删除所选中的项目? - + Download finished 下载完毕 @@ -1270,17 +1270,17 @@ Please close the other one first. qBittorrent %1 - + Connection status: 连接状态: - + Offline 离线 - + No peers found... 找不到资源... @@ -1385,37 +1385,37 @@ Please close the other one first. 确实要退出吗? - + '%1' was removed. 'xxx.avi' was removed. '%1'已移除. - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. '%1'添加到下载列表. - + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) '%1'重新开始(快速) - + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. '%1'已存在于下载列表中. - + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' 无法解码torrent文件:'%1' - + None i.e: No error message @@ -1427,12 +1427,12 @@ Please close the other one first. 使用端口:'%1' - + All downloads were paused. 所有下载已暂停. - + '%1' paused. xxx.avi paused. '%1'暂停. @@ -1444,52 +1444,52 @@ Please close the other one first. 连接中... - + All downloads were resumed. 重新开始所有下载. - + '%1' resumed. e.g: xxx.avi resumed. '%1'重新开始. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. '%1'下载完毕. - + I/O Error i.e: Input/Output Error 输入/输出错误 - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused 读或写%1过程中出现错误.磁盘已满,下载被暂停 - + Connection Status: 连接状态: - + Online 联机 - + Firewalled? i.e: Behind a firewall/router? 存在防火墙? - + No incoming connections... 无对内连接... @@ -1515,13 +1515,13 @@ Please close the other one first. 结果 - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... '%1'下载中,请等待... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. 出现错误(磁盘已满?),'%1'暂停. @@ -1537,28 +1537,28 @@ Please close the other one first. - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 - + DHT support [ON], port: %1 - + DHT support [OFF] - + PeX support [ON] - + PeX support [OFF] @@ -1569,22 +1569,17 @@ Are you sure you want to quit qBittorrent? - + Downloads - - Are you sure you want to delete the selected item(s) in finished list and in hard drive? - - - - + Are you sure you want to delete the selected item(s) in finished list? - + UPnP support [ON] @@ -1594,17 +1589,17 @@ Are you sure you want to quit qBittorrent? - + Encryption support [ON] - + Encryption support [FORCED] - + Encryption support [OFF] @@ -1655,7 +1650,23 @@ Are you sure you want to quit qBittorrent? - Fast resume data was rejected for torrent %1 + Fast resume data was rejected for torrent %1, checking again... + + + + + Are you sure you want to delete the selected item(s) from download list and from hard drive? + + + + + Are you sure you want to delete the selected item(s) from finished list and from hard drive? + + + + + '%1' was removed permanently. + 'xxx.avi' was removed permanently. @@ -2191,7 +2202,7 @@ Are you sure you want to quit qBittorrent? 请选择至少一个搜索引擎. - + Results 结果 diff --git a/src/lang/qbittorrent_zh_HK.qm b/src/lang/qbittorrent_zh_HK.qm index 3700b8457..0147fdf50 100644 Binary files a/src/lang/qbittorrent_zh_HK.qm and b/src/lang/qbittorrent_zh_HK.qm differ diff --git a/src/lang/qbittorrent_zh_HK.ts b/src/lang/qbittorrent_zh_HK.ts index a130590c9..36f375071 100644 --- a/src/lang/qbittorrent_zh_HK.ts +++ b/src/lang/qbittorrent_zh_HK.ts @@ -691,24 +691,24 @@ Copyright © 2006 by Christophe Dumez<br> FinishedTorrents - + Finished 完成 - + Name i.e: file name 名稱 - + Size i.e: file size 大小 - + Progress i.e: % downloaded 進度 @@ -720,13 +720,13 @@ Copyright © 2006 by Christophe Dumez<br> 下載速度 - + UP Speed i.e: Upload speed 上傳速度 - + Seeds/Leechs i.e: full/partial sources @@ -749,13 +749,13 @@ Copyright © 2006 by Christophe Dumez<br> 完成 - + None i.e: No error message - + Ratio @@ -773,7 +773,7 @@ Copyright © 2006 by Christophe Dumez<br> 無效 - + This file is either corrupted or this isn't a torrent. 該文件不是torrent文件或已經損壞. @@ -783,17 +783,17 @@ Copyright © 2006 by Christophe Dumez<br> 確定刪除下在列表中的所有文件? - + &Yes &是 - + &No &否 - + Are you sure you want to delete the selected item(s) in download list? 確定刪除所選中的文件? @@ -912,7 +912,7 @@ Copyright © 2006 by Christophe Dumez<br> 使用端口: - + Are you sure? -- qBittorrent 確定? -- qBittorrent @@ -942,7 +942,7 @@ Copyright © 2006 by Christophe Dumez<br> 下載完畢. - + Couldn't listen on any of the given ports. 所給端口無回應. @@ -1156,7 +1156,7 @@ Please close the other one first. - + Download finished @@ -1171,11 +1171,6 @@ Please close the other one first. Search Engine 搜索引擎 - - - Are you sure you want to delete the selected item(s) in download list and in hard drive? - - qBittorrent %1 @@ -1183,17 +1178,17 @@ Please close the other one first. - + Connection status: - + Offline - + No peers found... @@ -1292,48 +1287,48 @@ Please close the other one first. - + '%1' was removed. 'xxx.avi' was removed. - + '%1' added to download list. '/home/y/xxx.torrent' was added to download list. - + '%1' resumed. (fast resume) '/home/y/xxx.torrent' was resumed. (fast resume) - + '%1' is already in download list. e.g: 'xxx.avi' is already in download list. - + Unable to decode torrent file: '%1' e.g: Unable to decode torrent file: '/home/y/xxx.torrent' - + None i.e: No error message - + All downloads were paused. - + '%1' paused. xxx.avi paused. @@ -1345,52 +1340,52 @@ Please close the other one first. 連接中... - + All downloads were resumed. - + '%1' resumed. e.g: xxx.avi resumed. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. - + I/O Error i.e: Input/Output Error 輸入/輸出錯誤 - + An error occured when trying to read or write %1. The disk is probably full, download has been paused e.g: An error occured when trying to read or write xxx.avi. The disk is probably full, download has been paused - + Connection Status: - + Online - + Firewalled? i.e: Behind a firewall/router? - + No incoming connections... @@ -1401,13 +1396,13 @@ Please close the other one first. 結果 - + Downloading '%1', please wait... e.g: Downloading 'xxx.torrent', please wait... - + An error occured (full disk?), '%1' paused. e.g: An error occured (full disk?), 'xxx.avi' paused. @@ -1423,28 +1418,28 @@ Please close the other one first. - + qBittorrent is bind to port: %1 e.g: qBittorrent is bind to port: 1666 - + DHT support [ON], port: %1 - + DHT support [OFF] - + PeX support [ON] - + PeX support [OFF] @@ -1455,22 +1450,17 @@ Are you sure you want to quit qBittorrent? - + Downloads - - Are you sure you want to delete the selected item(s) in finished list and in hard drive? - - - - + Are you sure you want to delete the selected item(s) in finished list? - + UPnP support [ON] @@ -1480,17 +1470,17 @@ Are you sure you want to quit qBittorrent? - + Encryption support [ON] - + Encryption support [FORCED] - + Encryption support [OFF] @@ -1541,7 +1531,23 @@ Are you sure you want to quit qBittorrent? - Fast resume data was rejected for torrent %1 + Fast resume data was rejected for torrent %1, checking again... + + + + + Are you sure you want to delete the selected item(s) from download list and from hard drive? + + + + + Are you sure you want to delete the selected item(s) from finished list and from hard drive? + + + + + '%1' was removed permanently. + 'xxx.avi' was removed permanently. @@ -2052,7 +2058,7 @@ Are you sure you want to quit qBittorrent? 至少選擇一個搜索引擎. - + Results 結果