From faf6f155ca3ad7dbc2fbc9dcde561cc4e2b2d417 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Wed, 25 Jul 2007 14:32:09 +0000 Subject: [PATCH] - Improved a lot delete functions --- src/GUI.cpp | 79 +++++++++------------ src/lang/qbittorrent_bg.qm | Bin 38918 -> 38816 bytes src/lang/qbittorrent_bg.ts | 123 ++++++++++++++++++--------------- src/lang/qbittorrent_ca.qm | Bin 37055 -> 36943 bytes src/lang/qbittorrent_ca.ts | 123 ++++++++++++++++++--------------- src/lang/qbittorrent_da.qm | Bin 38417 -> 38323 bytes src/lang/qbittorrent_da.ts | 123 ++++++++++++++++++--------------- src/lang/qbittorrent_de.qm | Bin 46657 -> 46347 bytes src/lang/qbittorrent_de.ts | 120 ++++++++++++++++++-------------- src/lang/qbittorrent_el.qm | Bin 40874 -> 40716 bytes src/lang/qbittorrent_el.ts | 123 ++++++++++++++++++--------------- src/lang/qbittorrent_en.qm | Bin 26736 -> 26824 bytes src/lang/qbittorrent_en.ts | 126 ++++++++++++++++++---------------- src/lang/qbittorrent_es.qm | Bin 40810 -> 40696 bytes src/lang/qbittorrent_es.ts | 123 ++++++++++++++++++--------------- src/lang/qbittorrent_fi.qm | Bin 36465 -> 36397 bytes src/lang/qbittorrent_fi.ts | 123 ++++++++++++++++++--------------- src/lang/qbittorrent_fr.qm | Bin 49551 -> 49167 bytes src/lang/qbittorrent_fr.ts | 120 ++++++++++++++++++-------------- src/lang/qbittorrent_hu.qm | Bin 43495 -> 43179 bytes src/lang/qbittorrent_hu.ts | 120 ++++++++++++++++++-------------- src/lang/qbittorrent_it.qm | Bin 40179 -> 40099 bytes src/lang/qbittorrent_it.ts | 123 ++++++++++++++++++--------------- src/lang/qbittorrent_ja.qm | Bin 37117 -> 37025 bytes src/lang/qbittorrent_ja.ts | 120 ++++++++++++++++++-------------- src/lang/qbittorrent_ko.qm | Bin 33545 -> 33543 bytes src/lang/qbittorrent_ko.ts | 123 ++++++++++++++++++--------------- src/lang/qbittorrent_nb.qm | Bin 39308 -> 39230 bytes src/lang/qbittorrent_nb.ts | 123 ++++++++++++++++++--------------- src/lang/qbittorrent_nl.qm | Bin 39264 -> 39144 bytes src/lang/qbittorrent_nl.ts | 123 ++++++++++++++++++--------------- src/lang/qbittorrent_pl.qm | Bin 46833 -> 46653 bytes src/lang/qbittorrent_pl.ts | 120 ++++++++++++++++++-------------- src/lang/qbittorrent_pt.qm | Bin 40406 -> 40278 bytes src/lang/qbittorrent_pt.ts | 123 ++++++++++++++++++--------------- src/lang/qbittorrent_ro.qm | Bin 36971 -> 36983 bytes src/lang/qbittorrent_ro.ts | 123 ++++++++++++++++++--------------- src/lang/qbittorrent_ru.qm | Bin 39605 -> 39507 bytes src/lang/qbittorrent_ru.ts | 123 ++++++++++++++++++--------------- src/lang/qbittorrent_sk.qm | Bin 39480 -> 39396 bytes src/lang/qbittorrent_sk.ts | 123 ++++++++++++++++++--------------- src/lang/qbittorrent_sv.qm | Bin 38757 -> 38659 bytes src/lang/qbittorrent_sv.ts | 123 ++++++++++++++++++--------------- src/lang/qbittorrent_tr.qm | Bin 38610 -> 38524 bytes src/lang/qbittorrent_tr.ts | 123 ++++++++++++++++++--------------- src/lang/qbittorrent_uk.qm | Bin 39631 -> 39561 bytes src/lang/qbittorrent_uk.ts | 123 ++++++++++++++++++--------------- src/lang/qbittorrent_zh.qm | Bin 31428 -> 31476 bytes src/lang/qbittorrent_zh.ts | 123 ++++++++++++++++++--------------- src/lang/qbittorrent_zh_HK.qm | Bin 28879 -> 28967 bytes src/lang/qbittorrent_zh_HK.ts | 126 ++++++++++++++++++---------------- 51 files changed, 1711 insertions(+), 1434 deletions(-) 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 051d9dd77e5c5197f1a4e5ddbae478898567d28c..9833aae6e3198ba282c7ec01544d8e1424fcf56a 100644 GIT binary patch delta 3088 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 E586 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 a1b40c1f8433e5ed7499530be64785f76fe03b3a..5ebd6d5be8b13307f3ce516f5c0a51a334481a1a 100644 GIT binary patch delta 3088 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 Mt<-U@?!l1%0t+~bBme*a delta 3094 zcmY+`2~-qE8VB&t>6t#Jd%6`-lpx@N96?b55kx>>L{U*8AcBTFf+DDZT*{!Js30+n zK~^^;5)YCf1}5I|ijqydl}I$%XfTk78h!CtpYDqL2j=a2%X`DGrnk86f08^pD1BazE@2meL zvK7pFnoVG~S|DKCGR8C@hsbU`bAH+cn7~|fE`_yB*VHoD$#j)HA+k4EF^?i1qmj%! zwsVBX)RuL&uv6{kP(UuB+cnH1YuaoX9Zpmb(7P9->ip_8IH-do9t}Fm}qM3|PSio%sn~=+lj3 zgD#_lZh>q}5cY&yH5-2%nQ&`mSE&t%Xx!Iq?r_v%+!MBt#RJDXv4#9^Fq&OGXE%JG zEx9okK4do*W7AErWp^LG4FlM{_pZST_N$l3+=P>C%ZVjK?hD!861kVN*X~&3y@_qT z;|lMxcZw01hb`MV9^*a2*-k@mql#0xWAk`i`^Xfa1q{jbF1o+xk(;e#g*-FIk)A) zVrb%w(ci;coWb}!jL3Tcw~cv8G}(pwdyET=<91cuhvnP>TLd(@h5J%vgb(`kwc$<_ zBO|^6+_g~{=bOoO#2^sgChlHtFzn`C5^zeUc=N7LGhsd-=#W9=H=hqOV4Pn$KhsnR zPZ;_d{#krj^K+tr$$Ypn2d4Akr%oG*&M zp?pd8BUsE=Tke35_-fk1bG;JvV*YSK9%s;I`3LbTluubrt*ogB#BU11Uo<%gHNC>n} zgU5yNM%*ytiLju38&RmWuqa&%6NE*%p|D(dcT+38)aOjzY=GGuA*Tz+bml=JZ#^C` z^S-dg7Ym!E7mBwpgX@IG_VYxuhYH6V&f@&fjualLZ=j>xY=`h9*?}m`NBB=2RuI-D zbhlzN&GFVU>D@$g?X~jLJgCC?qHuq0%x?%Ze6Kdy*AiaW zF76&m6v3K(uFY~nCf>QN&3o95)JG1{mULsH$Y|}RgaBBh{m7;gUeMNm?L!n5scrN_ z?V>iD{Z@NuRR__0t@iMtS~x}f^DvB?-=yuRoDQF9AGEa)MaPKrX(=ohnf)i>Em6o% zAzEM~+SuU!1>w-p(;fZH5iv zujl+=oA|050Vm4hoBQ~LOPnIvYJ%Y&$?pp8OME5;DhMRWQ3?uw2y-R<+$4BOGE57@ zjmZI0NYyi#FU`{~f;*+~D6BO3cAqI0Qv97qL@BeRB?H}|K}t^_Mf4s?d2fw{{!(e_ zWtb&xTvh_xrHyY8z+zF_=5GzZkhWViz)tCJX)Z*mcG5>nqhN$Vs&oAcjXY`Zq4BU; z`XUFLF11T)@VifxHcYzmI|53Jm9D+&u~hmY4il&Cmwx$%ft}LbqRm809HrOex?r`A z(;R~rble%NaLEgu&HRHzOGoNP#i9gDvvdxXXJK2P=>{v^#2ej2>4~~Y6Hda9b$*?0 z@H^eyk*A234b#OoVx`Lhbnp6{hg)^YJuA$p)}?&v15fKx$Djn6mb&z6jLXc?6;{fy zR#zhIhOc$y!vvz`>AH&PIAzN}(OrIlg)G0NYwdcD^S}I!?nk>Kq7^>6n-=)`T#=-E zwE?MI@jxE15i47{P9AS~3D3$Coe*f&9y!7Wn=;$mY>XUv#uo2)$oYEwfXQx^H*UB@ zl#?n~TwV!x%G=mA@JD$^wwh=a$vbkEz%}x|P!F8{Rk!7)ic+H79NF~6yYQ}junIrL z^5)7H-@Jw&$eq`*3GH+7@yy+C{CM* z3i>O`mJaBrSV>t#g=(d@6oqq@w`~{TeXTNnh6m1n;U&ep2AglSg%Z-V9!^(gS0RO~ z8K)KP~ifOzUf7hMvAOTubV0VQ%v034bhJ(MH?Rp2mH%`*ZdQ z8Oio(8ODs!gH78aj&P<=W32`nk519`b2Y}qy7C-GGa->POh+>2S(yCRj?fuv9d-Ts PCiuAG|0jsAeBAH9?%RL9 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 027b1a1431d9af6b2c21ed0660f1fc8420973bb1..e260a9c5fc692f72289453342464df8c6242aada 100644 GIT binary patch delta 3047 zcmZA3dsI~Q76)TG`tQ=G&>%4z@{Nb+iE@(KOq`jrRlIa z4o_+>2Ky1&j?r8^>aRh3oTY#>>SdG zu{cw^r(qM3QwBT$PiPyC?k94#);79Bv-8}cfpeb4-P&WKiV0t9I}F$0ZSDE&ZldwF z+V6_+pz#Z|-&Gxfx!TL6$jtb9?JZ9cp4RD$k(u#-=|+T3CvpkYxr8?nO&F_lZ9EHi z>-@G4z@KzMk$Z?-t#osnJIG9~GjuVv>v1F9V!g$7ozW{4_xp4yPq5I@^3gkies zaMa!{MfX-^JuJ6)z~Whpk9Cbq712Z|-QnZ!!$gY*bss&CfG6J9bsAdCMDE?XZ@fkj zO>)s)TFk)3tW8+}+{@ZVB@=mw7FSv9V5j`L8~5+BGpCw}JWXuKi7T+p;zKs%EK2C* z!^VZIg@x=ZZODXIJDa0LK;DPh+!s&^A3L^yHDg1cMQj283#?(+&))}6vn7{2hvaR?+} z0oRv{W((NGyCvc62)N9<-^(Bh9LWben_xd5V#d6eV)(f&HL!BXps9S+;rm2E{rn>R ze4=0%Gr#By)GBy6pFHxJ<$V6=7hyBRhQXKlf+^WVA=do*YzKIbFWG*FXx3bQyUkAc z9>3kb8usvqT3d)h9r>e&`{65m+s4JPg8#hwYuLu0xSkKM@SVZP)NCjIR69yO+g#6I z=~#`yMgEVrb?_;FuO1PHg$j%VdLwL~z-~qXE8&Vk_WHCh;?u&1<@STEdHP(k; z7Ci5(M04zf$$OT-Vqu1V6MQVpm=#GB;VcB(rot7%q9)9b=oFS+ufzKvaa%}86N%u{hx?528g5;*^1LuuqKrK}Qr_AjbWIz@vW@4Kr+r7W3k&fzfcrkW0pjSrd?% zCD+8f-|)N`N3mo8&xwf_tCC*A`yX>&++|k-pNb8iO($BqS!@bG4VQjt@qyTy(?b;N zBYxbv8>WgsjK#dzOJYw=IMK4_#arKX!aRxgmck1X^T9EqxFAVbXM{H;J3FjjZfh~x z;x=f0_Q82+(iWsH{yE7r9;uJ_mm>C~R`EtDQiH(azn0>1@T-`hN`oazh>;4S5J1A4 z(qPIHx+JqJ0!ws}N~h&QgH-<9&v2(y@y=GFBv)zMb0~3Ag7j{82s|P+ev1RHV5CpX zH_){!qNL;RSi=hGU$J*#r*tMEg(x{t>Pk5bYou!(0r05QKY&0DKGM^h_+~RC$@aQg z@SGfQ4(p6|a(!P{0^gr{K zeDP&GINe76=}QJi%H4&V;1>Cb*9{`mD23B~3L_Qn1WsnkQ|y+01otUU%aL+ZpWgynXM%%Aa&>3 z)kNz<)b}E=ZvAexxw@2SgR|OlFcH818|u`Lw&Jf>p+-IP^a(6ed%s097Ji`KO-qE` z>OEg%#;mG;o&PuVQJ?ss=4O-n)QI`!X1#tw6}+a`zurSsr0Pe>S+G?f99q;Q5mPd+|UmL^p`(HsmiwMdsDDM*{?&ETUiXy_tjv1xk3M6HcC_8 zpGs8WhVCK_wG^rMMh%Ov^Y{jaBbPXIDxM%T&4^Q ztUb2IeT=(fa*8qe)l}0e$D~zBsU{B(4-PRgVN2$;{1N|!b<3Y?+(y(oY*WUMb#eA~ ram-E1a?CWQXXIdqHO9>JB$LsUown|Oi|op4mD;Sj;VoWu*N6QVqnLp% delta 3065 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 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 313f35ae8275919a6457cf148d7e5e4cd9b3a12f..e19a5078e14e5e5fdcabd4b5df09070dd596a62b 100644 GIT binary patch delta 3089 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 z 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 82bb173bd9f20b9472b15ee3d16c65607b5a9681..313833bab1cbcfb477afb8af3cb98cb472366066 100644 GIT binary patch delta 3104 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 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 72d2da9cee8ffc14d12dcef2728edc266f24eed3..d29f00ce6dd33d208f543565cc4d9382ffd5d17a 100644 GIT binary patch delta 3015 zcmZwJYgiT48VB&#J+tSsXZB1Yq5^JqaT7sqB6tPlqKJsdT~d?;1w}{@1-xtu3{W&5 z@s_DQlA0NzLTW``DAY7X$;i7X}aXh%4IWj^%b@L~VfEY_NN*ZZ!uXa9bs z-`B1EHd^<~JTkD7vAmfUL}aDvN*COMrMmJ1>){8wZI7GbS6( zpuw79%tk8&I%pwtVUjP=U~8t;tqjg!?oBL*tC{<8zrn-IZw{_RLo6I?U1LJShxKwU zh6!xI#BR8eopB)&o@H0mV+BKgVapS0iER6`Rfk@KiR|_%U%(>Gy_%Oa|LW7unXNgn zmdI{0JP4Pt2R_{g-(_n(pvCTdU&HQxpY}3)(x4F8d$P^xw_zN6W$9hGl)X`c8`*DX zZ&ZE)Pq8=4kQw{i>@QvhqM?jleFK>p>Z%_YJ{B(0yGGQ(OM18379x|ZAGNgy`sgP{ z)xZ?})FaJgAyb(?v3eysj%wcS(?QZ_c!v`?cTO|n0Whd9}gYhoSn!oe9 zk=Q$~w!DocArg%w-nJc^!L^ikDvpC^`O&p=-~&F+s+ee49G|!Db6Cjdzqo!+vxP6P zS&jb3{IUbcnA-@x>hd<2#jpQn0j%Pylh4C?zWPx#?Bq8yPl$#e=Xa(Ihh4m7&!$cy z_rd%j69RD$<`3(t;e5?){D~4|!o87ib$ULolW$8wARaIA9m}!VJSGUk({MUG3I&hu zTv#K7IOhICQLm$lD-%TK^PA3XN~Z z!zIFrs;}Wbq3KRBY!=RhAXDC5!iBF;avzIH_^x>&8k2+vjYV*Y(7hcI`y3Y;2kZ@B z8`SCatC#qs`i@N02=SQLC9 zhS+8i`FV=5br|oLApE0%0q40nm;<5J;WvF^?VqJS}CW9?UPj(DHF4$EI?p@4ev zVY)Lqz7zjjgB6W-6nm~>Q;p6yFxfruTZ7VF2p=1Uo%19bGsY0m^9o#RNd8_AFBwvP zLf~ULL;84Y=xbQeGX%zKHW>1UAv5D-Ltz*0H_p#c+JpOyOEFZY1>^jW+hN#czX6^w z9Qa}^>^0N{qK4y#X+{~2Eo;Mdq2c(k-EfcL`=J;&{*Iw-Lj=(TC&Mo{&cIZO-Y|86Kzh?P|PEfyFuP5R7o54$#GyL5Wb0N5m*O@0XfEnS?QNfhcPUCpeA zuSvI?17Vf)ve3OqRFyc(TfL9_LnyY*}`IZn^i5`FTayD9Ja{27A3+z-3z{9jBz{# zEjNs>);Xc^#F#qv0#TH!G5z@pqqZ0`-X9B388b&9^-;eWv$ta0v{#HPHYjkau~gg( z4;t4E72yxYst6pb=>Eo*$5=>or19##NAPvyKO9!WkBm31@V1P;W_0g0` zS*ABACWkt7{Gs?*o)E>jDgMI{aZHgCXOGPo)2R6`C85bgG=o)Aa{b^0r6?S~U}nr# zD&D#TcPdpadGNBbnOgsu0*-m`wTWI?cZWE#@$mMW~UOxo0RU6$V_~s^4FDr!W`w<8bku@+}owiBA`A;lT=j}cS z K=UZNyH{oph*kThSdyMojv9abCJ58+Shd9Niz$!7Iprw7bcZytCG_p3KQN2!vp zsqL9~z)YQ{r)G-Uu>tdEmZ*PDLTOTLvhXp9>BXPWP@)X7>Nl&pHGP!b{Jh-7=Jed< zIoY{s>E`UL{H5l!oOJW^?&>3fjt$$)1-icvou8GHm7kgM|Axwr$#xCb0!>`Mpz7Ed zj{zR$d6^mW7G>ouFsCg@%gXWe^sMghGpONV*c_>0OUx{zX{f8SkE?lkTE00iV{z^> h-1YU0yv1ob897U{i~0sXn7vA<_MXT$w9jAH?|-?3Ug!V- delta 2932 zcmYk;3sh9q8VB%?IcLuMk${wd0}3P{3W9*5fQTp{g7R`Sd?loy;l26BWHb;#iAa21 zD_4>cCE;Uyq@-d&*GHm6nmw+Bfmf}}^jc{N_ph9F*PXRye*2uY_dehLzP)GWbgRRi ziw>2}4zu_7En{p&^V*3Vb<_IVS7C^0+wV;<)v(00PdbY0e(3%0;~=9Pk6xP>V<;Q@V5F|V;d6S=U4L55jOr6U4#d4)MUKA7m~ z0H)Qi80IoJW7fm1%oe-0A6vfnd6>^`Pxu(VZuqfbSFf&4hLLP_?FJ&(S?~i`#@2rHF0`|C0gvtI z)s5@b=H|_wkTfE<@oZD}_izDwamh7U&R$-FiQM+Fm&*>quh=Wa$c)<`?2myGk-M8& zUyIDRN1OY`MZhBSp!j;&W%jFUA?ojK4&B-f6U;G5)$k?r#Qjb1O><_|%kcaYZPfpd z-WwJ#b52kkktN2~;;VP~%%CPRO79aBc+kz_v5 z_&zK!++#lU35iyV7J_ot3Vd(GkU9ZmyyeR~G=hdTTQ8$ZdkjSSw7QhAkOB;{DN`CQ^>m!EO`K2y}M7}z|tQHybjpNHN zY=dk0SI^CZyZI{X8F-ejx}QwsXW}XR1P@ zkneRbe|!xx;oru$dZXiD6W=)Lha(}(O6;V4ROu37m31r#QKi2Fi&i#`xI7+x7kbZBf}rWyV*WO;j;Kw z^+>W&c)Hl#hD{Z|TVfV=6OCXb?cNILEBXF&D9n?>y9dGs$@;Asc1zQLK)@rzrR>qp zaIQ43yB}O<*eNacMMfebr4>J6zK9&Ds2lS{Y?R98jDhE*x7;h>ZK?L-2-Ij)kW?Rq z8jhM~xLP{AtP|JoOGggxgkMPC_KzSM?I?9t#KR2f$IH#|HJRQihK(}w;R$$G7FXsF zMTW}m?ie3A)v&;@#_*gxq!Jm6ye|i4*^u%mH#zZL)F>)ZPBI~~s1N1o%kXO$bx(d$ zn&|%Ws$>KZZIz#-I(mm}^Fv_KO>*(bOH+e36UKyW^apQI= z6E^(^o>rzvGvF;HH4_Vs8=}~H8@oFnC(ovlORhLXT1x zb&DuIM7eMsfyB?SDXkA5H%gQ*XJO*_y~@8nVc@@&YlRz#68b2Qf^Ncel{X)QWh#FP zD@!<}x=%d>J5=xIkorVj^{Mz2jy9a5hF$8$b)`BY_yjz!Ms)?k-_*%oCy6FbRG+K& zhPHflX2e-E-c++6uP{kcbKZ%7!`1mikou%-b>UWYOxmWds?cDgS|si!n&hEw>@UJp zwLBijYf_2Y@;eqX>7?3r^FHiSzw#&~O7>K*IO10`IYE6`f=njAuJtL!!cu&-VYUZ2 z|0%gzm@gttIjW_(V>71w+3RF?E#s7hX!1C1`l8`*wYD-2|6nG+rInVPhu>-CEiVyG z(Y4LoY8ayJSi-_AZO76)__g+4BF3d^+Wzuln4;PD%!H-dp-uSfmD;F%-t!3OKg~hw z`U0CU%}=|#5FOHHYWG5rk+cokpBKM|_1dFQ)H>~!)|2yyD7}xa`%-5e* z7Q@r}lai$0)dyRq5oLJlBe!GIWu)j6_OFBM^hukL!HlE&+?^i~W%9bs+Jp0-8Lz+B zhzw-b==B$o(#$)01N%PFR4@HZAdbt_+4|?V0^nY~<=6#yUB6QMkjR>;Upan%^)eWzrp_M 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 14c6ea7520d2777405bbd6255557353ea06369da..576d9f564c4f2217bb3e4de25f5ad3838ab0b231 100644 GIT binary patch delta 3095 zcmZA3dsI}_9tZHBbIzQ{%$ajSQ4tZaR30KIhzKFbLqSwj6a`dtV2Fn>7*7RtP~JMC zIrylXt|BceLIt%<@sVOlJ~GlQGqa?nXqtM>ix0eCWY)TC-GAn@&zZgV`R(6t?>W!N)t0Kdlec_nYdNuM2j_n5o0?-9Kg$J}#rfsL$fog;kAdJQik8s^9Pg*=2g?5wsZ*v1w&VP(Vnv6Zn6 za6W6^odn-ww@o<=&-OY(uo`03)T?R4LAI`bEzyYE@Dn1J5Vrn{U2rSg;L+pxUR}wm zJ9|VU6S>B*Ck?;BmF#zUzr#lMQVHg9?PM=i?;~=vVK0{Rx7KKDYwn) z{*waWPimLQMlzB6J+)iIIiiszYTqs0uvHy0tqyjpr|vyTt4v5#Si)vN0L zc8J)^Pu*&0CK~OjK0CTU%vE2U!@&1A+wvgzn6r;gCK{7ywWU{Y2hQ)$9Yo&CxC!Hp zu$v1z{xgw}pVfRW>>Nty)5Il&nXoCw3f$sDjWB{MV5^CIXL5x@Q3~I$xMB_u^nJz^ z3x5!e^W;{{*a=g)(u#_y+gk%?ofJx33GC^ZS!)ZOI@SU%|aB z(fIw`g=_Y>zRI;<^C0qMT1_0zd$@N zk`api@?em#BF~9vioH;}ImWZ^&&V)XbnZGrdouy6R7>vr^3%CGl-`73HJ{zhe^W2Z3uW;y~sFWk4)!9 zZXHT8JyPU0Ba_qXtezHaeDI4m{i*0?#`tJ|(d&^6SBqooVu?)Ae~W?R8i{6=_quAY!%{14jVKTdk<}K9750}9;8rQEqiQ-<-_;tSuA8O*RsEOjYXcGQF z!0}HthCo}Q1Q$(e_aL~iN1Xrp<21RhNXY^l&9Xa~aKUss znhJp>2Wt}w@YYN&*S;)G@)d1yGy*UT(7sH$Ax>*@Ltut_ZJB=|ysfQx2lIJ~6N{?VRUm`0Rd zrEO1Zf`4g$I~hcjF;M%Y8-ZrLt$opnAGVBdBu6!l-x6;r=sdUs^WUlPKF;Dl0n&o206&Qlh1Mq^cJP;7vQJHrO5>k+$}2fKQ~i)7^=30!`BP zC3Dfpk?K75!L8DV2gVTP4wgR6$7aioks5+JVTE-5PXv^EO1ki*$9vKbi!gDXopkjp z2F{dzU$qu)lAe#gMU=1Tc=eYsT*n{B0`r&Z9OmtZ@9KulN9yzM=!VyvASy6LSQ}>D zxQpGmaYZ-Y`v_5?oi3=u3+C%)zIGJ0>E<_LrOQNJVn7?z>kK_BTwbh8`5*vZ)1{3< z35rJPGPj^#QI)Q^Mur!4rQ%Ma;<37QLqxbsXO6__T4AF*_ZSN?t%%aK-+F`_OLadw zt%CP-m;2(ixiV1qqynj2c}BLW!pc@9%Z^TsaHl-R)CGT%$GIY4Q;R&?0h_X9x>chb zd)yJ%_44vb_yeZ=R_4N<&N*M87p?l4>Iw6#n19XA7rG`S$_K6 zPcU45?u%MimdGzs(7&=>QCzEus#J=y{stVa43u)=-wH~C^IsjQjC72L+mta=5J2_U zivKoj!nMPch`r@7L7Bb@sa$(lN#5}Z(YkuY6!(J2?4*2j3>h%5R2siSYS+6dhuDwd zd&+6AH{n&~Os5A?jfZl%{s~N0E`Nzq)tpv3(lGyqk?_@?#ysndQsrh1CfM+?^3P<{ zW@B(VKC+vO!zPb@ZT!xQvaW2&7 zI_IQhWf$NHOH*>P^u`opUgq-u4O+0?tgx72yv1fjf6I^C`&z0^HqEu$FZKB^0-2d_ delta 3062 zcmZwJdt4Od8VB&lo!zo2^&v*M3Q4JxX=T;slIQ{pd3V zHmmL=MZq3br!t$!#;AJQ-vj@ndePQKWb4AHBRgRtGjgOJ?qY2Jm1GAX-!=QqReQ*e#U{Yr|5ZPHUtG?r4F7saA4)}=Kn3qa4`Ypz&!UIQ#FM3N1L6?Y#o7s^%+d-@NA+tY?yZcNpJzvF`*b%G2OFD;bo?~^f#h64IJ}0{0Ro{ zGEYX2ho{vRb#_E!6t&B^JQ%9>ob?P=s28*c!Mp1G7OZIOM0III1I$tzn-bt*bxq(` zuxrS1db2TRtIc+(>*_0r-eTZBBEwrT>iWYU;Y5?V!EwN!ha7KZ)<=C@D-(@>SA8n! zC%8lX{hGV*wE9XRZe*`gUnxHTC#bI#BUAQ4>PIeGn6FXZL#FIM*SzZI4WDYp2Q(5n zaGD7X7hsKM%Fcc=ki$*Qta)`r6D>7!n@_=+nn=@nm|^wNrX9OFAwQ9nf1KCo5*b|`;ONtqDhvl@5$>h z)NCc|djTb!)XpyQMNhcv*=0wO3HLZQM{PhvlT+BWZ=e>Fue13q9yrB<&FAkye|CN7 zhtR+lU3P}I*s?-2oktM+;h|fwfc^ME2Rz3fc!A7$^s{Zp(uh2Fvx6n_JkNIAw#IP} zd+D|#k=I!Eb|C`uTE=#{VZPS~Y?onhaGg`Rqj{!Ua+VQ6u$r^(LN83c!;Q@gC-N@l zyc*(Q6Bj-rkLc~;+%j+6;O%HGbMq0{!DS7cpC+4)KuX6iUCfGOR zta;qALS$rC71uEq^Je|ZbuL06K2x{{YiGlayhA*8iO(_K@!4wF$NP+1MKoLBeGQm5 zJD;E1S_MBh3=RBJ`H+?#B7aXlObLa51*@V>AlT}!mUNm#Nr2u2A@%P+w_W^WA{W@R>1$nM5A z4SQe6-Gm2(%fg0fSXg+LP*}YZ?iU*Gv=c217mhZ3i~YZFi||-|87JC?jIb7dOBzQM zkuLnN4l9TpCG=lHGexFqne=|5sA#SHEEjIj+MjVIiWaq={cpm@+UOe^qL}x!i|!%N znBTQY(=3PDn)ohyfU`{8F8?=WG?uK338?R$tT%5MEDgf4LA6;o9T4p8E-eMRi zGM^uZ&7!a_nJ7L?w6(?c@kVGE7_<$YNZ`!+h)!FPvV@JIODs~IP%j33gwiBj73ZlC zSfaPMCZORYgi9I9XpW^9gysc8Fi0781 zz%$~dlop~iNAagq(_y68+mC?Lu8A)n;uCHKC)sIc!whNqMO?Sy8_7pOAS-$#->_eZ z(t{ zx1a)cNPVu|MA;!aPICkn>9~_vVRnO zIP0#B!0U5EzOJ_fsVorX;bmA^L7nVocmeOp9`*>-a7GTdMN<|=na!0WPTJwPMPBEJ zFEHqhy7RqK=SHtN;_$6%*n?WXjwQKoZIvS~+{tLel}E7P4YFDE^%BRwTiGNlii zN?DXhs|Ux~l!?&{p76usH`=s+mzOCvTxX+?UzMa!U8PTn&rH%MWv1pN&)_hDnG+G% zdOGGf-+Chx*Ipa;f6rNodH?_b 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 901bc60168fa80b4e82914d22fdf83b2da3760ab..759f946d9671767d384ef4c80fdac82163fd8157 100644 GIT binary patch delta 3092 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 Zm64cf%FIbG{AGjHLho delta 3049 zcmY+`3se;K9tZHBJG(QpJF_zh_=pHlK#_Pql@K2YA|NWD0tSMB0`f}aAt+0Nf`(|W zqF2;&Br7$1Uh7a(H8Qn7T!oA@A0(;Iqmp$y~zyF#4%$53G8B` zOSTZb=B#5@@PTNoV%~au4(?&nW;wuaChHrH$ika>r)V!c!fY-|gHM?%1#bBIL}sV* zSGdz?v(bMryG#(UrIs;_&4cHdwjg)d%XCaDC$gHt^v;^ILupoL3HK>o?22Hs(r3;y_?L1?TL{slC}nXIW;CfnS+TSpUQt$^T17OOSMFc% z8JuY}-{?uBy`$PpQq~>YPGqwLo*>fM6f2LN{{S5yDC-@E{b5vFjZshK7aEDkc9pUv z`5vrL-dO(tHYsnH;zG7hmAAK@CbBbC-YrL_>^zmfxM*OKN`42KveT=^1^U7}s;R*Z zL{nN-)9Txarbes0YKBNhQ#YyRgw>&=MHSlE0{c|U^c#unt&D~k%~PegqEz+=RH=hQ z@Vu(5GzC6XRRwzyO;f6BEBC|6MuUxJ89l73XSU(^HC5B4<3tV}e?Qz5T9@p3&-AH4IQ+QzUc)D}rmxjPv&b$X}!Ly&UEs7-a zD&eNruY||BNRuKWZ-Gnj#Ra?$ed3dS9N_K z{F&SF%^ITV<2Zfv*YHhFr+*%fMlQF9=_m5-;||6;5WQ)`9ohW^F5*sEBA_=9ai1vk z@QTqtxz9_H5xE{n+DiVx7? zJpV{O)KCp~=tdi}y!h~@=R~u9<0IrnM6)gUh>NJ%>?l5I{IEK{=v5nd0^)|VJNROs z^+a7RL5_-Nfa`{Xspo#M(?Qe zda+GIt<;5EaD&h&^(H?|Ec9b_>Ap<(Slw{HjVLTv-CTbK`#;Q}?o)Q6qj%JW_Ub>9 z?T8j8tN&An87%x&J#-U`DSW1e$rvJ9Bx$5)h0sG||CKY`tMM6{Otjcr6aAA4ex!+g zh(MRHnq)sS=&o5a^eS9EYDA1C*B+UO4AK-n9YX3OH*3m&#H>AMZf`tXfN1H(1aKp>kk!WVm>CFv(e*zxz*^C@#^&!7?#o8D^Sv)#!kj(A7tj>?x+3dcZYeMushH z5({5*hW%oBc{@>xlUSKq25ZI2mk1!GRopYnoM`oOai2*&d{6vangi?<53OBBv_{a0 zb&jXea1}p1>ju-skMpqT)*KP*{hz>2@%keKlsZ=I7#P-9ytNV+PE8X3{v`uz#RnzZ z;T>_%wU;Q(SIem`z-%pd88b|))mkh+1HaPRu0RRW1+88675J7>-TPYa&LMRCsh#fr z1<_hJt$&XTjMXl-xd=~bS2SRzYrogV`?e8fIBS!KXP6nTO?lrJ7HU(SP=d@hZAJ~w z%W~2dS4*%|Tc$n=yR`4Vt|rP3(^dszmt~h~+h1TJ*`I1}_CCk{&+gLRu___TG1uNT z!Q(S0Ks&G%sm%F78e55(y`3Yu>H1-#Z@bf?(;H2QpDmE&cn(53orZ^g@jb`lOdB zIKR+FmhHE}2wC3I4NK(-VlL4JTY01u8`jBhSjOP!M%6M){*l$iPNfZn%MzZmgA?mB(Sb{Iv^q%_c$q_K72m zmD?{|hwsUEj|~u&jFInNK&eV%8_l=%s~|ysRmm63H4piIjm? z3T5GyN4b=Vb~2@n^ba4M#S{Km{736|x=hyp)6P_%z3>&zIx#ERIxS0YIc2=TGV(NM yn6_f6iT*ne?HEV>y;w*6_Q_hqJDGJRhUn6Jf 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 19c045803581a4a71395a63c68258bc3f6d72221..02b722920064e0c1ff85a8877876d1a5973660aa 100644 GIT binary patch delta 3113 zcmZwJ2~ZSg76Bja>%IjqYpa5?PKh`hB1mrW^IOwZT)2BIG{2&zP845m`AhW`E9v zfy^XD1?<)_)7Iq@jf-GHbGO37%yNDn(RdRkqWfd$$0W|OhdUYV*BtC&HfQZ3nvle7 z$x4J(OqmgGJmD9nLh&n+b)Lb`4E~GRVT{0SoEZJcRHBKVO#6ISsAW3s3W#iVN~UK{ z5e^nIJw?x8F7q_#H+Yr#&2l1<-Co70It$pXaJI=JviDF-pYt3ZS1fM#Cz@og$UcRY zO-fJ{1vkPvMOpK^L=HZR-F~0JG=t3s9}ep{epsDjxT3Cp8#dJ+eA8Y9j&x$>>zU0E2q{Bzyal)g>^)3-pU0hTj73XNL3Ee z6qP}5gE`8$$tcy7W@SP@#!dN2nV%O&G*wcT`A&t7%Du(A;c|ne23rjFDjS&+9nmy9 z<*ADeFy7!5<(W4S@pLC;TdbaFhL7^<zR*gfo9 z-t6>;`-tA!%f3BBOXOkBdSAK?Lk;d>y*p4sk004^ZylQAZ8vshOA}0E(-b8{p8MJK zaVW(sOE#Ou4QDN5v-w|O1)CFi2zIdfH=T%PyRpT2Xu8>#*h3%x4Exw4-JL{peAv@{ z$lRP}w(b0CBClZfRf)W++0HIgoOiG{x*UkS?bt3|9wPHT$v$ww0Pmh*=T72`+|WF8 z*KnhQ{oy0d^Z|Ndo-1da6$HDu8I3E5=DTx2##ux@A>2xLjQ45aHkO`)FS+EQ_kFz$ z)^n+&bBX*oF0CG!^GoN-uGJFxi=1xz*YP;;<*Guzf|XoVZvfE(1y{}V5xwKXy&rB5 z&v6GT9}xwpxMm9k6fmFr$fyby8ob7x&qGE6MXu8t*99hU_rnoL;4!W{eJ=c-w~xjy zSu}-rc)kv1@Lo1rqQ%uZ-dl$YmyF;S=*yw+ut7W@aH^Lm=r+GZ6G*gF;Fo-knl1I? zV@3~I$7j7c0ro@OFxZ;Uo}L1u`J5C>q7WB8zvd~_^EIRP5G`}#Yb?rO8sB_Y4?p2Q zIrV}lR2RXwY*~tfD*k-gm#~Y!bT^AA%$RTULaM?-`1Z@Feb`0*cI#^Rg8#iGlPElp zf4&<5hd&k=OZ3R{M*>@ll0@th*j>nE#PeYz?S+wU_{NJ&670$_KJvEU+$$4B{Y{us z7fhs!st`P;H4&|l1&_H4VVvM)nh5U+OPVlXeBNV+Ah5a9UOK7^=P88=X zv@~9Z*}_xBP1rWPCed4YWsBMm=c;ucpOcNWw!3uLOi=XzOTQ_ONiw8_# zi}*z-9#Wfn#Ve5sM7f8>8wsb-M8@KsR!6Uyd|4Ec@BP~`%!XRl$2v(T?bl3tj zX=T?_qJl-zY7;m3y_A$>O|(@jWsG%#XQYCH4x&OIsd#NZQBkB+Jcs~_nx*PlrbNZd zq*~)f*dV=^Xb&Ijqz~4F5S2`j>KsnP52Yh#U5K_>OUF~uY}*bH)O2RmUB4C#ssQPH;pCs;bpVHMp*tQ)idUFhZR#93tAaL0xJtz;<<+ zFLqarr@G@$EJRnMSKsLA#T$d_?=5qQYBSWgjPcm4{Yw3!5UJd~K^|F*mF=;WEi9X0 zh3wer09$1jT_4e23wfF?0^fUG4l+Y?zMo=HF9%<;zenKwF76*+bv52(?5d6H)>_4`OV=i?i;lHQN=#0%iq^(j4ZU4udErgHtNnR}Jct)h zc(M5VpRubFwTa0IasO}ZGpDoD^&=84i+`P9R+Uwm!&nEan1r~PHHq4ItLXUXM6HvP z6NlLupI|?IXY!mk^dV*A%-#NSXY+|RE)%WNqm!*R#;skKhI_7$+qgDb8>dZ4%KY!> O)P`ge{frCCnEwFeyR?J= delta 3146 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 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 fb883bfaa96a2e779afb140e352bdd558ffaa807..c9d04e5657a713de20a6aa90d561ecad764f2b6f 100644 GIT binary patch delta 3059 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 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 2ca970419905167e73f476b3614968fd6819f4db..3bc6f3c18882db5b7a3c93c634a78160552e6958 100644 GIT binary patch delta 3094 zcmZYBdt6jy8VB%)IWu$S%(|fD8f3o&12e z)y)#As8~!XuV}hTTV@!NuGuC@n@2Qum!dS~Ceb)fQQlk&JrsNXxCmp+o>P3FJxMg)O>xoc9NeJz zYQ7IVuDF%F65dzz$_t1l6e}JKJ%U#ik2^YutYt>Iq8A1*mX`J~kFow^7HnqRl&`@D zCdN0th{#6I#1w6V?=f+jAlSpK?mtdsYt0zvxk3Yz_BjjNnOF075!nSWCHY2J$kZtC zV7q4KHRZ2F_6yBsntg-WF%p5>cQ9=uvWX_9Gnay=!h=lL>O_Z|6)j$x&(5XbU$ey`1vlyUG~>1F%=Q>{1w!<4k42QS8hyTUj360*@$b z4zGp3EBA)B6FE7VO*Fg5Z1=FHmw9Dla~09cv*CNNTG@Q!EqF`W;trk1m<>0ZuRN=j zaJ@x&G5LGgrTjAMHj#@`dA%6xxcDirSAGa}${S_KluL>7XD=;mQ^~I)Q!ag~Q9*u0 zlP9a3Lt4p1uH#gbTRMqcTU9>0hv2WOfbd2lHwV?CBNt(~YDGgK+-kPjY`0231*LNP zx61Go^V}U&rNw%>{Uqvzg*^=1cDAB{!C zp377n$!$blk*Y7IjDmYq*OoJ|Q*E`)pJ>Vi_4tS+SYr0Vu->-n89yE%@(x$eotXwN zs{_w}O*B$ZMLcrEnMAKC29AzaOROe1aDW<2Y3)Fbv^d@zI z<_Gwdx^PJokq@sfz2*rG>WX4Colmd2>39#3?^yNQ{aw(Y{_rs}=etkcab`Wy41e{D z63s|gcikM1&wJF}H{IbU>YJuwL^e~Q?(@ckne)vSv5IMEo|z}u(a~WhVb~)m{fVpgMECLCrX8Us&z#AG@9Zt!7OO5+LI*iiHcS<7) zj528gO}H`epk`599qb-S~l^Q7ot4g-k9wYqpOYF%7?X;bXYTHJBeB&3QeN;2YfZ#%LnbVu73E+e)aF_ce>>Qe3QGUyauli8)d`& zmh40nrQ`l=#7>rLxuI?})ACp?lR88cy-+I+F+DhFk@QLpG&i>DuOYKlrV-)gQH6ZD}@Cdn~6HpUbt!j~#$#wcps_zIbck#n!)C#sL96#eG!T$>88P5yzWdvY+ClFvQBtgsMuIalm?$6fOKDB=e+T-N7ys6g=mw5@E4;iOf(6vZ&-oBPNC8L zLwHhn`*?)lRhTOaTMcPvD2J*F~RQ=JTE3c-(l`gqW+K{QQmCP;DHk4Rg0;+ zabI4)SWqVsZSfLIxh7aAR@-ny`Icf$2u@diso41kHe$+e7rXB~!iC%7KkbT$3Zldt zBk|fSXc7mvBb9|A(ufM|tnj8}Yu8G&)n4*8J%-VeuL}Y$(n(R)XiAfXSqCZlye&S5 zNn3*O2gYCAxprJd@nuuIyPrNsF!9+dWFuO})=k=_ZL4nLKS)RYmG zCP{7YC&0VXNA>tCRu&^&e)bezllrcr8OxqZzop{)ZBwOzX~@X7eCf%T|AGgkr#`6l zwy&jUdfdO=LzZ1C;c8i~?S)nH7$K9W+)qYHaQ@5dWjEVZ@V4w7iU2A`$g}pM2`ggd zg-5o*9rEIOq_X0koOIwlqRMl!Ddrhbm4*DyIb@(}jokVrQd{*%KCOJ0s5(LZ%xg2; zFJHdv4)4l0ng@w$CdxNXp;R@m%6$f`U-KPwz@U~JzEJBU_t#;8+Bo_5VAQ7efsv?g zVq3m+XspHRhV&^84X0LGPFRY4~?&>2_+rxd&EdB#Jc$9bm delta 3114 zcmaLZd0bOh76nZX&j?3Sbm3S_*O-6T?K4WY=6-PI|m&Rs@Sh?AsW%FXftVrFBDgN-H6Qm z6n7Km!8}E$)}QDdN%3p%Gq_ms^2`~ylTps?gy$GzV=E$aC1d_#GIV9!SFMNZnCSII z@GCvDfDb_9IkWIVGto#_M(1M>^O@A|Ie3M6KX)sU#e8N%t`2Tt$`!bwMJw}x@)sh@ zB?ik3HZva%MZlJ~m?oo4BCBGiea1xC!dx0#2%j_E(~F5lO<}r=e}nq%%;U%>XxwL> zSlSYe_EMVESil0MqfIV6t@N1w6uwr@X%8l{4p-(K#EPsdl*Li?@H=IB<5HqAvT{ez zaX8grw!ub&4+pieR@T&QBC?5udx`WmwaU6LKSjq&WxWIZlcT`|gPWBn)iV0qlx+z= z!fxfojC(}3=E`gNn8-Fld9Cyi%u!x1M5b)3l@A@&@Ozc^ePqh^jmk8@lgMtm$~Lfp zXsokpZ2fuojmm9XFX_o%rJ5dELuBu%3OUdQ6I64n*21j@TMa%`B|4#0tkRXtNmxfDrPL!Lm!a&MQK*GWA)CkIhAzk1JpL#6h+R8- z50R@iTX1y(%x6pTvFTi2vwNCv6S+CDpFOw)^Vvf$kvX@6?3okEMDBChffBhFvzP9e z;e8|9amNAPX7A)9Fb^}f%NgT6V%RSIKw}%HaKYyBxX2BQ3MQK5!mvDcMv4=l%yEpd``51GJ76`~^7Pntf z1=9^4=T77!BR>D(E{(ysX;EBf3<8-}%RN}*5C6s6$KjMrAICd9T?JS0zBZ{uzAJb? zJ;wRA@F7i=@S%RN;aA3o9ehUQKb4Qr&W0I$#3|Iwe=i?Dtlz7A?g(q50D`z-fCr!F zkpa{AwHcN~GyM62ZI9u8ew#@((M&Ubn?*TXz&9Rgf;;&y559so`C}X2B?>g*Pn3TP z^@02;BW%LJ<^1WpxkN#F{){hD7Icnp{~CKB*oXh2Eg9zUzaGnhd-$h25P5Kqz*u6h zgaip}8A=nfNnp1kr6G?84K)>vT=0z-I#U>1j_X5<1jlDGydb#NL=nyM61?0SaQ53zfXYOYLDL0L~~E7qi?E+<}Fgk z{DeT~wW<@mOyDE+^4<|d(H4WwXVmF-$i)16>g-3oNPUcjx}X;m#YC%1QBro zi56(ob;mv7VReHyYPaCgpbJN;XJsG^R6o3S27W72 zZ6VR(Q6lrVlW?6VC_gsz6|ItQeDpU(2{qaiAn|HDX>E0*JdM4y1airKlf^z?SO7!pUpkUUB1Fw_%T1 zyn8cI;@jfZw@}i=5b-npJwG(|iuISV!o(M1bHHk%WxirdH+Jo^jbiI=V|YsZCK|t1 z%YGNnE=nR={;}ARbdV@%xcFn6H(V&b>P5gwXT`oAe8cH%B@2~5tdP7f;5yxH$ybX& zl8q$4h(~ax6c8Q{k4gF&VYqOGoiuavzhS&IN4*FZNfC3g(iPtt?3H5gJSIxVrcF$++Fi~@~K<=61upqctn z8uzQcM48E&NfS@P&o$m%j_{Et-1-zz)^yE+2COtISF_l&9p2U?^sg{msY$H$gwdL$ z@hCxdohD@)#^tCqd6hB@)f5PO;66>+NP#HVNmCw(QHN?b}j1QSoT)Kq-oIwc{-2<9)l3kxd$z{`Ue=yJdV#21&|a^51#`65kD^rNH?&G2u znzYYnpf;63I=tjGZIEk+H+^h-lWBS|?w4^x>ZxewEU}v_!|cd^x<9qrzsRi8Mr13Pb*r6*A(=o_g_V+6pwjU(t87a{iA$% z!h^*#x+=DCbXDCP>vyc;QWLCnsa8pGX$e*dX}YXL9}WYUnNdMa7w5I|O+Uw~OsX8+ sHA5V#cEvjI|NF2fqh(mr^|G^aRfC;o$bTmsR@J^k^M5C;sUD*E1AqRO?*IS* 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 24fbc63872ae6c955723096a73623f8d104bcad8..ef9065d163d383de8674d3de415b3344ae98890c 100644 GIT binary patch delta 3055 zcmZA32~ZSg76^h{6RU|;ZPiZI)UUsp?|9#PUr*1gU7B6H zG@C63r5qf-jxn!K@F%hi(v&6Ng2yzK_3yx&n(cqI61_G=HCuB)IEwalO{>KjqLHs@ zzMJI<7i;bqm%z=M`-a&>qh!sCwl)~fXcymyW@gwhJ9vVz`eQ15!c5Svw0{2wTWRa1WhKg&1O2B%HaX#;mk_d!*oafN@TZy`PJ4Dnt#w*?6x6#UD3Kb z6u~g9_skynu{Qid2>eZ3diuuQ2JMcyC*b7)$LdslR9C6)(eAE) zn`rE1_$iUSR$KqYC(uXR=mO35sRI}GwW=-JQ-XpHH?*zB+e8jp?d6=i&|Q126cafl zXs>Pj99C(smm@O{4cf=<0{l*AScl9w^y-EOP9qw(O6M5dMC3S8=hWB^x9U8%^}=hq zne%oNjpuct2V2QZ<2`hXYuDg|BGm@f>$;?gfkaM&bSbYe(8)tJ2jSXl=3Ee(oV*_$w z7rXp8GU0B;=4la-dk35UI!ZBdDqGB&vEamXwwSvI-(%M-*aNSyWmnyZCQV?gN^!_0 zRkC}I+=O4TdmnVbKKAn$twfXGWZO=r!ZxGSH5F>hae^`-5wK>yA+$?y|>ZS;BglfL$O7?F>^zK(f8 zG%a5LVXQMeqBrl_@(36A^!sfP$n@d*1DaYGu3Do%S&B?dKc(-mM?YU{{ry-3;v24i zkdMRWyOVQHz}?~d1Lx9{Ni@U2&2q?q&0K&P{rp5Ow7CXOSG~%G9ePgWzmAJAEP(Z9 zF5)z5<$r}s90A`L&J~Ru3!@LvTfb4iQ8uJKKzs0W>ZZx z%az-IxEU_vzBu#}p5uxu*fcZT4V{0ld zo^!t)FC>~hh3naYh-ZJzGqyMzfwerl38e_^<=L%BWza&^wfqnd{GtW5@J`hjAJoIU zKUaw6Oy#HSj)En;uU8X%%KOfqM-=SB&l+Wd@A45%=pTHSkGWHa`+u&$$E68GbIp8Q zeh56s$8YR}j|U8~Qw>%vQf=UKAL8~5xyKi5z(S$U{90e^Ff^Ah-JT9x`O4|>MDx7) zraKp44S&4x96Z5yYp=pb{hDdM6aUQUKr}yz|IcphX#PL>-cB5m^z+Oi+3X zppP*AD>qmtc=wJWT4*Um-_XGdA@&{uUwBI}`dSc$y9&v@BjFO&KZWe^$V^17Q1Arv zMVuDOdNEJL3t?lz8@T@?V}y^aYG8#>e_|SZA~gA-hKok4h6;!C?xS5M967ub9usa@ zqhFLH+^-3StA)qc+Tc-MBPHo)x;+b8; zh~hc%AJNaCmv}KQ1y+llDTiQ(c)Qh)Xc;fQ>_wo<3dO!h_+?x6rDUU>C(@LBzeBn@$xS>OW!TS z#L1n~PhT=bDWY_@ zsz%jc_PW}Oc7^OS`4qe(`*pb!t+baHjy(;{h4PzC_P97E$4|RJlr~s4{h_alON#+-@K=B%n z$g@W%kybdA*+r`Rl&G^dXx~s`Gp7*c%vK5m@lPfvL#e9x7T!>*+p~yr6{U_{3%!*0 zbF{Enc|SLmC@)9Z7lLtlXO)B1<#_(*+bPYT#S`ThDlJ>^7cBo5Urj`s^|sAL$|B1_OKTU_csj1g%1pO2X69$4WhNNy(oESob_p3q zyZ(<;60(eT#w=4_l7DTxrDb!wLk6St;l&YNEZ+TdjPCEe!jxgkPD%Q|Ich(w8QJXb z^f$-m&%z&bwIRXsAphE@D_usr*d?YUC9X7OB-qg{SNwp~_IdS)J0Se2BOo{*80k&{;Vzd`<`O>%QfO|a&_xBh`! delta 3062 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 OIp+U8|ANxFn*Rbh)`yJ% 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 69fa3f7983d30fa10fcc4c5f9216293f70c3e952..a71bc34b639add881b1509a5a90a8b9c42e6c85e 100644 GIT binary patch delta 3056 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 H#vcC%u{e0) delta 3067 zcmZ|Rdt6l276vw9RbOaN6AevQHJDz6b*k^?I>BDm zqv)kXW>ZvciYNR~^;=IDysLWE*hna%Q*s8Iiec z)Wv8Fvu7{@Hs8rqnQSB);ly0?o($udn|3+y7}GH)7q&AUxi5$;48xe`!M|be7?FN`XQ`P zHzz-achui!VWCmH`un_U=%BupgG`MIQvd9rg_||Xd&tzNBbuRJGvL28V|>erMjz7H zl{FDrn`xYiddNW5Yc+G`mtf+6#=oKgHfWXo{J}%5W)7BXhI%)^MN_8E7+C? z_V6M5APa#_v|!sEasNa=w%yP_$mCR0&^!~r;LH~L5jilNc{_T+VJ2sj77Q!7>18Y6 zJuY}~8qp+oZsiOtFe#bau=5P8=aTy8UkvCtf!k=7N#wYSODRR>9QSkiH;UnR+^(M)5S>W125s33l?n$aAOykEz;*>a_%U^7$yUK5O{2;nwgm#0zH#eEPIx=*nj#Tfr-Q zcF}X9nQ!t%rU&3EzQ{5k7V{@gRl#rg+RAPsSDCNdx(H6?&*fi%hFJcB37XI~m#=@6 zMl@>y-#8a3o3)d__7!?y)@}YyLp+h2hX1W@Gn~YC?nmTqDFS1KUU6#`*qtbiyP3d# zfRwtgHo8kNnSxI|_X~nuKAv}fEjV=Ph-SM8Q%e@ZOu^N;9Or-bBf-^kKG7VlFxNZ| z`Unfl@xYuCVcDa7@R|^wpe34XB7~>;4{!$;V(4KMIG zAZ&5P#ysu`S;g-Vd72C5kFLR;LS5NcIRBnC!gF;iCY}xGr59dA+Y)&N34fJf2VV6; zPYasK+eFJG^uV)PUFRnFNIUlOL?Rz|?X;fJ@Rl~@2Mv+0i#GH}1nOI)jdnGKUuxI% z42Mq!oVP`rG!~igleC+D=|SrKrfai%u#jJhHZO8EystfEQ9$G`YD>?~fJxeNH`LC* z#AvhjR7xAsd{$d?>Lci+{b3~To1dp`EAWNawLgE~Nc6UuNJny@kH~y}9v&8j%`rp) z_M(Lao(~9vhQ2|bapHo}=i-DtNLk=$(IE_}4)hiMK1OK*Q^olz1QvKl3{AneWsqL% zFG*0Cm>z%tf{MldR0rJ_4R#1@!EiChB^53dx4&^8ZWnV8?UjVHV+x!u5XOIc~IfxJ^##}^ zFE7VVBd5v{Gp@lDIl6C$tDNPSBQs!@96JFeSanfOD8hYFCUSa#4*JU3!cll!-Z@er zidM_{zBpyk5pvT@Y$Uo^Zt3X4`Hwy)|I;dyC}ymDYcRe(W7f&t+mXtc+d7jS*xBm! zI!D7RSfO(si$K@7>w+!Nlxq$eJ*!(>Z;9()bep~K112_7w`2P^@QNUv{v|2tNSGByteD9Wxjn4t`l zl86!qEB&QN^j5}OF2i-E;y7t`UT4Ii^#zG6H0kAQu?l=Qm6g|7AaR9aBALdQLaC=C)zMtX*zQQE>mumcEhX6 zturW9lBl%D;yp?JMpL1A-^3B+NdXp0x~lx{joKuyh{K=VRa{Ez;$T>bA?Cq_1qdR9zcZeV6oSKB)~a`-}9g zA$?cXcWW{(C!d!Zo9itK3%o}T3Mnk}_9_gt)|ka5>SH4}MC+qB#HGZzb40}WES^{O zZ+};=Dm(ZGrSPSLJjlLqMzB5qzkh~B34^N+Y%CQE*9OV`YfUfAGRPzJk%`gz|Fhui I_bw0mFWqs33IG5A 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 321af8bb77a9c204a0dd6f92092b07b1213f1473..6d9e9151cde9a195a4c01615613f29544a443851 100644 GIT binary patch delta 3080 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 delta 3071 zcmYk;c|cUv9tZFrb7$@{_s+d8C`kxzD4Vj$<^mz0hzg2=h_c0QEGeKY=76ApA{B${ zD^oJXROP@gfx6I>(zY>jhVScrm0L#>- zHJ0!@wWD=D(U@Us58oa*U%lXR5Im(WIEo#O=~0)4)e()IsIEBlCS0lBKKmRzX!P!Y z%kYfpVbWW7LL=g{wFqvwovsvEU3(fC2?=7gW1oBDe8 zU6`c4S%`(kf1tiuehgkz-zq_-#&@cJanuq`7@<*$kf{l?HNyg?z|EQof%QZ-i#4`& zt?-t{ZEGLt$<|8aJGX|&He563NHZ+dgd5htBS!x{pdF`4bV8}@95g8}`rtB6abY4X z*Hi?$!A~{+DBBLdH2QEr`$0y%HFZomk$sZpXww0>yI(y9U7F*sA!3IKnwEqHqKP(| zt4_mUy5`0r2JT`_*L%ZXS@Ym{qDkRK4-DwYvL5$#5jjp~r+a3=6Rh8b?_uwNPR^`f zD@y2;#zy*~C!9{Pv1gG9r|0Y{wH^^UKV(;rMlD>Hu>~w1=u*WN@IS*V?3$3h@C93Z zV-k_;BDSm$P3PLg?mhV<(PUG0-~Bci&K`S;%uOz1Th1?sf3UAgkJ}aGu}^+>wNS0ISrNY zpnhO5Ba;t4+DqgYz=tX!a3vr58EWQN%f}Dzx1G-)F&6egJkZ~oFYw5Q8T^`TE24lP zzIf|n_&LATbSKeF7k;Z{1x)7;ooIju_)|xp!EXNSxn`H_&+io;t8Wl3ur<0$c#>d^_f5jzHP}Ju z5}~gh%@le-%cS)YEv(kcJ-P6-*5->zM2p_h4!lC;HrSSaF{wmj|)q9r!k4=pNTvbOfz6rxB) zTknn9Mb0#uuRXD<6Yo!GPoCHXA8Buo#C1y-Ydb3g;ZE%@H(Q97@gjX(0^>yHpN+6Z z6!H>@qOwH`3)~-73-$ejI|CEZV~s|O6W>G1qIZdo%aH2mW-;g!lqR}IoU1}$G2vq5 zD*Rf;d?3CmNzC73K`;V{^$=gBIyO(#+aj>oHnGHOHBp=_ZW#0<3>QoHR1w9m7PkyS zN#jq8`}BAHh!SM6?rZEYAxblx9`^7cQ0-Xro}B6dI15rk*o;UyAK`OtjowT0YbjzAvSvjU#$X zE#hnscdmZAhJuIj8SFA}YEFse`0x!>r+#9^JM zOCx-w^X_sa%JSFEANv{Hp<7yyon}4OMNhd*ll!+)o&R@E; zt+;MgqOPD)hK;&nVK33@k-AMI1z4r42*fGNm2|CtVk5Z$y7ul~od4Xnbl+O7#l%hB zts(gN%p0wHwgIWkJ1Gw?!_M-9WoP|U_^#}3gFp*>*OAiF0OhRu0Blt*IpWlmiOQ7+ z4lq(_J#!7duiUDAMpSO1+&Y6&l_x4)DR@r#7e;%aIVLt*DfcU}(8d7ekC~{=#@nex zo5Y57a)(*NjqxuSmhhLBd=0;OjBZG`Pp~)HXE+? 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 1d5350156205c21ba4d5540a0963dee59993b749..e5d08f83d784984ba70804872abf7ae7c2c5fe23 100644 GIT binary patch delta 3114 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 q;a1RC)`VA%hbGLEYm@zVdB{!#5Cv;P1AVv?W$ 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 1c3a63ff0ab398dd839e0adebe50ce347750ca49..5e36e5c02bb9dbe12c1275f86f518f8b59d3ed6d 100644 GIT binary patch delta 3109 zcmZwJ4^$M@9tZGWJG-+pyR$Qj%6ka{At(|;NQfYUfcOWH6a)bkBtTe%MFIJ%EDG{R z5eZNf(g0D(2$eNWNz*6P(@G(!&XWB+GzhC?PrAF|B}N|J51%vR##s?rWisZ! zyTcadW%*8`m!|8PnP~-RG%*ncTj5=11?Nv>J(F2^{}j|QT5o%JjM06fB$_;i*_^iv z>X|KhT6l)3km12L0<%;8BYeYX@2Iw8nJN^*@-OD{{24@3&6wV4#ZceK zJn$(+<45K}=`TcfmdvBjpP-KU$#N>uGzakILPA9uwJ%@}-vp;2L>; z2Ucd^BrgqXgSX`sM_(s;Ia$7E(Fd^3=#^0&7^8DW)jMR!n_IULIW)l|@F#ie`v-}p z&ylw|jF@e-)#&H)b1IR@k>p+R-$HkJPv%{ylYdc&c^sSNUzDGKeexT{$dnT+|K3Rj z-4xPhWXdT~F~Q#hK2}U!*iL$KRw$;mT_JKVR=DmSf*&hGnqH$VT6LAR+Dr*LVi5A2uYndlRi|#7ljIt*R z2vs&!KZH%nqZSA#;HL7JtcEDi%xJvwY#}ld*r@EaLBAk{vOfxe1oF$<=7Kv0iI$AzLZsKA7Z>s&YPO_= zi!&YZD=zQF$wW&%As)CigUffzgzenMOiQAW3a)7PBcf0fZuj_lxQ*LwQ30=VM^74v zmQCW`?|2IJhq=xz%h0&RovrvMQP>pj!ks)A%60o9RbdCY%NJ4m@Cn@4UCD3}_j6}1 zY~&vALBPvr@r)(*NQ5oVZbwNXI(T*$G8rit_2^3mme z@VL>3qefd94dpjH!10WJgU{KD`C~YKlP4Ayvz{-kONBjr>Fj8n|J6JB_B)q}R^Q`0 z+b$BtTJVqL*Wogwd--4DZE<~*|93N1@_Hjb)Q8O!7o}oShKS;qtHj4Suv%sJu_I9e zsoaLF;b*Fdn+l>e;i{+Gncr*ttZ>ajJdhm9SCO`hf@0+WD$>FVt@BCZq4FPGaSc#lq#vd|Dqe_s_8&6JfddaJx8P)qvmt<31}Qwo10?--N2}67DiVaZBS3I zLh90Ps-0FM0}i4@>(bRhG6c3hK^>KaZ_RW@{by;?7pwDw5kPvY`p=YS*r@f> z5Lm`Kb+LOk>{OSGxdor8OZ83FL|Go{U1Lz&ES>t$T|d~ZZu=Z7%ofzAA7Hm;*Qw7p zje|Yvk0S6TmBXq(U6lkY)O|@E@VWZiE-#{7Z}rn51e$wVJ^TZrCxD4-T;zw4v z?TIGgfCtg`KuywglwkWlP0DWcs}MB#l_HGM6!9%YJAyUaC-Ly2reYyZSLIaAmEW-t zedRVy--AKixTg8ivVdr(kLHF6zBYH(YMz!Ll~q&3v1M4<8|9*fWjj%|Ty)kyf$ri= zI|N)KiJ|7$lr;@Td&IB{7DTl+Vy-`az|Hz9*)U$KOe;Qa6F zkzTflB-(E(IWIy0``1eDd$0-jpO6+D-%9kBwY0bzseEgj6u18fQKL@MM-0Q8(&6*S zK-1e&dk<3E94d9n--bQXC8za72g0OJA3DH4q#LbIiCWU68)s0emP^t=66QZR8Cs7t z;*2*ANcSr-!NG5&-{zw>hnH*duhWnx{$^J5R=(zil{K5|tZS;`#+j{2PfN9mPs`S& zq{YTtrD!uUtzvcYRwK7-sthk0GVCwN#bLZS!i&Y<|BPLu)oC-568_&VC4LtmV` z`mYms*L4_G&?+5i9m delta 3109 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 Cx|@vv 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 79229e78bf2720d6c2f934c4f8423ad31bf3dd59..36a4926d78e7510565f151a5bb0bec34413323fd 100644 GIT binary patch delta 3078 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 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 32eed8dedf5ad33e68350ac7b3cbc069a7d58f35..c8a28de127c5b441ae19b8a945d422ed75528218 100644 GIT binary patch delta 3101 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 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 a1352583ff72bce1a0e62208a0f5b09a2ae5fc64..98db7623c6503bbdbff675fdaf8bd90d95664d4e 100644 GIT binary patch delta 3070 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 Y)f_+1(5rinw>hrT@Q- 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 cfe0634f898414d8781d920a2b32c837368550a2..8dc3ffb36125403c45136e97b1dcf72a9517d00e 100644 GIT binary patch delta 3164 zcmaLZeO!%q9|!Pn=Q`(lIOlqpBqRwXs!3AOtdNI_g@{BYoui^obW|#wR8%DH%HwcP zHf(D(9rHNGsyH4n3Sj>$H=Y0ZmG-5)ylYyaK<^uDgE>-YP8f8X!-cg{I_NY!Fd zZL+gTI@rUTG3Unz5!wHsDoDIZ)blM>(SZ$cscP%f2Dr1!Uaab4?J=TWCRKyoX=qV> zKhBq^w@!6iKO07>T9omyMfJF&oyZ|j^{lZG<}&J8EwGm9-rX7AXB?l7BI;w$c&InR zI5Xpywh9-`Ow_71M2@|fx%>n;g_-x@2rOihgWTa4jPVurQ`=QJ!98j(*Btn>+J9^t(SQN!>1V@Wu{yU7I~&lfE{d!s z8mOq(Y3t!kb!qJan4#Vl`YEik`a_p4a+hY85bJ|g>Z$|lh+L}S2k?pdz|r@JTt}*_ zJztt>b-&e%>Qh=7&pXu(`ddVUT+|nq-GOt|m-8^sppELwC5PZ)_0>XTY|s_;FJ4+A zH(8^sM#kI%H9aN-keS@_HEtm_M1zf*A=OQ=P2;1I$hiZ~uV4S;2Q;=tXyEUaDzVI{6+r``9^)5ZSTMd1wnaHC=Q_YmX zdQIKw_hDz3o?)6#dLd%Za!sS&LiGAx&9}pPzz3R3GZ~_xJy^RnfiRYJ2v2~GU3xiM zHL?EpcN2Mi$-X(#NHi>t4L)-X?zDQD4Q?`{mcw4K(ZOgA?-}g;6Uc;jC7Y>6K*Lkn zto|s)@GERCiv@ioHkZE(gV_~R--UT>!KI<_E?b<3<{L4cefP)>xQ5;L;3B-p9(sn% z`7&(d$whD@`>I5~4eZ664!Hl7Z8qQZB=YOS-poT}ezVzo-WcGw)oL@R@!HukrgYR$w*TacMskj-oXwp$*xcLE?XViKwef@FR!kJz^ z59n((oy)Lah5Iv{Ir9Kg81R%UJ-?Oc4Igg9H;HfoR}u9!EaocOG4UIxxk~04(VNe> zozd<@fl1t+@`tdJt93$Pflb`UstWi=mq8P_lX=KYPziU@1@8qt;98;)$QXC-LDqPf z#kkb2So;{ellR^&)m*|fAfvwkg1UI{MmZ+K*(YKTEimvh<|({ zn<%t5-?j|_hsFs^KlDoIDS=&&(u8&j>}F&#Y>w4Dp_>mr0mJHqA*C2^4*QSb)h-iF z4irXIMZ))l(S9{VQ=Ej+!RqN$O>@-;O$|5N`ZtQ?IUPW@BJ+nP!=%||GDBNl!x z)Z9KxG`+WQqPiYN3Xjy6;CibUgeQ7eq6k~z?<(vl;-t{gjHa3)X_=G`_>)#{TTV37 zMmzY+p|D8n-!XtFa=bR`M-4o$jlLU(^FPZ^s~>F#7ibeZdc(>tXD4e-gOQo2k=o_I zV!|k+wx9zOMSY+xi628W$633<{TPhV?s6=Ho3#f%4IqjR($)l`l+o!{tF(tRTX26( zd*twLqPdLr$G&)PZmPDW%p8J?kF~#CZX}xLsH44wFhj?DbP9g06S56NF-D!EBPNL1 zY4uW@#S^d7ont!Q3-rtb8f?yy$(MHIfo^mldVVv>jqOLfgjb?}DnRzo1sLSFa01M4j; z)O9|@2i`)9Xm--zJSKJ%1J7e%;v#XJf&dbCiNO)S!WZI%X$eG0q2k1F3`{yJPAdO{ zD47$dYh&OLF=7^Wn4DsDhdBS{BiuKMi@N&|E%FyrQe0r2xV+C$_*g6~Y$95mEf%L1 z5T%&RVsR$|NVy_b200L=ZVL2~?aA&$Mptpy;#qLESmk*Lt`PSf_J)6mA7-HG z(mcfKz=tqSJbxbnrM)d)eE!k~@%uQ;oA#S{{d0zBiK}>L)jF6Uz8KaD??{~HIMGsb zPl-E&9WD))9A|$5(nK6SaVcdB-plME<(A1f|CtM=)w>Z< zW}{Rfyi1g2BbCHv!$s2iz5?7Qm4@KhEf=Mxr`Xx@2~u-wJ6tSX>9-1Aldjt0>owa$ zdcGE^%|0V{E5=T9qGYFjHE_G^ZGHxuWWT}KKyI}>!x2roV)QG`v?4~1JmZ81+vV&D z_{FnwkX*d>Tlk?|+LR7&$d&9$qE&YCj%8~2ro1C#5h6bz?++UR|B?@u782#<%a#vg z;ZymOa{P2#ZII7(z97n%<$K?uIrIJGCn@-U{$jb!2N}w*mH)c%1I~Ybv;4vrwJ%WQ zP6GxML@UbR5?G=r8(QEIrKe~jDl{msN>q4I@o<`h`!>Zp6alOmpp4pvrd*S&Oggv* z9#q~cM{3vFC<(hifVGM_s*|Y5UfF*d87Nw&)LcMji*1z?>WKGou~GTjYbiXZoO|d= zRMJPedf+*XP_7m*kX_<4pQSbcfaZ-G`-dUfXoM{NESmM>w67Q-} zS1gH?{u%E3>b-@@#$;2H;r|Thh=`dK8ES)WC&!A%a~v&ehlrk*npyRH#b1*po1luH z(mnflIwvF<5*8;L6P@D|8xml)ddtmclr9+tnx%PN6B8(X(yZLz{?WP5b9o--_rAmTz2AAyIqwX&8gz&E>(*KI ziP<~AoiP=}Un3fLNmsnP5wfQk2wQZInwyENIYu9L3;u)Y-`@_VGB$rrgxi_%DXU=@6TZ5L=oL2; zvyh*PfsuLh&LQ|7lj!FRuQJKsa6~rV%$l4Ha5IyilL*f-6*@f7rki<3{~OVecPutq z{DoQ94*}aMOheyvc!+5U^nhJVn^PgtP)DX?axqM2I*RW@QyX)4?mZ$qTjt)-Q7}z! zwcQpT(Yre2z#jdC$q$Hz`RM1gguwUpx%;rAVO{#-`E^9YN9oJN(=bV2vF9yVsjm(G z93Hj!`wK^mv>0QtM!$V`8Ifs369yj>*^Bz!hd+d~^>r@2R#`k@u|t1cREZo0>6?t# z;UxXpw3~3b{)ap)j5*xXce#p0BS#vvHOSb=FvEbUK5&y^R8T$9 zsI>;Cx>hogqh#=^=_YcVVVFE)J1jR$-`fNa7{bge;q4bX^|d(35a))HImH?hp5Z>H zazjC096V^K2=anI8a9{I!iO((9&It!;xEyIDA5%K7c z4b8>|B9}(PcWwiS#*pE{JO++ot%`hM25UWY5xnxkvEwY3vlDJ_B^rB;ebqae$TgD< zIQ0|UZ}Bc0(27#J4PYYz&>L<`*_cKXQsGv|X6O--dl8#C45e_t$L6wlpoasS%l`}) zvMXnO0BhNT3uECEwj>YD=b6ZUaOf)B!tT7&20PgOkC3@>udvO>mcU)?^Ae5w58HOl zn#fDfp1e|Idh37 zRC3;R(eN3AnUk(iCVtlZU_YN+#{3v|Nt>}G!qL;-oE`8u?%r9{nyOBX3 zjjK4b5l-h!mEXi;ki(h7zlQH~=7(6==OVYBc|`PTU+%pKXPC!rtL}t#+#Xv5_Udi! zGo6{pSGE|*9m_*ze7A9J_PEZExLXkj#Lu6*lQ{*x!#l^~)cCdVE)PpSkZLk^gl*RGUQOXh@~S{X$<)d;*5t7Mv<@|8#r7^`VOMKRs0#w|zd|xFk#( zUr#h6RG2hn2Fw-wtrOv4A+#PhygosAF`90z3cI+f{lhA!0O%>WHGD+P;bB~DXgDiMebo^>8(LAF#p?f&d{9$7F zWdp1eBYsA}Vf{tpBrE7A#&-`!s>7D|4u}>6iYpwElJEgy)~{GFe7acBjfKLC#nRZ< z;4`t(`3TV)KH?UeDwrzn{@jNs!bYt3MJ*#{Su}|UGj3siNIZ0KE4(gV9)jx@hKRSS zf?%cC^+Pj!B+(92A<>(m67%VCxKk3c?A$z#)B7sDD`yWlW+0&vaJEfGTuWr z`JTaz@#V6=hCt$v%K@Rk5+&HmQ)e%NOXR?rxG|wio>u(_QKF+fM~s9aa%dQKnpkPE zQI5HG7xR1alK!4VOTy)(Bzt&X&U$4m(b9f$VPPxWB$q5JAWB*n8v&(! zF1J1IwO#%`8VkRz%2&Q%V4!?+br~#_pSg7qEoT(Ya1?qg+$n5uxyh*5EI5F{I>mk= zO0fL6;!t&(DAiywP#J%r8}olE-X6zctK!@4O0;5(GJC`cn6E6X$4*zAQlflXh|-2A z#@-#Kk5J-v_`qT%VGK%;epyMX!F3tqmE0;77AtGEA|O-7ZKXi?fGBggQW}*F%a!sW z0{lv;2*UBp8l$xSg`H(BR?c@kgcZtv z-IS(>PU@!gC5Uvrx+`QH{6*bcQAm`RtTucS1%Fl#RO4T_HFMN&d!E6^YWq1fW&UvW zeiHtkzd(K9iOl40R-c@`1W%~XyioG|Cu&dJGo1f|KuvQjh3T4Bc?<5)2FWXk3g>9g zOH;T-8*Tdr=GQd$U<6R4Y7=YGj79Og5yh?nCH`RXqN8?HDQ^bKLoE-roQ%#|YtnPca@ zY_6FV?rKM|WJk%*U*D!U%D^~V+-MiG_i&}*X{z18hB>8$ js=0ol(&v8*xp4n?ui3ZO-mK&fFlW}j)G(~}bf5nMOox=* 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 dba8ef3996ab85e5beefa70327a5a62bbcfd38c8..fc0d687e3c9e7988b2f045cd48fe2443f033b0fc 100644 GIT binary patch delta 3077 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 CM0Az_ 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 fec783c6e643206116eb15ab54a5c90cd1ee33b2..b5a3500d727b5836ef3152dc1cbc1380f96fc4fc 100644 GIT binary patch delta 3064 zcmYM$d0bRg8wc>mxp(d|bLUrgF&v~A6=FYj#RsYth zHumdf*xNsfG37`35)IU=3SzIpORD194e+^Y>yu`pS6nPsslL!0B6?M=YVLOoPFMZp z=Lz3c-H2HPZ>Vl7(}=8NRFAs5-~rXs6DQz(hFy4@$Yu~@W#s@DFt$%7z(Qsu`!@X1 z#CRp;5ZO*;!gAKZ5@x9|9Uf-F+YiErOq{O^(V+26;txFB$mAKf5ZS4jd}AD(!j!4- zV7qwcZT3FwGHXBBVj#1zF9NquWg7aV6FCfGT4s2_VCL+ILTD;uI;Iw*@iWs={3p?1 zk$Eux4;aS$VLuGkv;Au9;1kx($w)NBm-U|7361RQEwkZeHftYNHq?eK4y}WW*s?v# z;d|`1S%=|Ci``}&-7UtMH95Y|*3`a5Zx;UV3B&x-e&lPdSOL2ykXWwvgobWk3p$i!qtZ7 z80S)^F38oxL+Y{sPk34VZpk+Ix7m>n76U9A)pbm%iD=|*^}b`Dz;?5)uc^O$1rfWh zSD%P!AR3je{&7ry*rYzcfPsH;{nq&qjh?_+2Svjj7N3}P3*x+g-A?3I!%ZHaNHk^u z=ihW0F0#0u^FM_WjycLL@i$>pxcBCkHP*vGE`u#4@(AEE2cr}o&0H3T2YUR=WeK;4 z#=3IZ!Mk8IS8#qbJjRveV$+Qq!|ghF6&kqR?Pp;fxBn?JH|{ET;>b!O&lTLu5_xXn z&R(;|^%1V^nk&4=T{Gn(GOyv>9d``yinLhGtHxsUc>Tl=2%Syj?aN!=!Cvs*z&je} z6ODJ^$Jf09=kW9U8sX>svWXZ!zMW55|25Hsv3zRJ{R#0F_wwlja&Y~S&!|P_COY$F zr?|Anf8 z$fv)>Nd8DJGU8LspLIk(pC|n7B?!dVn{UsY1`7q3D4Y`CZv@xQB=|z`b4nzd(qR(( zP3Sl^P?*zD4)e_VISE1gx`_O)2=kO+B7atx_YG?1KShWh(Bmq>`07wt1@S=tBSMyU z8vI+xPO~SP_PtP0^?+#l6rrkLHQX&!*_FW#Vb6gEq8aYOSNonpQ?k&QzW|MG!jZD? zVXM$|!w7#DPWT~JGe-$6$5H#4rNZUrm9R;8)VLPj6FRpc-~bPivBw?>*d%i6QIddj zBDV#ZoaJmWQ0y}nzj(7u;)pVgpLIlZ>yn9P^WwOgP$JXp)#4jL4h~1I5VFHn_>+DYJosMPD(!1IIHkPh7JO z^9TMazBvgC3z{tEZcTtjvG}z}oc~}(tiRDh6ud-itUC^?#0Tto*lIS!O8hg%i6~@| z_-_qX67pE=Zo_7JeTIgK?V1{y4SQ{| z>BG%LQ32X5y;0k!Z0+uw{_w1}?i^OQ+*W(21G{y3toGQ4R&a;*KVf)DEx({`jW7^J zM{3&)``{t%^=2P39ieuv~g?;g<# zPBKjoiAEzvnh}J7EAB`$H~&QxYbU*~iGWk2c?+?^*aC|OrDfM1;QEoY(rPS`!63!Q zJHlJi8k^BXagI`9;VHOHDoH3HTDe0id4T{{-jgbQt%+9UOI!Qa!4~PAI2WS$z9#AY zRSVIWE7iE}hso0J1MaX*`YaurEkPsI`P_v*(&=9jP=Zl9`>e;E(ob(-;)GV|mv0%O zL{_?)^A_}zo{#B(O*&rvHGHh&o3Oy7Av)VdU&0`r<5HwPsZ!@uejJ*vnH#H}bzbMY ziB@Oo#(Nxv`*l8d+=!C3x{#sYz-79n^;l{0N4m&~E$|;*OwS5a8J<L>R0yj6w-g zKhVWjpkZb?XO-uuE4KfYX(}N_XlB7Gg@@rEBZx!i^T)&-OV) z8IyGv`{K2kk*j-Fgj8m#S>`*koqavLEW4YY60K2Wui*%I%_VuhEjH!aD2w@W zXps?oPUAb8MjHqa!a`9`Fswi5yW5E1Hd*G0s#uf98VqR%4#{|Wrl*cnro8sef z_~>jf%Bcf;g;$hUda^50k`gMCL#=xEG#m_3DKQQ)DRCKk--=Be2R7Vy`i-dww$Yh8 z+q~?vA}%p5)u4}Yh>uH6bBIceadL( zppRY^ml*316&n?oIC}JGo`{&4p|cwHMJQGc>g3e^71v#L&VzA;5Lx?bo;5ea4U9IT1AfR18Da#2=MDzY=e8t4vJ3(Z_GfA&G!-Y)hXB@0y^0VJ28a0a9l$``4nQ{#tII58OyY?ZG zt!&ZTqLJA;7y;XEVHyURh(>!b*XF(oS2C?mg>WBpe|8Cc%-k>OBC<1&VIGA&Mq>^0 zc=QB#No%#omS~Ksb#usuOSRKxcf(5UqHDphOPf=V8I5(BG;R6EE8tP>j-WH} zZolJ(Sq!q6Z}FIRPt9hcad+WIL}vSm+M1L5iR?|C+9tyt zxIp`5#!oO;dn*q&ayY5IRdy7%Yi}1KQ{zedo0}fG>C}8=YJ9YAsQ+~Mo^C>59npjm zol|WKk)w^yV_OfI$#Io#_WV7#uv<6pNE5uGi>TTNpY`ixZ!uJ7oQzUAW#|%L^uT?( zf;=N^)s+W&z%JcCOLq`C547lIG0tM8u9hjo_h)tW=RYKxNWGfT2-6)KfruyW)ioO$ zh+L|5UrZhfztOcVVTdM4tW}W@T*O+3B*2sXx~dl6V5j}Eo5=MPJJTzb$jz1YyYMYc zv$&V_Ye5O!Zn4Y!uqGxuvT>)8iOEJbQ)@;^s*x)W=`b3bRF9Y!?G zi}R{|9VT#LgR@~X7dIU@@FH&AmQ!#Zm)?8btI*$z5Y^z%`&QKOvgk%`a9%iF|GN#ph5n-$*`TSg!?q_Q-Lt4&s5nZG6tO3?jdQ z{KkyY@D5+F?Ge$ONPe5uPI#8zW?N3=KY;)EcmoXLPu4$&W&G()OW=u+Jh!@zmknm<^GP0_Z5y$lfJ-AUsm%c217SYla{Vtmd_<_FW z%ygni4}F~vY8RPoai{)xW(Ur1=uaHqO%$cme>V#KqSEvo6@jo`|J$u*qGiKG+FJ+% zMCQ<0SS1P@j6~6%qKys4N3VnC-o`=8g@^sdIEs_DB4sg&qFW479aA9&??-838pZh< z1Qu&2F3ZH*GWHFzuOzYcVonGGh;+gn) zY$8!YzIZdS9)2(0Y4Ra5u;TL`1Z=1jUp~MuoZ*6GtD8e)oGJNS$2j9w$yY@n#*32Q z;@^qhaFYBNCcqNOJU0XbSMpLo<$vI8X^}n_CP<4TFw>O>EPgA+wLc_)vN$$(bm{L)x_} z0;ZXzJuXMlsFn^Kp924s4w|s&R!@>@eICGg>H04SX!S0s^?9$Cq_1AbjaNUGe)yCj zN}VA6l)D)kr5BU$!w#9#ogzvbDRUPv!!&={X6Z4wR<@5u3DQo;4iy)P)@Ur6gJjRP z9$eTdd%b!Vel7cSx)H5)l^2dX2MgrrI?QzK6?yseYeeg8Wkc@_)5pukz0=`3IdKw7 zkp8KhvJL$*M#?!A3S2H12>W28yk(R?WEvrt2V$3*D&&@@n271JeDnSj?0?fk`RmcS zM455&?ZJ3`X6}`r7bBHf4$7cX%q;7SGR6E1zEC_J5$O8MN|+56<%Up;Yn1Q{wm7d- zHu&QYO!g$DwD=2HtCY8_gY8N+`zBG&5M^hE7S2$1nv#h&<|`irPsRSi@moH$W(s=`mFt=0bO2PMLYo*&AnJ_0Re|`B4ELUE5pvLAa z%1a~q=c%gdSO$Gm^{oz=q7IkRiSoy)eWl1xRwvp<;ry^VC1@)4e}22_y#tGHlbsrH zqzFc+3o4PqP4#NR?vIEHQdD!~OZc7o!Fgn$&|9th5-Babs-D(0(lJRm zENa-Kqz`XM8viTP(Byo`d3YU#k&%9-Buas)eaCf_RJC^V(5f}1RufanjxzC$9i>w| ztw6sFv<)zwR^gb6Pd3gmwyGs$!GOrB+)6JiLt0j9N?N?ZE+r{F!!AD6V3(9yRp&gi zVQu(OzTt;hc}SH_u{^+~syfz%=ZJ_22oGwwx5hNIp|Y4)s)9Y_zB~DI{~!EH!+X^~ G4EP^*=XwVK 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 6f8258772b73446f451232a6c30887c387c1cc5a..46a89e1256201ff11c19a16a56336bad72dc8d8f 100644 GIT binary patch delta 3076 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 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 b402174e34c8cd1fe3e27743bddcd29c971d558d..b6080dd656d823bc8cb816ebe75820bc6df93546 100644 GIT binary patch delta 3110 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 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 3700b84575ff87d3d16cb3d2835bdef523fc51fd..0147fdf50bbd09222a65db9f269c745671992e28 100644 GIT binary patch delta 3085 zcmaLZX;@X&8VB%~v(MSX+57CBfF{V8%prr!sGuN-h&TZP0&)Zr4B^J8XdVmwENOxl$$Sii^#Sv`IRdwGWI9Kc!V^qi^h9`%8Fa5EvNi=W!_#WeC})OiZooav z^##Af8_e(au0-Qvw3aP)uvqKuTmiRegQnetUuoy{#S+=@+EpFcnN5JUCb13XY3n~& z0^7A)XMPILJk?gK>Z_XdRFmyLwJojdiEO*zUU*U4dT1w+ov3Z|d~As764h$$5xtE5 zz1rUFpWuM@RLLdym-cKW*0Fcdo~`=`&eoo*MyBiww7+`m;bxt(7MZd?tQ#E_O5|Xs zbB$>y6FFq*+}rxmaYz@?JOY2vO^a(Ga%6S0_V+>`T~gC(XjH9N?b7A=pj3|E>vA7r zp5uL8Rb>v*bN0IWm;g9c_h#)@n4wy!+M?R8Yh&t67;sD1(X)qWyo>5W-GQ-)c>Fru z@$60_Cv)AGKBM76-I)Xima&%W!r=R?b$k|)v!!Z^>UK8hm+k2PiJcN$K;&Y_Mjky6 zXQ>vmk^Ly4%QiMO(u70da-PlXZYOdT*)nY%EMvo*BV!o#}SG3_1n8Ou6?)Pj|J<64iS%c@RTv;nJH^G6cAJ_uZI8(!krD&MA zrsOZ+POj;8Jp6&%#M~qDKF7V4>OtgV;NES#3PZRL>=2NTk^4~71Zz|eafd6B5ufk5 zK_`s!6}h2Q1mYXcT`8Xq^LY;=Zi(-1-t%T59ONUM3y3C0nfOQ(22Nbb&+6O=cR$t7 zmXGhaP2{(epRde;C;9oGp=N$}_^dI|-;uAd8V}%G+xgWc_V5;8)qI^O zz=LnL+y+bdX1jX$HvhrFPWUB%sN+6Spvk~@zmkB4KYzIXbC}B?y;uQj_~Q{sRbV&Y zcMP=;{Ea`~yNoEvivP2FC7jOR+=_sM)(eb1&PdR(z-~ZEf;|LwGcp;RrdlP8^1~-y z@BzWS9`l253f{M6q7X;Hza^2#6p|`T4s1uqo5JMjaj;j2u+Ae2H52ByV?t=KkaBSo z%oNh|^>DY4ULFevg^aq>M3Wd*f7K{XEpZuK;p4F%RjDV*q`s~S;aFTxMh!r$G7WaQ@kG|Lq zDVb)aUvUi!PK(l4jbNc^<@!3~RM@3|+h!xYq;LH+lqkYq-yVkAMP#Wq=ns|+;rTOt z*TL=Zn*KXmjEnTt4{eNrh5BF59*28GdaoLu7n%2u5KWgvVWlYtjX9!?4HlSQs=8IR zS9MsN@H$c#Wg&W}A>~maV(d@6Jlx^zBQvqiBC!sJxN>@j{u^}#3w0_ zJ|vpl5m@v!u{xxjXoj=+>N7vW*l{$?0MG$&KLikj4!E~tHqP)x$ua1I=2Jf6@TgtBZ_qt?~fqR*c9>6ReZ3;)=G9d zT))^JDQp1qV(&^33IdqrAw|x=26H7-)Z8pIc1Y3jm^kZaX-4BMqBy-YPoEAwrTIzN zVO*hVlazVkI-Uax4~1=8+jf?bI2sU{bCXtE>er!2@OC+#c6VVm=*)E0IX{vi$gf`H~a zNQ3tuJ5&04F&3U%B>nI&2JV$EtyvGxNe_L7iRO(naJo<6TmyF$8=SY=V6*T5Y&AG7 zLh9%JXmH+mjA*_|R2vb7z%wK0s4@gkJOX#N~6a_7DbqD9Zh2O9BHY*CDS^3g+BCtv;whjGz<`9}WZ z|NkQ2^g~9{tmOx%zJ+1(!vNGetwMg3gYjwm6veF$o>!EHA)<6%c~&ZhOB9p@_dmT^ zdEPDso>Y8iB7pP-nx@yR3{R(eKN<5vUO`@QZqEOi$`KJWBXMSDnbQvY z&h^u$ux8;+-zIsQdpcz0=48E?SFqHc`PG!DhpHOrVld>F1D`D rzOD}C#$tz}oaKdOc+o#{ik2G-atccFS9<+#?H6()gwC;rU1t9U6*hB> delta 2996 zcmaLZd0bW176e;&CuUumF|#u64!mYX3HibOAp=WL0)jF?pFFD zSgGsMLSU<|Z?GQ@>K?ST5RLL+^zmIViLtP-hZT&?AAax%V0P4hqv_$FGUcIwb$o2U`J!;={LvK!58&q2cLl->vx8qfju$+z_9L>2QN>YLNQgFou8uIVJQ z9ii_i#6q_I`i?C}V21uiF*0SlNq@&pgdZ5R7m+F3>xNOG(~0b?43om@VZOn+t`%N2 zcvTIOk?i^nv!iN=>}?H^hnr!TA-?hjxZdPmlWm3!ca+NhH$&#bL89^IhN8j@=wm1g z^MVP6H%oTHT$4LZo-+A^p^n)?^rUQPXgUD>hcsfa%5d}vMEv9~LrZ!ik%Nojiu)+I z%5eQ@29~py8~tGmYaP9eXo9QB=S&`BeSX-D`9IlNzAK3wz1iRkU%_Q2OWEL7l+dw( zO$ru;d;DA2$?og9M&zWjM;;(^PJwL8+2wE(`?y3-huLd4t#SP&+kVrP$eCwv z79ud`5VqR`_d92^-Nwg*w>X_An#cJPH##nY$c5vqyU`0Sp4^1ISeVQC)-8qAT&#H> z(NheUIvoo2LUOvciC6PxmA8f>Z9M4!z>@oWPc%G(HUiyB#U@=^EBo z5=MIB6VG>+;9Q31ee(skeia@Nrq#s3PGP2ZJj7VYKM!aA~p|D{lHa6p| zP`G0S91!YnT_TzpAe^rI22hPlPNG*^cj2-9ugD2HV_4HV&eA*G$2q+pJ@rR#b*btV1>y(@p&g? zA}~T+_tPL!ADAl^4Pv3dT5(HSAnXx$*_0E_wh(L2Ootg_y+3LmN_ zKen4FXq@=!`7&OWIj(NZV`TZO;-Fy$Z&i^*d zklTJhK=ZfD*9L|>Cx5;a3(x;i{^mo5Xn~#FS@1HPCqH!WgEHr66u6SP`#KfP9@6>ZdF5(7b$uv)z$DC7OEz7BZ>wdkt6{skjokqMQr}pkCt5r~ zeIsW%tXB6&OvCwK+@T&WD<(=Dqc*;u0vD)9EAUe+u|&Q6=pnqQc7KK@OzczdW#j)z z6V>~k$V5`2`q$MjVS)P43pGwUr9R5Q{YiH;&1nnK5^GI+r3;2>W8~*yjrO<{OFFct zY!?$H%bG{{G@SqB8JgctG+%PAHuvyGSf|aaKnjz;)0XXik0@n|W=wblS84m3kb#sd zTK!d|bg7SaT7Lj8*Dku@)GXbvUB2xKf7e=1wGpLG)^5}ez+KvnQz%vH7g~2F-jg=c z)>tFv-50yrXK=Ej9L@}U82Ur${}m`ye(F5DVCer{Y~`wxX8!=Ie^`|O 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 結果