diff --git a/Changelog b/Changelog index 4ed8a6a6c..e3d8270f2 100644 --- a/Changelog +++ b/Changelog @@ -1,6 +1,15 @@ * Unknown - Christophe Dumez - v0.9.0 - FEATURE: Based on Qt 4.2 - FEATURE: Brand new trayicon from Qt 4.2 + - FEATURE: Added a menu action to visit qBittorrent website + - FEATURE: Added a menu action to report a bug in qBittorrent + - FEATURE: Use hashtables for faster lookup + - FEATURE: Improved the way parameters are passed between qBT instances (socket) + - FEATURE: User is warned when hard drive becomes full and downloads are paused + - FEATURE: Seeds / Leechers are displayed in download list as well as in torrent properties + - BUGFIX: Fixed download from url that would fail sometimes + - BUGFIX: Save directory was reset to default when filtering files in torrent + - BUGFIX: Force a refresh of download list when the window is shown (avoid delay) - COSMETIC: Replaced OSD messages by systray messages * Tue Nov 28 2006 - Christophe Dumez - v0.8.0 diff --git a/TODO b/TODO index d8fb8cbc3..85d212042 100644 --- a/TODO +++ b/TODO @@ -7,33 +7,36 @@ // Intermediate - Port on MacOS, Windows (and create an installer for Windows) - Progressing -- Allow to prioritize files within a torrent -- Allow to prioritize torrents +- Option to shutdown computer when downloads are finished - Optimize code to use less memory/cpu - Add some transparency (menus,...) -- Add a column seeds/leechs - Add upnp port forwarding support // Harder - Allow user to organize the downloads into categories/folders - Display new searches in new tabs -- Display a progress bar that really display the pieces we have (like in eMule) +- Display a progress bar that really displays the pieces we have (like in eMule) + +// Waiting for libtorrent +- Encryption support (waiting for libtorrent) +- File selection in a torrent in compact mode +- Allow to prioritize files within a torrent +- Allow to prioritize torrents // Unsure - Move Speed/ratio to a status bar ? - Azureus spoofing to prevent ban from trackers? - Download from RSS? -- Encryption support (waiting for libtorrent) - Split kernel from GUI? (would be a lot better but require some deep changes) - Web interface? - Use downloader class to download search plugin updates +- Add autocompletion in search engine +- Allow to set upload limit for each torrent +- Add a torrent scheduler // In v0.9.0 -- Add Visit qBittorrent website menu entry -- Add Report a bug in qBittorrent menu entry -- Force a refresh of dl list data when window is coming up from the systray -- Allow to set upload limit for each torrent -- Optimize code to use less memory/cpu -- Check space left on hard drive and pause all torrents before there is no space left -- Option to shutdown computer when downloads are finished -- Some GUI redesign +- Some GUI redesign ? +- base on libtorrent v0.12 (still not released) +- Peer Exchange (PeX) support in libtorrent v0.12 +- Check deletion from hard drive (bug reported) +- Should create options dialog only when needed to save up some memory \ No newline at end of file diff --git a/src/DLListDelegate.h b/src/DLListDelegate.h index e5b7a1b27..c57e033a2 100644 --- a/src/DLListDelegate.h +++ b/src/DLListDelegate.h @@ -36,8 +36,9 @@ #define PROGRESS 2 #define DLSPEED 3 #define UPSPEED 4 -#define STATUS 5 -#define ETA 6 +#define SEEDSLEECH 5 +#define STATUS 6 +#define ETA 7 class DLListDelegate: public QAbstractItemDelegate { Q_OBJECT diff --git a/src/GUI.cpp b/src/GUI.cpp index 5df88ad19..64b38be79 100644 --- a/src/GUI.cpp +++ b/src/GUI.cpp @@ -33,6 +33,7 @@ #include #include #include +#include #include #include @@ -70,6 +71,8 @@ GUI::GUI(QWidget *parent, QStringList torrentCmdLine) : QMainWindow(parent){ actionDownload_from_URL->setIcon(QIcon(QString::fromUtf8(":/Icons/skin/url.png"))); actionOptions->setIcon(QIcon(QString::fromUtf8(":/Icons/skin/settings.png"))); actionAbout->setIcon(QIcon(QString::fromUtf8(":/Icons/skin/info.png"))); + actionWebsite->setIcon(QIcon(QString::fromUtf8(":/Icons/qbittorrent32.png"))); + actionBugReport->setIcon(QIcon(QString::fromUtf8(":/Icons/newmsg.png"))); actionStart->setIcon(QIcon(QString::fromUtf8(":/Icons/skin/play.png"))); actionPause->setIcon(QIcon(QString::fromUtf8(":/Icons/skin/pause.png"))); actionDelete->setIcon(QIcon(QString::fromUtf8(":/Icons/skin/delete.png"))); @@ -100,6 +103,7 @@ GUI::GUI(QWidget *parent, QStringList torrentCmdLine) : QMainWindow(parent){ DLListModel->setHeaderData(PROGRESS, Qt::Horizontal, tr("Progress")); DLListModel->setHeaderData(DLSPEED, Qt::Horizontal, tr("DL Speed")); DLListModel->setHeaderData(UPSPEED, Qt::Horizontal, tr("UP Speed")); + DLListModel->setHeaderData(SEEDSLEECH, Qt::Horizontal, tr("Seeds/Leechs")); DLListModel->setHeaderData(STATUS, Qt::Horizontal, tr("Status")); DLListModel->setHeaderData(ETA, Qt::Horizontal, tr("ETA")); downloadList->setModel(DLListModel); @@ -154,6 +158,8 @@ GUI::GUI(QWidget *parent, QStringList torrentCmdLine) : QMainWindow(parent){ connect(downloadList, SIGNAL(doubleClicked(const QModelIndex&)), this, SLOT(togglePausedState(const QModelIndex&))); connect(downloadList->header(), SIGNAL(sectionPressed(int)), this, SLOT(sortDownloadList(int))); connect(downloadList, SIGNAL(customContextMenuRequested(const QPoint&)), this, SLOT(displayDLListMenu(const QPoint&))); + connect(actionWebsite, SIGNAL(triggered()), this, SLOT(openqBTHomepage())); + connect(actionBugReport, SIGNAL(triggered()), this, SLOT(openqBTBugTracker())); connect(this, SIGNAL(customContextMenuRequested(const QPoint&)), this, SLOT(displayGUIMenu(const QPoint&))); connect(actionPreview_file, SIGNAL(triggered()), this, SLOT(previewFileSelection())); connect(infoBar, SIGNAL(customContextMenuRequested(const QPoint&)), this, SLOT(displayInfoBarMenu(const QPoint&))); @@ -265,6 +271,14 @@ GUI::~GUI(){ delete s; } +void GUI::openqBTHomepage(){ + QDesktopServices::openUrl(QUrl("http://www.qbittorrent.org")); +} + +void GUI::openqBTBugTracker(){ + QDesktopServices::openUrl(QUrl("http://bugs.qbittorrent.org")); +} + void GUI::writeSettings() { QSettings settings("qBittorrent", "qBittorrent"); settings.beginGroup("MainWindow"); @@ -427,7 +441,7 @@ void GUI::displayInfoBarMenu(const QPoint& pos){ // get information from torrent handles and // update download list accordingly -void GUI::updateDlList(){ +void GUI::updateDlList(bool force){ torrent_handle h; char tmp[MAX_CHAR_TMP]; char tmp2[MAX_CHAR_TMP]; @@ -436,7 +450,7 @@ void GUI::updateDlList(){ snprintf(tmp, MAX_CHAR_TMP, "%.1f", sessionStatus.payload_upload_rate/1024.); snprintf(tmp2, MAX_CHAR_TMP, "%.1f", sessionStatus.payload_download_rate/1024.); myTrayIcon->setToolTip(tr("qBittorrent
DL Speed: ")+ QString(tmp2) +tr("KiB/s")+"
"+tr("UP Speed: ")+ QString(tmp) + tr("KiB/s")); // tray icon - if(isMinimized() || isHidden() || tabs->currentIndex()){ + if( !force && (isMinimized() || isHidden() || tabs->currentIndex())){ // No need to update if qBittorrent DL list is hidden return; } @@ -462,6 +476,7 @@ void GUI::updateDlList(){ DLListModel->setData(DLListModel->index(row, UPSPEED), QVariant((double)torrentStatus.upload_payload_rate)); DLListModel->setData(DLListModel->index(row, STATUS), QVariant(tr("Finished"))); DLListModel->setData(DLListModel->index(row, DLSPEED), QVariant((double)0.)); + DLListModel->setData(DLListModel->index(row, SEEDSLEECH), QVariant(QString(misc::toString(torrentStatus.num_complete, true).c_str())+"/"+QString(misc::toString(torrentStatus.num_incomplete, true).c_str()))); DLListModel->setData(DLListModel->index(row, ETA), QVariant((qlonglong)-1)); DLListModel->setData(DLListModel->index(row, NAME), QVariant(QIcon(":/Icons/skin/seeding.png")), Qt::DecorationRole); DLListModel->setData(DLListModel->index(row, PROGRESS), QVariant((double)1.)); @@ -472,6 +487,7 @@ void GUI::updateDlList(){ DLListModel->setData(DLListModel->index(row, STATUS), QVariant(tr("Checking..."))); DLListModel->setData(DLListModel->index(row, NAME), QVariant(QIcon(":/Icons/skin/connecting.png")), Qt::DecorationRole); setRowColor(row, "grey"); + DLListModel->setData(DLListModel->index(row, SEEDSLEECH), QVariant(QString(misc::toString(torrentStatus.num_complete, true).c_str())+"/"+QString(misc::toString(torrentStatus.num_incomplete, true).c_str()))); DLListModel->setData(DLListModel->index(row, PROGRESS), QVariant((double)torrentStatus.progress)); break; case torrent_status::connecting_to_tracker: @@ -487,6 +503,7 @@ void GUI::updateDlList(){ DLListModel->setData(DLListModel->index(row, NAME), QVariant(QIcon(":/Icons/skin/connecting.png")), Qt::DecorationRole); setRowColor(row, "grey"); } + DLListModel->setData(DLListModel->index(row, SEEDSLEECH), QVariant(QString(misc::toString(torrentStatus.num_complete, true).c_str())+"/"+QString(misc::toString(torrentStatus.num_incomplete, true).c_str()))); DLListModel->setData(DLListModel->index(row, PROGRESS), QVariant((double)torrentStatus.progress)); DLListModel->setData(DLListModel->index(row, DLSPEED), QVariant((double)torrentStatus.download_payload_rate)); DLListModel->setData(DLListModel->index(row, UPSPEED), QVariant((double)torrentStatus.upload_payload_rate)); @@ -504,11 +521,13 @@ void GUI::updateDlList(){ DLListModel->setData(DLListModel->index(row, ETA), QVariant((qlonglong)-1)); setRowColor(row, "black"); } + DLListModel->setData(DLListModel->index(row, SEEDSLEECH), QVariant(QString(misc::toString(torrentStatus.num_complete, true).c_str())+"/"+QString(misc::toString(torrentStatus.num_incomplete, true).c_str()))); DLListModel->setData(DLListModel->index(row, PROGRESS), QVariant((double)torrentStatus.progress)); DLListModel->setData(DLListModel->index(row, DLSPEED), QVariant((double)torrentStatus.download_payload_rate)); DLListModel->setData(DLListModel->index(row, UPSPEED), QVariant((double)torrentStatus.upload_payload_rate)); break; default: + DLListModel->setData(DLListModel->index(row, SEEDSLEECH), QVariant(QString(misc::toString(torrentStatus.num_complete, true).c_str())+"/"+QString(misc::toString(torrentStatus.num_incomplete, true).c_str()))); DLListModel->setData(DLListModel->index(row, ETA), QVariant((qlonglong)-1)); } } @@ -886,7 +905,13 @@ void GUI::hideEvent(QHideEvent *e){ // Hide window hide(); } - // Accept exit + // Accept hiding + e->accept(); +} + +void GUI::showEvent(QHideEvent *e){ + updateDlList(true); + // Accept showing e->accept(); } @@ -1270,6 +1295,7 @@ void GUI::addTorrent(const QString& path, bool fromScanDir, const QString& from_ DLListModel->setData(DLListModel->index(row, SIZE), QVariant((qlonglong)t.total_size())); DLListModel->setData(DLListModel->index(row, DLSPEED), QVariant((double)0.)); DLListModel->setData(DLListModel->index(row, UPSPEED), QVariant((double)0.)); + DLListModel->setData(DLListModel->index(row, SEEDSLEECH), QVariant("0/0")); DLListModel->setData(DLListModel->index(row, ETA), QVariant((qlonglong)-1)); // Pause torrent if it was paused last time if(QFile::exists(misc::qBittorrentPath()+"BT_backup"+QDir::separator()+QString(t.name().c_str())+".paused")){ @@ -1370,7 +1396,8 @@ QString GUI::getSavePath(QString fileName){ } void GUI::reloadTorrent(const torrent_handle &h, bool compact_mode){ - QDir saveDir(options->getSavePath()), torrentBackup(misc::qBittorrentPath() + "BT_backup"); + QDir torrentBackup(misc::qBittorrentPath() + "BT_backup"); + fs::path saveDir = h.save_path(); QString fileName = QString(h.get_torrent_info().name().c_str()); qDebug("Reloading torrent: %s", (const char*)fileName.toUtf8()); torrent_handle new_h; @@ -1412,7 +1439,7 @@ void GUI::reloadTorrent(const torrent_handle &h, bool compact_mode){ std::cerr << "Error: Couldn't reload the torrent\n"; return; } - new_h = s->add_torrent(t, fs::path((const char*)saveDir.path().toUtf8()), resumeData, compact_mode); + new_h = s->add_torrent(t, saveDir, resumeData, compact_mode); if(compact_mode){ qDebug("Using compact allocation mode"); }else{ @@ -1810,6 +1837,21 @@ void GUI::checkConnectionStatus(){ } } } + else if (file_error_alert* p = dynamic_cast(a.get())){ + QString fileName = QString(p->handle.get_torrent_info().name().c_str()); + if(options->getUseOSDAlways() || (options->getUseOSDWhenHiddenOnly() && (isMinimized() || isHidden()))) { + myTrayIcon->showMessage(tr("I/O Error"), tr("An error occured when trying to read or write ")+ fileName+"."+tr("The disk is probably full, download has been paused"), QSystemTrayIcon::Critical, TIME_TRAY_BALLOON); + // Download will be pausedby libtorrent. Updating GUI information accordingly + int row = getRowFromName(fileName); + DLListModel->setData(DLListModel->index(row, DLSPEED), QVariant((double)0.0)); + DLListModel->setData(DLListModel->index(row, UPSPEED), QVariant((double)0.0)); + DLListModel->setData(DLListModel->index(row, STATUS), QVariant(tr("Paused"))); + DLListModel->setData(DLListModel->index(row, ETA), QVariant((qlonglong)-1)); + setInfoBar("'"+ fileName +"' "+tr("paused.", " paused.")); + DLListModel->setData(DLListModel->index(row, NAME), QIcon(":/Icons/skin/paused.png"), Qt::DecorationRole); + setRowColor(row, "red"); + } + } else if (dynamic_cast(a.get())){ // Level: fatal setInfoBar(tr("Couldn't listen on any of the given ports."), "red"); diff --git a/src/GUI.h b/src/GUI.h index accc489ef..805124ac5 100644 --- a/src/GUI.h +++ b/src/GUI.h @@ -106,9 +106,11 @@ class GUI : public QMainWindow, private Ui::MainWindow{ void toggleVisibility(QSystemTrayIcon::ActivationReason e); void showAbout(); void setInfoBar(const QString& info, const QString& color="black"); - void updateDlList(); + void updateDlList(bool force=false); void showCreateWindow(); void clearLog(); + void openqBTHomepage(); + void openqBTBugTracker(); void readParamsOnSocket(); void acceptConnection(); void saveCheckedSearchEngines(int) const; @@ -184,6 +186,7 @@ class GUI : public QMainWindow, private Ui::MainWindow{ protected: void closeEvent(QCloseEvent *); void hideEvent(QHideEvent *); + void showEvent(QHideEvent *); public: // Construct / Destruct diff --git a/src/Icons/splash.jpg b/src/Icons/splash.jpg index 4ab90b5ba..4b0b8dcd8 100644 Binary files a/src/Icons/splash.jpg and b/src/Icons/splash.jpg differ diff --git a/src/MainWindow.ui b/src/MainWindow.ui index c1ed198d9..e6e7178f7 100644 --- a/src/MainWindow.ui +++ b/src/MainWindow.ui @@ -732,12 +732,6 @@ 29 - - - &Help - - - &Options @@ -768,6 +762,14 @@ + + + &Help + + + + + @@ -855,9 +857,9 @@ Start All - + - Documentation + Visit website @@ -890,6 +892,11 @@ Clear log + + + Report a bug + + diff --git a/src/icons.qrc b/src/icons.qrc index de4751891..d3899c085 100644 --- a/src/icons.qrc +++ b/src/icons.qrc @@ -8,6 +8,7 @@ Icons/button_ok.png Icons/smile.png Icons/stare.png + Icons/newmsg.png Icons/qbittorrent22.png Icons/proxy.png Icons/log.png diff --git a/src/lang/qbittorrent_bg.qm b/src/lang/qbittorrent_bg.qm index 559f04b60..fc7b105d3 100644 Binary files a/src/lang/qbittorrent_bg.qm and b/src/lang/qbittorrent_bg.qm differ diff --git a/src/lang/qbittorrent_bg.ts b/src/lang/qbittorrent_bg.ts index 9ef6781cf..80579845e 100644 --- a/src/lang/qbittorrent_bg.ts +++ b/src/lang/qbittorrent_bg.ts @@ -162,7 +162,7 @@ Copyright © 2006 на Christophe Dumez<br> DLListDelegate - + KiB/s KiB/с @@ -583,7 +583,7 @@ Copyright © 2006 на Christophe Dumez<br> GUI - + Open Torrent Files Отвори Торент Файлове @@ -598,7 +598,7 @@ Copyright © 2006 на Christophe Dumez<br> Неизвестен - + This file is either corrupted or this isn't a torrent. Файла или е разрушен или не е торент. @@ -608,17 +608,17 @@ Copyright © 2006 на Christophe Dumez<br> Сигурни ли сте че искате да изтриете всички файлове от списъка за сваляне? - + &Yes &Да - + &No &Не - + Are you sure you want to delete the selected item(s) in download list? Сигурни ли сте че искате да изтриете избраните файлове от списъка за сваляне? @@ -638,22 +638,22 @@ Copyright © 2006 на Christophe Dumez<br> kb/с - + Finished Завършен - + Checking... Проверка... - + Connecting... Свързване... - + Downloading... Сваляне... @@ -663,12 +663,12 @@ Copyright © 2006 на Christophe Dumez<br> Списъка за сваляне е създаден. - + All Downloads Paused. Всички Сваляния са Прекъснати. - + All Downloads Resumed. Всички Сваляния са Възстановени. @@ -678,60 +678,60 @@ Copyright © 2006 на Christophe Dumez<br> DL Скорост: - + started. стартиран. - + UP Speed: UP Скорост: - + Couldn't create the directory: Не мога да създам директория: - + Torrent Files Торент Файлове - + already in download list. <file> already in download list. вече е в списъка за сваляне. - + added to download list. е добавен в списъка за сваляне. - + resumed. (fast resume) възстановен. (бързо възстановяване) - + Unable to decode torrent file: Не мога да декодирам торент-файла: - + removed. <file> removed. премахнат. - + paused. <file> paused. прекъснат. - + resumed. <file> resumed. възстановен. @@ -755,12 +755,12 @@ Copyright © 2006 на Christophe Dumez<br> д - + Listening on port: Очакване от порт: - + qBittorrent qBittorrent @@ -770,12 +770,12 @@ Copyright © 2006 на Christophe Dumez<br> qBittorrent - + Are you sure? -- qBittorrent Сигурни ли сте? -- qBittorrent - + <b>qBittorrent</b><br>DL Speed: <b>qBittorrent</b><br>DL Скорост: @@ -785,17 +785,17 @@ Copyright © 2006 на Christophe Dumez<br> : От Christophe Dumez :: Copyright (c) 2006 - + <b>Connection Status:</b><br>Online <b>Състояние на Връзка:</b><br>Онлайн - + <b>Connection Status:</b><br>Firewalled?<br><i>No incoming connections...</i> <b>Състояние на Връзка:</b><br>С Firewall?<br><i>Няма входящи връзки...</i> - + <b>Connection Status:</b><br>Offline<br><i>No peers found...</i> <b>Състояние на Връзка:</b><br>Офлайн<br><i>Няма намерени peers...</i> @@ -806,27 +806,27 @@ Copyright © 2006 на Christophe Dumez<br> - + has finished downloading. е завършил свалянето. - + Couldn't listen on any of the given ports. Невъзможно изчакване от дадените портове. - + None Няма - + KiB/s KiB/с - + Are you sure you want to quit? -- qBittorrent Сигурни ли сте че искате да напуснете? -- qBittorrent @@ -841,22 +841,22 @@ Copyright © 2006 на Christophe Dumez<br> KiB/с - + Empty search pattern - + Please type a search pattern first Моля първо изберете тип на търсене - + No seach engine selected Не е избрана търсачка - + You must select at least one search engine. Трябва да изберете поне една търсачка. @@ -866,7 +866,7 @@ Copyright © 2006 на Christophe Dumez<br> Невъзможно създаване на допълнение за търсене. - + Searching... Търсене... @@ -906,9 +906,9 @@ Copyright © 2006 на Christophe Dumez<br> Торент файл URL: - + I/O Error - I/O Грешка + I/O Грешка @@ -921,22 +921,22 @@ Copyright © 2006 на Christophe Dumez<br> Сваляне ползвайки HTTP: - + Search is finished Търсенето завърши - + An error occured during search... Намерена грешка при търсенето... - + Search aborted Търсенето е прекъснато - + Search returned no results Търсене без резултат @@ -946,12 +946,12 @@ Copyright © 2006 на Christophe Dumez<br> Търсенето е завършено - + Search plugin update -- qBittorrent Обновяване на добавката за търсене -- qBittorrent - + Search plugin can be updated, do you want to update it? Changelog: @@ -962,147 +962,162 @@ Changelog: - + Sorry, update server is temporarily unavailable. Съжалявам, сървъра за обновяване е временно недостъпен. - + Your search plugin is already up to date. Вашата добавка за търсене е вече обновена. - + Results Резултати - + Name Име - + Size Размер - + Progress Изпълнение - + DL Speed DL Скорост - + UP Speed UP Скорост - + Status Състояние - + ETA ЕТА - + Seeders Даващи - + Leechers Вземащи - + Search engine Програма за търсене - + Stalled state of a torrent whose DL Speed is 0 Отложен - + Paused Пауза - + Preview process already running Процеса на оглед се изпълнява - + There is already another preview process running. Please close the other one first. Вече се изпълнява друг процес на оглед. Моля, затворете първо другия процес. - + Couldn't download Couldn't download <file> Свалянето е невъзможно - + reason: Reason why the download failed причина: - + Downloading Example: Downloading www.example.com/test.torrent Сваляне - + Please wait... Моля, изчакайте... - + Transfers Трансфери - + Are you sure you want to quit qBittorrent? Сигурни ли сте че искате да напуснете qBittorrent? - + Are you sure you want to delete the selected item(s) in download list and in hard drive? Сигурни ли сте че искате да изтриете избраните файлове от списъка за сваляне и от твърдия диск? - + Download finished - + has finished downloading. <filename> has finished downloading. е завършил свалянето. - + Search Engine Търсачка + + + Seeds/Leechs + + + + + An error occured when trying to read or write + + + + + The disk is probably full, download has been paused + + MainWindow @@ -1167,74 +1182,74 @@ Please close the other one first. ЕТА - + &Options &Опции - + &Edit &Редактирай - + &File &Файл - + &Help &Помощ - + Open Отвори - + Exit Изход - + Preferences Настройки - + About Относно - + Start Старт - + Pause Пауза - + Delete Изтрий - + Pause All Пауза Всички - + Start All Старт Всички Documentation - Документация + Документация @@ -1247,7 +1262,7 @@ Please close the other one first. Изтрий Всички - + Torrent Properties Характеристики на Торента @@ -1327,12 +1342,12 @@ Please close the other one first. Състояние на Връзка - + Download from URL Свали от URL - + Create torrent Създай торент @@ -1357,20 +1372,30 @@ Please close the other one first. Трансфери - + Preview file Огледай файла - + Clear log Изтрий лога - + Delete Permanently Изтрий завинаги + + + Visit website + + + + + Report a bug + + PropListDelegate @@ -1744,66 +1769,66 @@ Please close the other one first. misc - + B bytes Б - + KiB kibibytes (1024 bytes) КБ - + MiB mebibytes (1024 kibibytes) МБ - + GiB gibibytes (1024 mibibytes) ГБ - + TiB tebibytes (1024 gibibytes) ТБ - + m minutes м - + h hours ч - + d days д - + h hours ч - + Unknown Неизвестно - + Unknown Unknown (size) Неизвестен diff --git a/src/lang/qbittorrent_ca.qm b/src/lang/qbittorrent_ca.qm index b4be4e2d6..0726f9b98 100644 Binary files a/src/lang/qbittorrent_ca.qm and b/src/lang/qbittorrent_ca.qm differ diff --git a/src/lang/qbittorrent_ca.ts b/src/lang/qbittorrent_ca.ts index 23b5d5d9b..209043cc8 100644 --- a/src/lang/qbittorrent_ca.ts +++ b/src/lang/qbittorrent_ca.ts @@ -180,7 +180,7 @@ Copyright © 2006 by Christophe Dumez<br> DLListDelegate - + KiB/s KiB/s @@ -611,7 +611,7 @@ Copyright © 2006 by Christophe Dumez<br> GUI - + qBittorrent qBittorrent @@ -621,7 +621,7 @@ Copyright © 2006 by Christophe Dumez<br> :: By Christophe Dumez :: Copyright (c) 2006 - + started. iniciat. @@ -641,27 +641,27 @@ Copyright © 2006 by Christophe Dumez<br> kb/s - + UP Speed: Vel. Pujada: - + Open Torrent Files Arxius Torrent oberts - + Torrent Files Arxius Torrent - + Couldn't create the directory: No es pot crear el directori: - + already in download list. <file> already in download list. torna a estar a la llista de descàrregues. @@ -677,27 +677,27 @@ Copyright © 2006 by Christophe Dumez<br> Desconegut - + added to download list. agregat a la llista de descàrregues. - + resumed. (fast resume) reanudat (reanudar ràpidament) - + Unable to decode torrent file: 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 @@ -707,12 +707,12 @@ Copyright © 2006 by Christophe Dumez<br> Estàs segur de que vols buidar la llista de descàrregues? - + &Yes &Yes - + &No &No @@ -722,18 +722,18 @@ 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? - + removed. <file> removed. esborrat. - + Listening on port: Escoltant al port: @@ -743,7 +743,7 @@ Copyright © 2006 by Christophe Dumez<br> pausat - + All Downloads Paused. Totes les descàrregues Pausades. @@ -753,49 +753,49 @@ Copyright © 2006 by Christophe Dumez<br> iniciat - + All Downloads Resumed. Totes les descàrregues reanudades. - + paused. <file> paused. pausat. - + resumed. <file> resumed. reanudat. - + <b>Connection Status:</b><br>Online <b>Connection Status:</b><br>Online - + <b>Connection Status:</b><br>Firewalled?<br><i>No incoming connections...</i> <b>Estat de conexió:</b><br>Tallafocs activat?<br><i>No entren conexions...</i> - + <b>Connection Status:</b><br>Offline<br><i>No peers found...</i> <b>Estat de conexió:</b><br>Desconectat<br><i>No s'han trobat fonts...</i> - + has finished downloading. ha finalitzat la descàrrega. - + Couldn't listen on any of the given ports. No es pot obrir el port especificat. - + <b>qBittorrent</b><br>DL Speed: <b>qBittorrent</b><br>DL Speed: @@ -806,22 +806,22 @@ Copyright © 2006 by Christophe Dumez<br> /s - + Finished Finalitzat - + Checking... Validant... - + Connecting... Conectant... - + Downloading... Descàrregant... @@ -844,32 +844,32 @@ Copyright © 2006 by Christophe Dumez<br> d - + None Res - + Empty search pattern Busqueda pare buida - + Please type a search pattern first Si us plau introduïu una busqueda pare primer - + No seach engine selected No as seleccionat motor per cercar - + You must select at least one search engine. Has de seleccionar un motor de busqueda. - + Searching... Cercant... @@ -884,9 +884,9 @@ Copyright © 2006 by Christophe Dumez<br> Parat - + I/O Error - I/O Error + I/O Error @@ -929,7 +929,7 @@ Copyright © 2006 by Christophe Dumez<br> Una descàrrega HTTP ha fallat, raó: - + Are you sure you want to quit? -- qBittorrent Estas segur que vols sortir? -- qBittorrent @@ -954,7 +954,7 @@ Copyright © 2006 by Christophe Dumez<br> Descàrrega fallida: - + KiB/s KiB/s @@ -974,22 +974,22 @@ Copyright © 2006 by Christophe Dumez<br> Lloc - + Search is finished La Recerca ha finalitzat - + An error occured during search... Hi ha hagut un error durant la recerca... - + Search aborted Recerca abortada - + Search returned no results La recerca no ha tornat Resultats @@ -999,12 +999,12 @@ Copyright © 2006 by Christophe Dumez<br> La recerca a finalitzat - + Search plugin update -- qBittorrent Actualització plugin de recerca -- qBittorrent - + Search plugin can be updated, do you want to update it? Changelog: @@ -1015,147 +1015,162 @@ Log: - + Sorry, update server is temporarily unavailable. Ho sento, el servidor per actualitzar està temporalment no disponible. - + Your search plugin is already up to date. El teu plugin de recerca torna a estar actualitzat. - + Results Resultats - + Name Nom - + Size Mida - + Progress Progrès - + DL Speed Vel. Desc - + UP Speed Vel. Pujada - + Status Estat - + ETA ETA - + Seeders Seeders - + Leechers Leechers - + Search engine Motor per cercar - + Stalled state of a torrent whose DL Speed is 0 Parat - + Paused Pausat - + Preview process already running Previsualitzar els processos que corren - + There is already another preview process running. Please close the other one first. Hi ha un altre procés corrent. Si et plau tanca l'altre primer. - + Couldn't download Couldn't download <file> NO es pot descarregar - + reason: Reason why the download failed Raó: - + Downloading Example: Downloading www.example.com/test.torrent Descarregant - + Please wait... Espera ... - + Transfers Transferits - + Are you sure you want to quit qBittorrent? Estas segur que vols sortir de qBittorrent? - + 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? - + Download finished - + has finished downloading. <filename> has finished downloading. ha finalitzat la descàrrega. - + Search Engine Motor de Busqueda + + + Seeds/Leechs + + + + + An error occured when trying to read or write + + + + + The disk is probably full, download has been paused + + MainWindow @@ -1220,74 +1235,74 @@ Si et plau tanca l'altre primer. ETA - + &File &Fitxer - + &Options &Opcions - + &Help &Ajuda - + &Edit &Editar - + Open Obre - + Exit Sortir - + Preferences Preferències - + About Sobre - + Start Comença - + Pause Pausa - + Delete Esborra - + Pause All Pausa Tot - + Start All Comença totes Documentation - Documentació + Documentació @@ -1300,7 +1315,7 @@ Si et plau tanca l'altre primer. Esborra Tot - + Torrent Properties Propietats del Torrent @@ -1365,7 +1380,7 @@ Si et plau tanca l'altre primer. Motor de Busqueda - + Download from URL Descarregant de URL @@ -1385,7 +1400,7 @@ Si et plau tanca l'altre primer. KiB/s - + Create torrent Crear torrent @@ -1410,20 +1425,30 @@ Si et plau tanca l'altre primer. Transferits - + Preview file Previsualitza el fitxer - + Clear log Neteja el registre - + Delete Permanently Esborrar Permanentment + + + Visit website + + + + + Report a bug + + PropListDelegate @@ -1797,43 +1822,43 @@ Si et plau tanca l'altre primer. misc - + B bytes B - + KiB kibibytes (1024 bytes) KiB - + MiB mebibytes (1024 kibibytes) MiB - + GiB gibibytes (1024 mibibytes) GiB - + TiB tebibytes (1024 gibibytes) TiB - + m minutes m - + h hours h @@ -1845,24 +1870,24 @@ Si et plau tanca l'altre primer. d - + Unknown Desconegut - + h hours - + d days - + Unknown Unknown (size) Desconegut diff --git a/src/lang/qbittorrent_de.qm b/src/lang/qbittorrent_de.qm index 6d2703093..799ca8755 100644 Binary files a/src/lang/qbittorrent_de.qm and b/src/lang/qbittorrent_de.qm differ diff --git a/src/lang/qbittorrent_de.ts b/src/lang/qbittorrent_de.ts index 51810eb5e..ad1c88e57 100644 --- a/src/lang/qbittorrent_de.ts +++ b/src/lang/qbittorrent_de.ts @@ -143,7 +143,7 @@ Copyright (c) 2006 Christophe Dumez<br> DLListDelegate - + KiB/s @@ -519,7 +519,7 @@ Copyright (c) 2006 Christophe Dumez<br> GUI - + qBittorrent qBittorrent @@ -534,7 +534,7 @@ Copyright (c) 2006 Christophe Dumez<br> qBittorrent - + started. gestartet. @@ -549,27 +549,27 @@ Copyright (c) 2006 Christophe Dumez<br> kb/s - + UP Speed: UP Geschwindigkeit: - + Open Torrent Files Öffne Torrent Dateien - + Torrent Files Torrent Dateien - + Couldn't create the directory: Konnte Verzeichniss nicht erstellen: - + already in download list. <file> already in download list. Bereits in der Download Liste. @@ -590,27 +590,27 @@ Copyright (c) 2006 Christophe Dumez<br> Unbekannt - + added to download list. zur Download Liste hinzugefügt. - + resumed. (fast resume) fortgesetzt (schnelles fortsetzen) - + Unable to decode torrent file: 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 @@ -620,12 +620,12 @@ Copyright (c) 2006 Christophe Dumez<br> Wollen Sie wirklich alle Dateien aus der Download Liste löschen? - + &Yes &Ja - + &No &Nein @@ -635,18 +635,18 @@ 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? - + removed. <file> removed. Entfernt. - + Listening on port: Lausche auf Port : @@ -661,7 +661,7 @@ Copyright (c) 2006 Christophe Dumez<br> angehalten - + All Downloads Paused. Alle Downloads angehalten. @@ -671,59 +671,59 @@ Copyright (c) 2006 Christophe Dumez<br> gestartet - + All Downloads Resumed. Alle Downloads forgesetzt. - + paused. <file> paused. angehalten. - + resumed. <file> resumed. fortgesetzt. - + <b>Connection Status:</b><br>Online <b>Verbindungs-Status:</b><br>Online - + <b>Connection Status:</b><br>Firewalled?<br><i>No incoming connections...</i> <b>Verbindungs-Status:</b><br>Firewalled?<br><i>Keine eingehenden Verbindungen...</i> - + <b>Connection Status:</b><br>Offline<br><i>No peers found...</i> <b>Verbindungs-Status:</b><br>Offline<br><i>Keine Peers gefunden...</i> - + <b>qBittorrent</b><br>DL Speed: <b>qBittorrent</b><br>DL Geschwindigkeit: - + Finished Beendet - + Checking... Überprüfe... - + Connecting... Verbinde... - + Downloading... Herunterladen... @@ -746,7 +746,7 @@ Copyright (c) 2006 Christophe Dumez<br> d - + has finished downloading. ist vollständig heruntergeladen. @@ -757,37 +757,37 @@ 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. - + None Kein - + Empty search pattern Leere Suchanfrage - + Please type a search pattern first Bitte geben Sie zuerst eine Suchanfrage ein - + No seach engine selected Keine Suchmaschine ausgewählt - + You must select at least one search engine. Sie müssen mindestens eine Suchmaschine auswählen. - + Searching... Suche... @@ -822,7 +822,7 @@ Copyright (c) 2006 Christophe Dumez<br> Torrent Datei URL: - + Are you sure you want to quit? -- qBittorrent Wollen Sie wirklich beenden? -- qBittorrent @@ -852,7 +852,7 @@ Copyright (c) 2006 Christophe Dumez<br> Ein http download schlug fehl, Ursache: - + KiB/s @@ -867,22 +867,22 @@ Copyright (c) 2006 Christophe Dumez<br> Blockiert - + Search is finished Suche abgeschlossen - + An error occured during search... Während der Suche ist ein Fehler aufgetreten ... - + Search aborted Suche abgebrochen - + Search returned no results Suche lieferte keine Ergebnisse @@ -892,12 +892,12 @@ Copyright (c) 2006 Christophe Dumez<br> Suche abgeschlossen - + Search plugin update -- qBittorrent "Such"-Plugin update -- qBittorrent - + Search plugin can be updated, do you want to update it? Changelog: @@ -908,147 +908,167 @@ Changelog: - + Sorry, update server is temporarily unavailable. Update Server vorübergehend nicht erreichbar. - + Your search plugin is already up to date. "Such"-Plugin ist schon auf dem neuesten Stand. - + Results Ergebnisse - + Name Name - + Size Grösse - + Progress Fortschritt - + DL Speed DL Geschwindigkeit - + UP Speed UP Geschwindigkeit - + Status Status - + ETA ETA - + Seeders Seeder - + Leechers Leecher - + Search engine Suchmaschine - + Stalled state of a torrent whose DL Speed is 0 Stehen geblieben - + Paused Pausiert - + Preview process already running Preview Prozess läuft bereits - + There is already another preview process running. Please close the other one first. Ein anderer Preview Prozess läuft zu Zeit. Bitte schliessen Sie diesen zuerst. - + Couldn't download Couldn't download <file> Konnte Datei nicht downloaden - + reason: Reason why the download failed Grund: - + Downloading Example: Downloading www.example.com/test.torrent Lade - + Please wait... Bitte warten... - + Transfers Transfer - + Are you sure you want to quit qBittorrent? Wollen Sie qBittorrent wirklich beenden? - + 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? - + Download finished - + has finished downloading. <filename> has finished downloading. ist vollständig heruntergeladen. - + Search Engine Such-Maschine + + + Seeds/Leechs + + + + + I/O Error + + + + + An error occured when trying to read or write + + + + + The disk is probably full, download has been paused + + MainWindow @@ -1113,74 +1133,74 @@ Bitte schliessen Sie diesen zuerst. ETA - + &Options &Optionen - + &Edit &Bearbeiten - + &Help &Hilfe - + &File &Datei - + Open Öffnen - + Exit Beenden - + Preferences Einstellungen - + About Info - + Start Start - + Pause Anhalten - + Delete Löschen - + Pause All Alle anhalten - + Start All Alle starten Documentation - Dokumentation + Dokumentation @@ -1193,7 +1213,7 @@ Bitte schliessen Sie diesen zuerst. Alle löschen - + Torrent Properties Torrent Eigenschaften @@ -1248,7 +1268,7 @@ Bitte schliessen Sie diesen zuerst. Such-Maschine - + Download from URL Download von URL @@ -1268,7 +1288,7 @@ Bitte schliessen Sie diesen zuerst. - + Create torrent Erstelle Torrent @@ -1293,20 +1313,30 @@ Bitte schliessen Sie diesen zuerst. Transfer - + Preview file Vorschau Datei - + Clear log Log löschen - + Delete Permanently Endgültig löschen + + + Visit website + + + + + Report a bug + + PropListDelegate @@ -1680,43 +1710,43 @@ Bitte schliessen Sie diesen zuerst. misc - + B bytes - + KiB kibibytes (1024 bytes) - + MiB mebibytes (1024 kibibytes) - + GiB gibibytes (1024 mibibytes) - + TiB tebibytes (1024 gibibytes) - + m minutes m - + h hours h @@ -1728,24 +1758,24 @@ Bitte schliessen Sie diesen zuerst. d - + Unknown Unbekannt - + h hours - + d days - + Unknown Unknown (size) Unbekannt diff --git a/src/lang/qbittorrent_el.qm b/src/lang/qbittorrent_el.qm index c56a74a9d..4d9fecef4 100644 Binary files a/src/lang/qbittorrent_el.qm and b/src/lang/qbittorrent_el.qm differ diff --git a/src/lang/qbittorrent_el.ts b/src/lang/qbittorrent_el.ts index 2f138919c..d567469cd 100644 --- a/src/lang/qbittorrent_el.ts +++ b/src/lang/qbittorrent_el.ts @@ -180,7 +180,7 @@ Copyright © 2006 από τον Christophe Dumez<br> DLListDelegate - + KiB/s KiB/s @@ -601,7 +601,7 @@ Copyright © 2006 από τον Christophe Dumez<br> GUI - + Open Torrent Files Άνοιγμα Αρχείων τορεντ @@ -616,7 +616,7 @@ Copyright © 2006 από τον Christophe Dumez<br> Άγνωστο - + This file is either corrupted or this isn't a torrent. Το αρχείο είτε είναι κατεστραμμένο, ή δεν ειναι ενα τορεντ. @@ -626,17 +626,17 @@ Copyright © 2006 από τον Christophe Dumez<br> Σίγουρα θέλετε να διαγράψετε όλα τα αρχεία στην λίστα κατεβάσματος? - + &Yes &Ναι - + &No &Όχι - + Are you sure you want to delete the selected item(s) in download list? Είστε σίγουρος οτι θέλετε να διαγράψετε το(α) επιλεγμλένα αντικείμενο(α) από την λίστα κατεβάσματος? @@ -656,22 +656,22 @@ Copyright © 2006 από τον Christophe Dumez<br> kb/s - + Finished Τελείωσε - + Checking... Έλεγχος... - + Connecting... Σύνδεση... - + Downloading... Κατέβασμα... @@ -681,12 +681,12 @@ Copyright © 2006 από τον Christophe Dumez<br> Λίστα κατεβάσματος άδειασε. - + All Downloads Paused. Όλα τα Κατεβάσματα Σταμάτησαν. - + All Downloads Resumed. Όλα τα Κατεβάσματα συνέχισαν. @@ -696,60 +696,60 @@ Copyright © 2006 από τον Christophe Dumez<br> Ταχύτητα Κατεβάσματος: - + started. ξεκίνησε. - + UP Speed: Ταχύτητα Ανεβάσματος: - + Couldn't create the directory: Δεν μπόρεσε να δημιουργηθεί η κατηγορία: - + Torrent Files Αρχεία Τορεντ - + already in download list. <file> already in download list. ήδη ατην λίστα κατεβάσματος. - + added to download list. προστέθηκε στη λίστα κατεβάσματος. - + resumed. (fast resume) συνέχισε. (γρήγορη συνέχεια) - + Unable to decode torrent file: Αδύνατο να αποκωδικοποιηθεί το αρχείο τορεντ: - + removed. <file> removed. αφαιρέθηκε. - + paused. <file> paused. έπαυσε. - + resumed. <file> resumed. συνέχισε. @@ -773,12 +773,12 @@ Copyright © 2006 από τον Christophe Dumez<br> μ - + Listening on port: Ακρόαση στη θύρα: - + qBittorrent qBittorrent @@ -788,12 +788,12 @@ Copyright © 2006 από τον Christophe Dumez<br> qBittorrent - + Are you sure? -- qBittorrent Είστε σίγουρος? -- qBittorrent - + <b>qBittorrent</b><br>DL Speed: <b>qBittorrent</b><br>Ταχύτητα Κατεβάσματος: @@ -803,17 +803,17 @@ Copyright © 2006 από τον Christophe Dumez<br> :: Από τον Christophe Dumez :: Copyright (c) 2006 - + <b>Connection Status:</b><br>Online <b>Κατάσταση Σύνδεσης:</b><br>Ενεργή - + <b>Connection Status:</b><br>Firewalled?<br><i>No incoming connections...</i> <b>Κατάσταση Σύνδεσης:</b><br>Με firewall?<br><i>Χωρίς εισερχόμενες συνδέσεις...</i> - + <b>Connection Status:</b><br>Offline<br><i>No peers found...</i> <b>Κατάσταση Σύνδεσης:</b><br>Ανενεργή<br><i>Χωρίς να έχουν βρεθεί συνδέσεις...</i> @@ -824,42 +824,42 @@ Copyright © 2006 από τον Christophe Dumez<br> /s - + has finished downloading. έχει τελειώσει το κατέβασμα. - + Couldn't listen on any of the given ports. Δεν "ακροάτηκα" καμία σπό τις δωσμένες θύρες. - + None Κανένα - + Empty search pattern Κενό πρότυπο εύρεσης - + Please type a search pattern first Παρακαλώ εισάγετε ένα σχέδιο εύρεσης πρώτα - + No seach engine selected Δεν έχει επιλεχθεί μηχανή αναζήτησης - + You must select at least one search engine. Πρέπει να επιλέξετε τουλάχιστο μια μηχανή αναζήτησης. - + Searching... Αναζήτηση... @@ -874,9 +874,9 @@ Copyright © 2006 από τον Christophe Dumez<br> Σταμάτησε - + I/O Error - I/O Λάθος + I/O Λάθος @@ -919,7 +919,7 @@ Copyright © 2006 από τον Christophe Dumez<br> 'Ενα κατέβασμα http απέτυχε, αιτία: - + Are you sure you want to quit? -- qBittorrent Είστε σίγουρος οτι θέλετε να βγείτε? -- qBittorrent @@ -944,7 +944,7 @@ Copyright © 2006 από τον Christophe Dumez<br> Αποτυχία κατεβάσματος: - + KiB/s KiB/s @@ -964,22 +964,22 @@ Copyright © 2006 από τον Christophe Dumez<br> Αποτυχία λειτουργίας - + Search is finished Αναζήτηση τελείωσε - + An error occured during search... Σφάλμα κατά την εύρεση... - + Search aborted Αναζήτηση διεκόπη - + Search returned no results Η αναζήτηση δεν έφερε αποτελέσματα @@ -989,12 +989,12 @@ Copyright © 2006 από τον Christophe Dumez<br> Αναζήτηση τελείωσε - + Search plugin update -- qBittorrent Αναβάθμιση plugin αναζήτησης -- qBittorrent - + Search plugin can be updated, do you want to update it? Changelog: @@ -1005,147 +1005,162 @@ Changelog: - + Sorry, update server is temporarily unavailable. Λυπούμαστε, ο εξηπυρετητής αναβάθμισης δεν είναι προσωρινά διαθέσιμος. - + Your search plugin is already up to date. Το plugin αναζήτησης είναι ήδη αναβαθμισμένο. - + Results Αποτελέσματα - + Name Όνομα - + Size Μέγεθος - + Progress Πρόοδος - + DL Speed DL Ταχύτητα - + UP Speed UP Ταχύτητα - + Status Κατάσταση - + ETA Χρόνος που απομένει - + Seeders Διαμοιραστές - + Leechers Συνδέσεις - + Search engine Μηχανή αναζήτησης - + Stalled state of a torrent whose DL Speed is 0 Αποτυχία λειτουργίας - + Paused Παύση - + Preview process already running Προεπισκόπηση ήδη ανοικτή - + There is already another preview process running. Please close the other one first. Υπάρχει ήδη άλλη προεπισκόπηση ανοιχτή. Παρακαλώ κλείστε την άλλη πρώτα. - + Couldn't download Couldn't download <file> Αδύνατο κατέβασμα - + reason: Reason why the download failed αιτία: - + Downloading Example: Downloading www.example.com/test.torrent Κατέβασμα - + Please wait... Παρακαλώ περιμένετε... - + Transfers Μεταφορές - + Are you sure you want to quit qBittorrent? Είστε σίγουρος/η οτι θέλετε να κλείσετε το qBittorrent? - + Are you sure you want to delete the selected item(s) in download list and in hard drive? Είστε σίγουρος/η οτι θέλετε να διαγράψετε το(α) επιλεγμένο(α) αντικείμενο(α) από τη λίστα κατεβάσματος και το σκληρό δίσκο? - + Download finished - + has finished downloading. <filename> has finished downloading. έχει τελειώσει το κατέβασμα. - + Search Engine Μηχανή Αναζήτησης + + + Seeds/Leechs + + + + + An error occured when trying to read or write + + + + + The disk is probably full, download has been paused + + MainWindow @@ -1210,74 +1225,74 @@ Please close the other one first. Χρόνος που απομένει - + &Options &Ρυθμίσεις - + &Edit &Αλλαγή - + &File &Αρχείο - + &Help &Βοήθεια - + Open Άνοιγμα - + Exit Έξοδος - + Preferences Προτιμήσεις - + About Σχετικά - + Start Έναρξη - + Pause Παύση - + Delete Σβήσιμο - + Pause All Παύση Όλων - + Start All Έναρξη Όλων Documentation - Έγγραφα + Έγγραφα @@ -1290,7 +1305,7 @@ Please close the other one first. Σβήσιμο Όλων - + Torrent Properties Ιδιότητες τορεντ @@ -1355,7 +1370,7 @@ Please close the other one first. Μηχανή Αναζήτησης - + Download from URL Κατέβασμα από URL @@ -1375,7 +1390,7 @@ Please close the other one first. KiB/s - + Create torrent Δημιουργία τορεντ @@ -1400,20 +1415,30 @@ Please close the other one first. Μεταφορές - + Preview file Προεπισκόπηση αρχείου - + Clear log Εκκαθάριση καταγραφών - + Delete Permanently Οριστική Διαγραφή + + + Visit website + + + + + Report a bug + + PropListDelegate @@ -1787,43 +1812,43 @@ Please close the other one first. misc - + B bytes B - + KiB kibibytes (1024 bytes) KiB/s - + MiB mebibytes (1024 kibibytes) MiB - + GiB gibibytes (1024 mibibytes) GiB - + TiB tebibytes (1024 gibibytes) TiB - + m minutes λ - + h hours ώ @@ -1835,24 +1860,24 @@ Please close the other one first. μ - + Unknown Άγνωστος - + h hours ώ - + d days μ - + Unknown Unknown (size) Άγνωστο diff --git a/src/lang/qbittorrent_en.qm b/src/lang/qbittorrent_en.qm index 2658b62ce..88614bdba 100644 Binary files a/src/lang/qbittorrent_en.qm and b/src/lang/qbittorrent_en.qm differ diff --git a/src/lang/qbittorrent_en.ts b/src/lang/qbittorrent_en.ts index 29e630081..8b284c20d 100644 --- a/src/lang/qbittorrent_en.ts +++ b/src/lang/qbittorrent_en.ts @@ -109,7 +109,7 @@ Copyright © 2006 by Christophe Dumez<br> DLListDelegate - + KiB/s @@ -430,231 +430,231 @@ Copyright © 2006 by Christophe Dumez<br> GUI - + Open Torrent Files - + 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? - + Finished - + Checking... - + Connecting... - + Downloading... - + All Downloads Paused. - + All Downloads Resumed. - + started. - + UP Speed: - + Couldn't create the directory: - + Torrent Files - + already in download list. <file> already in download list. - + added to download list. - + resumed. (fast resume) - + Unable to decode torrent file: - + removed. <file> removed. - + paused. <file> paused. - + resumed. <file> resumed. - + Listening on port: - + qBittorrent - + Are you sure? -- qBittorrent - + <b>qBittorrent</b><br>DL Speed: - + <b>Connection Status:</b><br>Online - + <b>Connection Status:</b><br>Firewalled?<br><i>No incoming connections...</i> - + <b>Connection Status:</b><br>Offline<br><i>No peers found...</i> - + has finished downloading. - + Couldn't listen on any of the given ports. - + None - + Empty search pattern - + Please type a search pattern first - + No seach engine selected - + You must select at least one search engine. - + Searching... - + Are you sure you want to quit? -- qBittorrent - + KiB/s - + Search is finished - + An error occured during search... - + Search aborted - + Search returned no results - + Search plugin update -- qBittorrent - + Search plugin can be updated, do you want to update it? Changelog: @@ -662,146 +662,166 @@ Changelog: - + Sorry, update server is temporarily unavailable. - + Your search plugin is already up to date. - + Results - + Name - + Size - + Progress - + DL Speed - + UP Speed - + Status - + ETA - + Seeders - + Leechers - + Search engine - + Stalled state of a torrent whose DL Speed is 0 - + Paused - + Preview process already running - + There is already another preview process running. Please close the other one first. - + Couldn't download Couldn't download <file> - + reason: Reason why the download failed - + Downloading Example: Downloading www.example.com/test.torrent - + Please wait... - + Transfers - + Download finished - + has finished downloading. <filename> has finished downloading. - + Search Engine - + Are you sure you want to quit qBittorrent? - + Are you sure you want to delete the selected item(s) in download list and in hard drive? + + + Seeds/Leechs + + + + + I/O Error + + + + + An error occured when trying to read or write + + + + + The disk is probably full, download has been paused + + MainWindow @@ -821,77 +841,72 @@ Please close the other one first. - + &Options - + &Edit - + &File - + &Help - + Open - + Exit - + Preferences - + About - + Start - + Pause - + Delete - + Pause All - + Start All - - Documentation - - - - + Torrent Properties @@ -931,7 +946,7 @@ Please close the other one first. - + Download from URL @@ -951,7 +966,7 @@ Please close the other one first. - + Create torrent @@ -971,20 +986,30 @@ Please close the other one first. - + Preview file - + Clear log - + Delete Permanently + + + Visit website + + + + + Report a bug + + PropListDelegate @@ -1300,66 +1325,66 @@ Please close the other one first. misc - + B bytes - + KiB kibibytes (1024 bytes) - + MiB mebibytes (1024 kibibytes) - + GiB gibibytes (1024 mibibytes) - + TiB tebibytes (1024 gibibytes) - + m minutes - + h hours - + Unknown - + h hours - + d days - + Unknown Unknown (size) diff --git a/src/lang/qbittorrent_es.qm b/src/lang/qbittorrent_es.qm index f74135fd9..cc28d41b1 100644 Binary files a/src/lang/qbittorrent_es.qm and b/src/lang/qbittorrent_es.qm differ diff --git a/src/lang/qbittorrent_es.ts b/src/lang/qbittorrent_es.ts index 881ea4347..f090f84c3 100644 --- a/src/lang/qbittorrent_es.ts +++ b/src/lang/qbittorrent_es.ts @@ -143,7 +143,7 @@ Copyright © 2006 por Christophe Dumez<br> DLListDelegate - + KiB/s KiB/s @@ -539,7 +539,7 @@ Copyright © 2006 por Christophe Dumez<br> GUI - + started. iniciado. @@ -554,27 +554,27 @@ Copyright © 2006 por Christophe Dumez<br> kb/s - + UP Speed: Velocidad de Subida: - + Couldn't create the directory: No se pudo crear el directorio: - + Open Torrent Files Abrir archivos Torrent - + Torrent Files Archivos Torrent - + already in download list. <file> already in download list. ya está en la lista de descargas. @@ -595,22 +595,22 @@ Copyright © 2006 por Christophe Dumez<br> Desconocido - + added to download list. agregado a la lista de descargas. - + resumed. (fast resume) Reiniciado (reiniciado rápido) - + Unable to decode torrent file: 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. @@ -620,12 +620,12 @@ Copyright © 2006 por Christophe Dumez<br> ¿Seguro que quieres eliminar todos los archivos de la lista de descargas? - + &Yes &Sí - + &No &No @@ -635,12 +635,12 @@ 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? - + removed. <file> removed. eliminado. @@ -651,7 +651,7 @@ Copyright © 2006 por Christophe Dumez<br> en pausa - + All Downloads Paused. Todas las Descargas en Pausa. @@ -661,39 +661,39 @@ Copyright © 2006 por Christophe Dumez<br> iniciado - + All Downloads Resumed. Todas las Descargas Continuadas. - + paused. <file> paused. en pausa. - + resumed. <file> resumed. continuada. - + Finished Terminada - + Checking... Verificando... - + Connecting... Conectando... - + Downloading... Bajando... @@ -716,7 +716,7 @@ Copyright © 2006 por Christophe Dumez<br> d - + Listening on port: Escuchando en el puerto: @@ -726,7 +726,7 @@ Copyright © 2006 por Christophe Dumez<br> No se pudo escuchar en ninguno de los puertos brindados - + qBittorrent qBittorrent @@ -736,12 +736,12 @@ Copyright © 2006 por Christophe Dumez<br> qBittorrent - + Are you sure? -- qBittorrent ¿Estás seguro? -- qBittorrent - + <b>qBittorrent</b><br>DL Speed: <b>qBittorrent</b><br>Velocidad de Descarga: @@ -751,22 +751,22 @@ Copyright © 2006 por Christophe Dumez<br> :: Por Christophe Dumez :: Copyright (c) 2006 - + <b>Connection Status:</b><br>Online <b>Estado de la Conexión:</b><br>En línea - + <b>Connection Status:</b><br>Firewalled?<br><i>No incoming connections...</i> <b>Estado de la Conexión:</b><br>¿Con Firewall?<br><i>Sin conexiones entrantes...</i> - + <b>Connection Status:</b><br>Offline<br><i>No peers found...</i> <b>Estado de la Conexión:</b><br>Desconectado<br><i>No se encontraron nodos...</i> - + has finished downloading. se ha terminado de descargar. @@ -777,37 +777,37 @@ 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. - + None Ninguno - + Empty search pattern Patrón de búsqueda vacío - + Please type a search pattern first Por favor escriba un patrón de búsqueda primero - + No seach engine selected No seleccionaste motor de búsqueda - + You must select at least one search engine. Debes seleccionar al menos un motor de búsqueda. - + Searching... Buscando... @@ -822,9 +822,9 @@ Copyright © 2006 por Christophe Dumez<br> Detenido - + I/O Error - Error de Entrada/Salida + Error de Entrada/Salida @@ -847,7 +847,7 @@ Copyright © 2006 por Christophe Dumez<br> URL del archivo torrent: - + Are you sure you want to quit? -- qBittorrent ¿Seguro que quieres salir? -- qBittorrent @@ -872,7 +872,7 @@ Copyright © 2006 por Christophe Dumez<br> No se pudo descargar: - + KiB/s KiB/s @@ -892,22 +892,22 @@ Copyright © 2006 por Christophe Dumez<br> Detenida - + Search is finished La busqueda ha finalizado - + An error occured during search... Ocurrió un error durante la búsqueda... - + Search aborted Búsqueda abortada - + Search returned no results La búsqueda no devolvió resultados @@ -917,12 +917,12 @@ Copyright © 2006 por Christophe Dumez<br> La búsqueda ha finalizado - + Search plugin update -- qBittorrent Actualizador de plugin de búsqueda -- qBittorrent - + Search plugin can be updated, do you want to update it? Changelog: @@ -933,147 +933,162 @@ Log: - + Sorry, update server is temporarily unavailable. Lo siento, el servidor de actualización esta temporalmente no disponible. - + Your search plugin is already up to date. Tu plugin de búsqueda vuelve a estar actualizado. - + Results Resultados - + Name Nombre - + Size Tamaño - + Progress Progreso - + DL Speed Velocidad de Descarga - + UP Speed Velocidad de Subida - + Status Estado - + ETA Tiempo Restante Aproximado - + Seeders Seeders - + Leechers Leechers - + Search engine Motor de búsqueda - + Stalled state of a torrent whose DL Speed is 0 Detenida - + Paused - + Preview process already running Previsualizar procesos activos - + There is already another preview process running. Please close the other one first. Hay otro proceso de previsualización corriendo. Por favor cierra el otro antes. - + Couldn't download Couldn't download <file> No se pudo descargar - + reason: Reason why the download failed Razón: - + Downloading Example: Downloading www.example.com/test.torrent Descargando - + Please wait... Por favor espere... - + Transfers Transferidos - + Are you sure you want to quit qBittorrent? ¿Seguro que deseas salir de qBittorrent? - + 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? - + Download finished - + has finished downloading. <filename> has finished downloading. se ha terminado de descargar. - + Search Engine Motor de Búsqueda + + + Seeds/Leechs + + + + + An error occured when trying to read or write + + + + + The disk is probably full, download has been paused + + MainWindow @@ -1138,74 +1153,74 @@ Por favor cierra el otro antes. Tiempo Restante Aproximado - + &Options &Opciones - + &Edit &Editar - + &File &Archivo - + &Help &Ayuda - + Open Abrir - + Exit Salir - + Preferences Preferencias - + About Acerca de - + Start Comenzar - + Pause Pausa - + Delete Borrar - + Pause All Pausa a Todas - + Start All Comenzar Todas Documentation - Documentación + Documentación @@ -1218,7 +1233,7 @@ Por favor cierra el otro antes. Borrar Todas - + Torrent Properties Propiedades del Torrent @@ -1283,7 +1298,7 @@ Por favor cierra el otro antes. Motor de Búsqueda - + Download from URL Descargar de URL @@ -1303,7 +1318,7 @@ Por favor cierra el otro antes. KiB/s - + Create torrent Crear torrent @@ -1328,20 +1343,30 @@ Por favor cierra el otro antes. Transferidos - + Preview file Previsualizar archivo - + Clear log Limpiar registro - + Delete Permanently Borrar permanentemente + + + Visit website + + + + + Report a bug + + PropListDelegate @@ -1715,43 +1740,43 @@ Por favor cierra el otro antes. misc - + B bytes B - + KiB kibibytes (1024 bytes) KiB - + MiB mebibytes (1024 kibibytes) MiB - + GiB gibibytes (1024 mibibytes) GiB - + TiB tebibytes (1024 gibibytes) TiB - + m minutes m - + h hours h @@ -1763,24 +1788,24 @@ Por favor cierra el otro antes. d - + Unknown Desconocido - + h hours h - + d days d - + Unknown Unknown (size) Desconocido diff --git a/src/lang/qbittorrent_fi.qm b/src/lang/qbittorrent_fi.qm index 04cddc6e1..150d4994a 100644 Binary files a/src/lang/qbittorrent_fi.qm and b/src/lang/qbittorrent_fi.qm differ diff --git a/src/lang/qbittorrent_fi.ts b/src/lang/qbittorrent_fi.ts index d3a4b3a81..1c1276045 100644 --- a/src/lang/qbittorrent_fi.ts +++ b/src/lang/qbittorrent_fi.ts @@ -112,7 +112,7 @@ Tekijänoikeus © 2006 Christophe Dumez<br> DLListDelegate - + KiB/s KiB/s @@ -438,33 +438,33 @@ Tekijänoikeus © 2006 Christophe Dumez<br> GUI - + added to download list. lisättiin latauslistaan. - + All Downloads Paused. Kaikki lataukset pysäytettiin. - + All Downloads Resumed. Kaikki lataukset käynnistettiin. - + already in download list. <file> already in download list. on jo latauslistassa. - + An error occured during search... Haun aika tapahtui virhe... - + Are you sure? -- qBittorrent Oletko varma? — qBittorrent @@ -474,12 +474,12 @@ 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? @@ -489,79 +489,79 @@ Tekijänoikeus © 2006 Christophe Dumez<br> Haluatko varmasti lopettaa qBittorrentin? - + Are you sure you want to quit qBittorrent? Haluatko varmasti lopettaa qBittorrentin? - + Are you sure you want to quit? -- qBittorrent Haluatko varmasti lopettaa? — qBittorrent - + <b>Connection Status:</b><br>Firewalled?<br><i>No incoming connections...</i> <b>Yhteyden tila:</b><br>Palomuurin takana?<br><i>Ei sisääntulevia yhteyksiä...</i> - + <b>Connection Status:</b><br>Offline<br><i>No peers found...</i> <b>Yhteyden tila:</b><br>Ei yhteyttä<br><i>Ei lataajia...</i> - + <b>Connection Status:</b><br>Online <b>Yhteyden tila:</b><br>OK - + <b>qBittorrent</b><br>DL Speed: <b>qBittorrent</b><br>Latausnopeus: - + Checking... Tarkastetaan... - + Connecting... Yhdistetään... - + Couldn't create the directory: Seuraavan kansion luominen ei onnistunut: - + Couldn't download Couldn't download <file> Tiedoston lataaminen ei onnistunut: - + Couldn't listen on any of the given ports. Minkään annetun portin käyttäminen ei onnistunut. - + DL Speed Latausnopeus - + Download finished Lataus tuli valmiiksi - + Downloading Example: Downloading www.example.com/test.torrent Ladataan torrenttia - + Downloading... Ladataan... @@ -571,162 +571,162 @@ Tekijänoikeus © 2006 Christophe Dumez<br> Lataulista tyhjennettiin. - + Empty search pattern Tyhjä hakulauseke - + ETA ETA - + Finished Valmis - + has finished downloading. valmistui. - + has finished downloading. <filename> has finished downloading. valmistui. - + KiB/s KiB/s - + Leechers Lataajia - + Listening on port: Käytetään porttia: - + Name Nimi - + &No &Ei - + None Ei mikään - + No seach engine selected Hakupalvelua ei ole valittu - + Open Torrent Files Avaa torrent-tiedostoja - + paused. <file> paused. pysäytettiin. - + Paused Pysäytetty - + Please type a search pattern first Kirjoita ensin hakulauseke - + Please wait... Odota... - + Preview process already running Esikatselu on jo käynnissä - + Progress Edistyminen - + qBittorrent qBittorrent - + reason: Reason why the download failed Syy: - + removed. <file> removed. poistettiin. - + Results Tulokset - + resumed. <file> resumed. latautuu. - + resumed. (fast resume) latautuu. (pikajatkaminen) - + Search aborted Haku keskeytetty - + Search engine Hakupalvelu - + Search Engine Hakupalvelu - + Searching... Etsitään... - + Search is finished Haku päättyi - + Search plugin can be updated, do you want to update it? Changelog: @@ -737,103 +737,123 @@ Muutoshistoria: - + Search plugin update -- qBittorrent Hakuliitännäisen päivitys — qBittorrent - + Search returned no results Haku ei palauttanut tuloksia - + Seeders Jakajia - + Size Koko - + Sorry, update server is temporarily unavailable. Päivityspalvelin ei ole saavutettavissa. - + Stalled state of a torrent whose DL Speed is 0 Seisahtunut - + started. käynnistettiin. - + Status Tila - + There is already another preview process running. Please close the other one first. Esikatselu on jo käynnissä. Uutta esikatselua ei voi aloittaa. - + This file is either corrupted or this isn't a torrent. Tiedosto ei ole kelvollinen torrent-tiedosto. - + Torrent Files Torrent-tiedostot - + Transfers Siirrot - + Unable to decode torrent file: Torrent-tiedoston purkaminen ei onnistunut: - + UP Speed Lähetysnopeus - + UP Speed: Lähetysnopeus: - + &Yes &Kyllä - + You must select at least one search engine. Valitse ensin ainakin yksi hakupalvelu. - + Your search plugin is already up to date. Hakuliitännäinen on ajan tasalla. + + + Seeds/Leechs + + + + + I/O Error + I/O-virhe + + + + An error occured when trying to read or write + + + + + The disk is probably full, download has been paused + + MainWindow - + About Tietoja @@ -843,7 +863,7 @@ Uutta esikatselua ei voi aloittaa. Tyhjennä - + Clear log Tyhjennä loki @@ -853,12 +873,12 @@ Uutta esikatselua ei voi aloittaa. Yhteyden tila - + Create torrent Luo torrentti - + Delete Poista @@ -868,14 +888,14 @@ Uutta esikatselua ei voi aloittaa. Poista kaikki - + Delete Permanently Poista pysyvästi Documentation - Dokumentaatio + Dokumentaatio @@ -883,27 +903,27 @@ Uutta esikatselua ei voi aloittaa. Lataa - + Download from URL Lataa URL-osoitteesta - + &Edit &Muokkaa - + Exit Lopeta - + &File &Tiedosto - + &Help &Ohje @@ -918,32 +938,32 @@ Uutta esikatselua ei voi aloittaa. Loki: - + Open Avaa - + &Options &Asetukset - + Pause Pysäytä - + Pause All Pysäytä kaikki - + Preferences Asetukset - + Preview file Esikatsele @@ -973,12 +993,12 @@ Uutta esikatselua ei voi aloittaa. Jakosuhde: - + Start Käynnistä - + Start All Käynnistä kaikki @@ -998,7 +1018,7 @@ Uutta esikatselua ei voi aloittaa. Pysäytetty - + Torrent Properties Torrentin tiedot @@ -1022,6 +1042,16 @@ Uutta esikatselua ei voi aloittaa. Update search plugin Päivitä hakuliitännäinen + + + Visit website + + + + + Report a bug + + PropListDelegate @@ -1347,66 +1377,66 @@ Uutta esikatselua ei voi aloittaa. misc - + B bytes B - + d days d - + GiB gibibytes (1024 mibibytes) GiB - + h hours h - + h hours h - + KiB kibibytes (1024 bytes) KiB - + m minutes m - + MiB mebibytes (1024 kibibytes) MiB - + TiB tebibytes (1024 gibibytes) TiB - + Unknown tuntematon - + Unknown Unknown (size) tuntematon (koko) diff --git a/src/lang/qbittorrent_fr.qm b/src/lang/qbittorrent_fr.qm index 474b1565a..f6bb4754e 100644 Binary files a/src/lang/qbittorrent_fr.qm and b/src/lang/qbittorrent_fr.qm differ diff --git a/src/lang/qbittorrent_fr.ts b/src/lang/qbittorrent_fr.ts index 5ba952ae5..6bc391ef4 100644 --- a/src/lang/qbittorrent_fr.ts +++ b/src/lang/qbittorrent_fr.ts @@ -243,7 +243,7 @@ Copyright © 2006 par Christophe Dumez<br> DLListDelegate - + KiB/s Ko/s @@ -649,7 +649,7 @@ Copyright © 2006 par Christophe Dumez<br> Impossible de trouver le dossier : ' - + Open Torrent Files Ouvrir fichiers torrent @@ -679,12 +679,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 @@ -694,17 +694,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 ? @@ -729,22 +729,22 @@ Copyright © 2006 par Christophe Dumez<br> ko/s - + Finished Terminé - + Checking... Vérification... - + Connecting... Connexion... - + Downloading... Téléchargement... @@ -754,12 +754,12 @@ Copyright © 2006 par Christophe Dumez<br> Liste de téléchargement vidée. - + All Downloads Paused. Tous les téléchargements ont été mis en pause. - + All Downloads Resumed. Tous les téléchargements ont été relancés. @@ -769,43 +769,43 @@ Copyright © 2006 par Christophe Dumez<br> Vitesse DL : - + started. démarré. - + UP Speed: Vitesse UP: - + Couldn't create the directory: Impossible de créer le dossier : - + Torrent Files Fichiers Torrent - + already in download list. <file> already in download list. déjà dans la liste de téléchargement. - + added to download list. ajouté à la liste de téléchargement. - + resumed. (fast resume) relancé. (relancement rapide) - + Unable to decode torrent file: Impossible de décoder le fichier torrent : @@ -815,19 +815,19 @@ Copyright © 2006 par Christophe Dumez<br> Etes-vous sûr ? - + removed. <file> removed. supprimé. - + paused. <file> paused. mis en pause. - + resumed. <file> resumed. relancé. @@ -851,7 +851,7 @@ Copyright © 2006 par Christophe Dumez<br> j - + Listening on port: Ecoute sur le port: @@ -861,12 +861,12 @@ Copyright © 2006 par Christophe Dumez<br> Impossible d'écouter sur les ports donnés - + qBittorrent - + <b>qBittorrent</b><br>DL Speed: <b>qBittorrent</b><br>Vitesse DL : @@ -876,7 +876,7 @@ Copyright © 2006 par Christophe Dumez<br> :: Par Christophe Dumez :: Copyright (c) 2006 - + <b>Connection Status:</b><br>Online <b>Statut Connexion :</b><br>En Ligne @@ -891,52 +891,52 @@ Copyright © 2006 par Christophe Dumez<br> <b>Statut Connexion :</b><br>Déconnecté<br><i>Aucun peer trouvé...</i> - + <b>Connection Status:</b><br>Firewalled?<br><i>No incoming connections...</i> <b>Statut Connexion :</b><br>Derrière un pare-feu ?<br><i>Aucune connexion entrante...</i> - + <b>Connection Status:</b><br>Offline<br><i>No peers found...</i> <b>Statut Connexion :</b><br>Déconnecté<br><i>Aucun peer trouvé...</i> - + has finished downloading. a fini de télécharger. - + Couldn't listen on any of the given ports. Impossible d'écouter sur les ports donnés. - + None Aucun - + Empty search pattern Motif de recherche vide - + Please type a search pattern first Veuillez entrer un motif de recherche d'abord - + No seach engine selected Aucun moteur de recherche sélectionné - + You must select at least one search engine. Vous devez sélectionner au moins un moteur de recherche. - + Searching... Recherche en cours... @@ -956,9 +956,9 @@ Copyright © 2006 par Christophe Dumez<br> Stoppé - + I/O Error - Erreur E/S + Erreur E/S @@ -1001,7 +1001,7 @@ Copyright © 2006 par Christophe Dumez<br> Un téléchargement http a échoué, raison : - + Are you sure you want to quit? -- qBittorrent Etes-vous sûr ? -- qBittorrent @@ -1026,7 +1026,7 @@ Copyright © 2006 par Christophe Dumez<br> Echec lors du téléchargement de : - + KiB/s Ko/s @@ -1051,22 +1051,22 @@ Copyright © 2006 par Christophe Dumez<br> Votre recherche s'est terminée - + Search is finished La recherche est terminée - + An error occured during search... Une erreur s'est produite lors de la recherche... - + Search aborted La recherché a été interrompue - + Search returned no results La recherche n'a retourné aucun résultat @@ -1076,12 +1076,12 @@ Copyright © 2006 par Christophe Dumez<br> La recherche est terminée - + Search plugin update -- qBittorrent Mise à jour du greffon de recherche -- qBittorrent - + Search plugin can be updated, do you want to update it? Changelog: @@ -1092,147 +1092,162 @@ Changemets: - + Sorry, update server is temporarily unavailable. Désolé, le serveur de mise à jour est temporairement indisponible. - + Your search plugin is already up to date. Votre greffon de recherche est déjà à jour. - + Results Résultats - + Name Nom - + Size Taille - + Progress Progression - + DL Speed Vitesse DL - + UP Speed Vitesse UP - + Status Statut - + ETA Restant - + Seeders Sources complètes - + Leechers Sources partielles - + Search engine Moteur de recherche - + Stalled state of a torrent whose DL Speed is 0 En attente - + Paused En pause - + Preview process already running Processus de prévisualisation inachevé - + There is already another preview process running. Please close the other one first. Il y a déjà un processus de prévisualisation en cours d'exécution. Veuillez d'abord le quitter. - + Couldn't download Couldn't download <file> Impossible de télécharger - + reason: Reason why the download failed Raison : - + Downloading Example: Downloading www.example.com/test.torrent En téléchargement - + Please wait... Veuillez patienter... - + Transfers Transferts - + Download finished Téléchargement terminé - + has finished downloading. <filename> has finished downloading. est fini de télécharger. - + Search Engine Moteur de recherche - + Are you sure you want to quit qBittorrent? Etes-vous certain de vouloir quitter qBittorrent ? - + 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 ? + + + Seeds/Leechs + + + + + An error occured when trying to read or write + + + + + The disk is probably full, download has been paused + + MainWindow @@ -1292,75 +1307,70 @@ Veuillez d'abord le quitter. Restant - + &Options &Options - + &Edit &Edition - + &File &Fichier - + &Help &Aide - + Open Ouvrir - + Exit Quitter - + Preferences Préférences - + About A Propos - + Start Démarrer - + Pause Pause - + Delete Supprimer - + Pause All Tous en Pause - + Start All Démarrer tous - - - Documentation - - Connexion Status @@ -1372,7 +1382,7 @@ Veuillez d'abord le quitter. Supprimer tous - + Torrent Properties Propriétés du Torrent @@ -1437,7 +1447,7 @@ Veuillez d'abord le quitter. Moteur de recherche - + Download from URL Téléchargement depuis une URL @@ -1457,7 +1467,7 @@ Veuillez d'abord le quitter. Ko/s - + Create torrent Créer torrent @@ -1482,20 +1492,30 @@ Veuillez d'abord le quitter. Transferts - + Preview file Prévisualiser fichier - + Clear log Effacer historique - + Delete Permanently Supprimer depuis le disque + + + Visit website + + + + + Report a bug + + PropListDelegate @@ -1874,43 +1894,43 @@ Veuillez d'abord le quitter. misc - + B bytes o - + KiB kibibytes (1024 bytes) Ko - + MiB mebibytes (1024 kibibytes) Mo - + GiB gibibytes (1024 mibibytes) Go - + TiB tebibytes (1024 gibibytes) To - + m minutes m - + h hours h @@ -1922,24 +1942,24 @@ Veuillez d'abord le quitter. j - + Unknown Inconnu - + h hours h - + d days j - + Unknown Unknown (size) Inconnue diff --git a/src/lang/qbittorrent_it.qm b/src/lang/qbittorrent_it.qm index ef9db42fb..9e0fcb8f9 100644 Binary files a/src/lang/qbittorrent_it.qm and b/src/lang/qbittorrent_it.qm differ diff --git a/src/lang/qbittorrent_it.ts b/src/lang/qbittorrent_it.ts index f025bcca0..80c4b5bc9 100644 --- a/src/lang/qbittorrent_it.ts +++ b/src/lang/qbittorrent_it.ts @@ -123,7 +123,7 @@ Copyright © 2006 by Christophe Dumez<br> DLListDelegate - + KiB/s KiB/s @@ -469,12 +469,12 @@ Copyright © 2006 by Christophe Dumez<br> GUI - + Open Torrent Files Apri file torrent - + This file is either corrupted or this isn't a torrent. Questo file è corrotto o non è un torrent @@ -484,37 +484,37 @@ 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? - + Finished Finito - + Checking... Controllo in corso... - + Connecting... Connessione in corso... - + Downloading... Download in corso... @@ -524,151 +524,151 @@ Copyright © 2006 by Christophe Dumez<br> Lista download vuota. - + All Downloads Paused. Fermati tutti i downloads. - + All Downloads Resumed. Ripresi tutti i downloads. - + started. iniziato. - + UP Speed: Velocità upload: - + Couldn't create the directory: Impossibile creare la directory: - + Torrent Files Files torrent - + already in download list. <file> already in download list. già presente fra i downloads. - + added to download list. aggiunto. - + resumed. (fast resume) ripreso. - + Unable to decode torrent file: Impossibile decodificare il file torrent: - + removed. <file> removed. rimosso. - + paused. <file> paused. fermato. - + resumed. <file> resumed. ripreso. - + Listening on port: In ascolto sulla porta: - + qBittorrent qBittorrent - + Are you sure? -- qBittorrent Sei sicuro? -- qBittorrent - + <b>qBittorrent</b><br>DL Speed: <b>qBittorrent</b><br>Velocità download: - + <b>Connection Status:</b><br>Online <b>Status connessione:</b><br>Online - + <b>Connection Status:</b><br>Firewalled?<br><i>No incoming connections...</i> <b>Status connessione:</b><br>Firewall?<br><i>Nessuna connessione in ingresso...</i> - + <b>Connection Status:</b><br>Offline<br><i>No peers found...</i> <b>Status connessione:</b><br>Offline<br><i>Nessun peer trovato...</i> - + has finished downloading. ha finito il dowload. - + Couldn't listen on any of the given ports. Impossibile mettersi in ascolto sulle porte scelte. - + None Nessuno - + Empty search pattern Pattern di ricerca vuoto - + Please type a search pattern first Per favore inserire prima un patter di ricerca - + No seach engine selected Nessun motore di ricerca selezionato - + You must select at least one search engine. Devi scegliere almeno un motore di ricerca. - + Searching... Ricerca... - + Are you sure you want to quit? -- qBittorrent Sicuro di voler uscire? -- qBittorrent @@ -678,37 +678,37 @@ Copyright © 2006 by Christophe Dumez<br> Sicuro di voler uscire da qBittorrent? - + KiB/s KiB/s - + Search is finished Ricerca completata - + An error occured during search... Un errore si è presentato durante la ricerca... - + Search aborted Ricerca annullata - + Search returned no results La ricerca non ha prodotto risultati - + Search plugin update -- qBittorrent Aggiornamento del plugin di ricerca -- qBittorrent - + Search plugin can be updated, do you want to update it? Changelog: @@ -718,100 +718,100 @@ Changelog: Changelog: - + Sorry, update server is temporarily unavailable. Spiacenti, il server principale è momentaneamente irraggiungibile. - + Your search plugin is already up to date. Il plugin di Ricerca è già aggiornato. - + Results Risultati - + Name Nome - + Size Dimensione - + Progress Progresso - + DL Speed Velocità download - + UP Speed Velocità upload - + Status Status - + ETA ETA - + Seeders Seeders - + Leechers Leechers - + Search engine Motore di ricerca - + Stalled state of a torrent whose DL Speed is 0 In stallo - + Paused In pausa - + Preview process already running Processo di anteprima già in esecuzione - + There is already another preview process running. Please close the other one first. C'è già un altro processo di anteprima avviato. Per favore chiuderlo. - + Couldn't download Couldn't download <file> Impossibile scaricare il file - + reason: Reason why the download failed motivo: @@ -824,47 +824,67 @@ Example: Downloading www.example.com/test.torrent Scaricando - + Please wait... Attendere prego... - + Transfers Trasferimenti - + Downloading Example: Downloading www.example.com/test.torrent Downloading - + Download finished Download finito - + has finished downloading. <filename> has finished downloading. ha finito il download. - + Search Engine Motore di Ricerca - + Are you sure you want to quit qBittorrent? Sicuro di voler uscire da qBittorrent? - + 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? + + + Seeds/Leechs + + + + + I/O Error + Errore I/O + + + + An error occured when trying to read or write + + + + + The disk is probably full, download has been paused + + MainWindow @@ -884,74 +904,74 @@ Example: Downloading www.example.com/test.torrent Velocità totale upload: - + &Options &Opzioni - + &Edit &Modifica - + &File &File - + &Help &Aiuto - + Open Apri - + Exit Esci - + Preferences Preferenze - + About Informazioni - + Start Avvia - + Pause Ferma - + Delete Cancella - + Pause All Ferma Tutti - + Start All Inizia Tutti Documentation - Documentazione + Documentazione @@ -959,7 +979,7 @@ Example: Downloading www.example.com/test.torrent Cancella tutti - + Torrent Properties Propietà @@ -1004,7 +1024,7 @@ Example: Downloading www.example.com/test.torrent Ferma - + Download from URL Download da URL @@ -1024,7 +1044,7 @@ Example: Downloading www.example.com/test.torrent KiB/s - + Create torrent Crea torrent @@ -1044,20 +1064,30 @@ Example: Downloading www.example.com/test.torrent Trasferimenti - + Preview file Anteprima file - + Clear log Cancella log - + Delete Permanently Cancella Permanentemente + + + Visit website + + + + + Report a bug + + PropListDelegate @@ -1378,66 +1408,66 @@ Example: Downloading www.example.com/test.torrent misc - + B bytes B - + KiB kibibytes (1024 bytes) KiB - + MiB mebibytes (1024 kibibytes) MiB - + GiB gibibytes (1024 mibibytes) GiB - + TiB tebibytes (1024 gibibytes) TiB - + h hours h - + d days gg - + Unknown Sconosciuto - + m minutes m - + h hours h - + Unknown Unknown (size) Sconosciuta diff --git a/src/lang/qbittorrent_ko.qm b/src/lang/qbittorrent_ko.qm index d499cbc8f..986ba8a5f 100644 Binary files a/src/lang/qbittorrent_ko.qm and b/src/lang/qbittorrent_ko.qm differ diff --git a/src/lang/qbittorrent_ko.ts b/src/lang/qbittorrent_ko.ts index 3a274a146..4dc9d55ce 100644 --- a/src/lang/qbittorrent_ko.ts +++ b/src/lang/qbittorrent_ko.ts @@ -141,7 +141,7 @@ Copyright © 2006 by Christophe Dumez<br> DLListDelegate - + KiB/s @@ -538,7 +538,7 @@ list: GUI - + started. 시작. @@ -553,27 +553,27 @@ list: kb/s - + UP Speed: 업로딩 속도: - + Open Torrent Files 토런트 파일 열기 - + Torrent Files 토런트 파일 - + Couldn't create the directory: 폴더를 만들수가 없습니다: - + already in download list. <file> already in download list. 이미 다운로드 리스트에 포함되어 있습니다. @@ -594,17 +594,17 @@ list: 알수 없음 - + added to download list. 다운로드 목록에 포함하기. - + resumed. (fast resume) 다시 시작됨. (빠르게 재개) - + Unable to decode torrent file: 토런트 파일을 읽을 수가 없습니다: @@ -628,12 +628,12 @@ list? 파일을 지우고 싶으세요? - + &Yes &예 - + &No &아니요 @@ -650,13 +650,13 @@ download list? 선택하신 모든 아이템을 삭제하시겠습니까? - + removed. <file> removed. 삭제됨. - + Listening on port: 이미 연결 된 포트: @@ -672,7 +672,7 @@ download list? 멈춤 - + All Downloads Paused. 모든 다움로드가 멈추었습니다. @@ -682,39 +682,39 @@ download list? 시작됨 - + All Downloads Resumed. 모든 다운로드가 다시 시작되었습니다. - + paused. <file> paused. 멈춤. - + resumed. <file> resumed. 다시 시작됨. - + Finished 완료 - + Checking... 확인중... - + Connecting... 연결중... - + Downloading... 다운로딩 중... @@ -737,7 +737,7 @@ download list? - + This file is either corrupted or this isn't a torrent. 이 파일은 오류가 있거나 토런트 파일이 아닙니다. @@ -747,12 +747,12 @@ download list? 다운로드 목록에 있는 모든 파일을 지우고 싶으세요? - + Are you sure you want to delete the selected item(s) in download list? 다운로딩 목록에서 선택하신 모든 아이템을 삭제하시겠습니까? - + qBittorrent 큐비토런트 @@ -767,73 +767,73 @@ download list? 큐비토런트 - + Are you sure? -- qBittorrent 재확인해주십시요? -- 큐비토런트 - + <b>Connection Status:</b><br>Online 연결상태: 연결됨 - + <b>Connection Status:</b><br>Firewalled?<br><i>No incoming connections...</i> 연결상태: 방화벽을 사용중이십니까? <i>연결이 되지않고 있습니다...</i> - + <b>Connection Status:</b><br>Offline<br><i>No peers found...</i> 연결 상태: 오프라인 상태 <i>다른 사용자를 찾을수 없습니다.</i> - + <b>qBittorrent</b><br>DL Speed: 큐비토런트 다운로딩 속도: - + has finished downloading. 가 완료되었습니다. - + Couldn't listen on any of the given ports. 설정하신 포트에 연결할수 없습니다. - + None 없음 - + Empty search pattern 빈 검색 양식 - + Please type a search pattern first 검색 양식을 작성해주십시오 - + No seach engine selected 검색엔진이 선택되지 않았음 - + You must select at least one search engine. 적어도 하나 이상의 검색 엔진을 선택해야 합니다. - + Searching... 검색중... @@ -848,9 +848,9 @@ download list? 정지됨 - + I/O Error - I/O 에러 + I/O 에러 @@ -883,7 +883,7 @@ download list? http로 부터 다운로드 실패한 이유: - + Are you sure you want to quit? -- qBittorrent 종료하시겠습니까? -- 큐비토런트 @@ -908,7 +908,7 @@ download list? 다운로드 실패: - + KiB/s @@ -923,22 +923,22 @@ download list? 대기중 - + Search is finished 검색 완료 - + An error occured during search... 검색 중 오류 발생... - + Search aborted 검색이 중단됨 - + Search returned no results 검색 결과가 없음 @@ -948,12 +948,12 @@ download list? 검색 종료 - + Search plugin update -- qBittorrent 검색 플로그인 업데이트 -- 큐비토런트 - + Search plugin can be updated, do you want to update it? Changelog: @@ -964,147 +964,162 @@ Changelog: - + Sorry, update server is temporarily unavailable. 죄송합니다. 현재 임시적으로 업데이트 서버가 접속이 불가능합니다. - + Your search plugin is already up to date. 현재 최신 검색 엔진 플로그인을 사용중에 있습니다. - + Results 결과 - + Name 파일 이름 - + Size 크기 - + Progress 진행상황 - + DL Speed 다운로드 속도 - + UP Speed 업로드 속도 - + Status 상태 - + ETA 남은시간 - + Seeders 완전체 공유자 - + Leechers 부분 공유 - + Search engine 검색 엔진 - + Stalled state of a torrent whose DL Speed is 0 대기중 - + Paused 정지됨 - + Preview process already running 미리보기가 진행중입니다 - + There is already another preview process running. Please close the other one first. 미리보기가 진행중입니다. 다른 미리보기를 닫아주세요. - + Couldn't download Couldn't download <file> 다운로드 실패 - + reason: Reason why the download failed 이유: - + Downloading Example: Downloading www.example.com/test.torrent 다운로딩 중 - + Please wait... 기다려주십시오... - + Transfers 전송 - + Are you sure you want to quit qBittorrent? 정말로 큐비토런트를 종료하시겠습니까? - + Are you sure you want to delete the selected item(s) in download list and in hard drive? 정말로 지금 선택하신 파일들을 다운로드 목록과 하드 드라이브에서 삭제하시겠습니까? - + Download finished - + has finished downloading. <filename> has finished downloading. 가 완료되었습니다. - + Search Engine 검색 엔진 + + + Seeds/Leechs + + + + + An error occured when trying to read or write + + + + + The disk is probably full, download has been paused + + MainWindow @@ -1169,74 +1184,74 @@ Please close the other one first. 남은시간 - + &Options &설정 - + &Edit &편집 - + &Help &도움말 - + &File &파일 - + Open 열기 - + Exit 끝내기 - + Preferences 설정사항 - + About 정보 - + Start 시작 - + Pause 정지 - + Delete 삭제 - + Pause All 모두 멈추기 - + Start All 모두 시작하기 Documentation - 도움말 + 도움말 @@ -1249,7 +1264,7 @@ Please close the other one first. 모두 삭제 - + Torrent Properties 토렌트 구성요소 @@ -1314,7 +1329,7 @@ Please close the other one first. 검색 엔진 - + Download from URL URL로 다운로드 @@ -1334,7 +1349,7 @@ Please close the other one first. - + Create torrent 토렌트 파일 생성 @@ -1359,20 +1374,30 @@ Please close the other one first. 전송 - + Preview file 미리보기 - + Clear log 로그 지우기 - + Delete Permanently 영구 삭제 + + + Visit website + + + + + Report a bug + + PropListDelegate @@ -1746,43 +1771,43 @@ Please close the other one first. misc - + B bytes - + KiB kibibytes (1024 bytes) - + MiB mebibytes (1024 kibibytes) - + GiB gibibytes (1024 mibibytes) - + TiB tebibytes (1024 gibibytes) - + m minutes - + h hours @@ -1794,24 +1819,24 @@ Please close the other one first. - + Unknown 알수 없음 - + h hours - + d days - + Unknown Unknown (size) 알수 없음 diff --git a/src/lang/qbittorrent_nb.qm b/src/lang/qbittorrent_nb.qm index 1b4523da2..4fe1b75e0 100644 Binary files a/src/lang/qbittorrent_nb.qm and b/src/lang/qbittorrent_nb.qm differ diff --git a/src/lang/qbittorrent_nb.ts b/src/lang/qbittorrent_nb.ts index 9f6fa4219..f421c0f85 100644 --- a/src/lang/qbittorrent_nb.ts +++ b/src/lang/qbittorrent_nb.ts @@ -112,7 +112,7 @@ Copyright © 2006 av Christophe Dumez<br> DLListDelegate - + KiB/s KiB/s @@ -458,12 +458,12 @@ Copyright © 2006 av Christophe Dumez<br> GUI - + Open Torrent Files Åpne torrentfiler - + This file is either corrupted or this isn't a torrent. Denne filen er enten ødelagt, eller det er ikke en torrent. @@ -473,37 +473,37 @@ 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? - + Finished Ferdig - + Checking... Kontrollerer... - + Connecting... Kobler til... - + Downloading... Laster ned... @@ -513,151 +513,151 @@ Copyright © 2006 av Christophe Dumez<br> Nedlastingslisten er tømt. - + All Downloads Paused. Alle nedlastinger er pauset. - + All Downloads Resumed. Alle nedlastinger er gjennopptatt. - + started. startet. - + UP Speed: Opplastingshastighet: - + Couldn't create the directory: Klarte ikke å opprette mappen: - + Torrent Files Torrentfiler - + already in download list. <file> already in download list. ligger allerede i nedlastingslisten. - + added to download list. lagt til i nedlastingslisten. - + resumed. (fast resume) gjenopptatt. (Hurtig gjenopptaging) - + Unable to decode torrent file: Klarte ikke å dekode torrentfilen: - + removed. <file> removed. fjernet. - + paused. <file> paused. er pauset. - + resumed. <file> resumed. er gjenopptatt. - + Listening on port: Lytter på port: - + qBittorrent qBittorrent - + Are you sure? -- qBittorrent Er du sikker? -- qBittorrent - + <b>qBittorrent</b><br>DL Speed: <b>qBittorrent</b><br>Nedlastingshastighet: - + <b>Connection Status:</b><br>Online <b>Tilkoblingsstatus:</b><br>Tilkoblet - + <b>Connection Status:</b><br>Firewalled?<br><i>No incoming connections...</i> <b>Tilkoblingsstatus:</b><br>Blokkert av brannmur?<br><i>Ingen innkommende tilkoblinger...</i> - + <b>Connection Status:</b><br>Offline<br><i>No peers found...</i> <b>Tilkoblingsstatus:</b><br>Frakoblet<br><i>Ingen tjenere funnet...</i> - + has finished downloading. er ferdig lastet ned. - + Couldn't listen on any of the given ports. Klarte ikke å lytte på noen av de oppgitte portene. - + None Ingen - + Empty search pattern Ingen søketekst - + Please type a search pattern first Skriv en tekst å søke etter først - + No seach engine selected Ingen søkemotor valgt - + You must select at least one search engine. Du må velge minst en søkemotor. - + Searching... Søker... - + Are you sure you want to quit? -- qBittorrent Ønsker du å avslutte? -- qBittorrent @@ -667,37 +667,37 @@ Copyright © 2006 av Christophe Dumez<br> Er du sikker på at du ønsker å avslutte qbittorrent? - + KiB/s KiB/s - + Search is finished Søket er ferdig - + An error occured during search... Det oppstod en feil under søket... - + Search aborted Søket er avbrutt - + Search returned no results Søket ga ingen resultater - + Search plugin update -- qBittorrent Oppdatering av søkeprogramtillegg -- qBittorrent - + Search plugin can be updated, do you want to update it? Changelog: @@ -707,147 +707,167 @@ Changelog: Endringer: - + Sorry, update server is temporarily unavailable. Oppdateringstjeneren er midlertidig utilgjengelig. - + Your search plugin is already up to date. Ditt søkeprogramtillegg er allerede oppdatert. - + Results Resultater - + Name Navn - + Size Størrelse - + Progress Fremdrift - + DL Speed Nedlastingshastighet - + UP Speed Opplastingshastighet - + Status Status - + ETA Gjenværende tid - + Seeders Delere - + Leechers Nedlastere - + Search engine Søkemotor - + Stalled state of a torrent whose DL Speed is 0 Laster ikke ned - + Paused Pauset - + Preview process already running Forhåndsvisningen kjører allerede - + There is already another preview process running. Please close the other one first. En annen forhåndsvisning kjører alt. Vennligst avslutt denne først. - + Couldn't download Couldn't download <file> Klarte ikke å laste ned - + reason: Reason why the download failed årsak: - + Downloading Example: Downloading www.example.com/test.torrent Laster ned - + Please wait... Vent litt... - + Transfers Overføringer - + Are you sure you want to quit qBittorrent? Ønsker du å avslutte qBittorrent? - + 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? - + Download finished - + has finished downloading. <filename> has finished downloading. er ferdig lastet ned. - + Search Engine + + + Seeds/Leechs + + + + + I/O Error + Lese/Skrive feil + + + + An error occured when trying to read or write + + + + + The disk is probably full, download has been paused + + MainWindow @@ -867,74 +887,74 @@ Vennligst avslutt denne først. Total opplastingshatighet: - + &Options &Valg - + &Edit &Rediger - + &File &Fil - + &Help &Hjelp - + Open Åpne - + Exit Avslutt - + Preferences Innstillinger - + About Om - + Start Start - + Pause Pause - + Delete Slett - + Pause All Paus alle - + Start All Start alle Documentation - Hjelpetekst + Hjelpetekst @@ -942,7 +962,7 @@ Vennligst avslutt denne først. Slett alle - + Torrent Properties Torrentegenskaper @@ -987,7 +1007,7 @@ Vennligst avslutt denne først. Stopp - + Download from URL Last ned fra nettadresse @@ -1007,7 +1027,7 @@ Vennligst avslutt denne først. KiB/s - + Create torrent Lag torrent @@ -1027,20 +1047,30 @@ Vennligst avslutt denne først. Overføringer - + Preview file Forhåndsvis filen - + Clear log Nullstill loggen - + Delete Permanently Slett data + + + Visit website + + + + + Report a bug + + PropListDelegate @@ -1366,66 +1396,66 @@ Vennligst avslutt denne først. misc - + B bytes B - + KiB kibibytes (1024 bytes) KiB - + MiB mebibytes (1024 kibibytes) MiB - + GiB gibibytes (1024 mibibytes) GiB - + TiB tebibytes (1024 gibibytes) TiB - + m minutes min - + h hours timer - + Unknown ukjent - + h hours timer - + d days dager - + Unknown Unknown (size) Ukjent diff --git a/src/lang/qbittorrent_nl.qm b/src/lang/qbittorrent_nl.qm index a9456e75c..de463a25d 100644 Binary files a/src/lang/qbittorrent_nl.qm and b/src/lang/qbittorrent_nl.qm differ diff --git a/src/lang/qbittorrent_nl.ts b/src/lang/qbittorrent_nl.ts index 58d07e315..208808ee5 100644 --- a/src/lang/qbittorrent_nl.ts +++ b/src/lang/qbittorrent_nl.ts @@ -191,7 +191,7 @@ Copyright 2006 door Christophe Dumez<br> DLListDelegate - + KiB/s KiB/s @@ -612,7 +612,7 @@ Copyright 2006 door Christophe Dumez<br> GUI - + qBittorrent qBittorrent @@ -622,7 +622,7 @@ Copyright 2006 door Christophe Dumez<br> :: Door Christophe Dumez :: Copyright (c) 2006 - + started. gestart. @@ -642,27 +642,27 @@ Copyright 2006 door Christophe Dumez<br> kb/s - + UP Speed: UP snelheid: - + Open Torrent Files Open Torrent bestanden - + Torrent Files Torrent bestanden - + Couldn't create the directory: Kon map niet aanmaken: - + already in download list. <file> already in download list. Staat al in downloadlijst. @@ -678,27 +678,27 @@ Copyright 2006 door Christophe Dumez<br> Onbekend - + added to download list. Toegevoegd aan downloadlijst. - + resumed. (fast resume) Hervat. (snel hervatten) - + Unable to decode torrent file: 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 @@ -708,12 +708,12 @@ Copyright 2006 door Christophe Dumez<br> Weet u zeker dat u alle bestanden uit de downloadlijst wilt verwijderen? - + &Yes &Ja - + &No &Nee @@ -723,18 +723,18 @@ 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? - + removed. <file> removed. verwijderd. - + Listening on port: Aan het luisteren op poort: @@ -744,7 +744,7 @@ Copyright 2006 door Christophe Dumez<br> gepauzeerd - + All Downloads Paused. Alle downloads gepauzeerd. @@ -754,49 +754,49 @@ Copyright 2006 door Christophe Dumez<br> gestart - + All Downloads Resumed. Alle downloads hervat. - + paused. <file> paused. gepauzeerd. - + resumed. <file> resumed. hervat. - + <b>Connection Status:</b><br>Online <b>Verbindingsstatus:</b><br>Online - + <b>Connection Status:</b><br>Firewalled?<br><i>No incoming connections...</i> <b>Verbindingsstatus:</b><br>Gefirewalled?<br><i>Geen inkomende verbindingen...</i> - + <b>Connection Status:</b><br>Offline<br><i>No peers found...</i> <b>Verbindingsstatus:</b><br>Offline<br><i>Geen peers gevonden...</i> - + has finished downloading. is klaar met downloaden. - + Couldn't listen on any of the given ports. Kan niet luisteren op de aangegeven poorten. - + <b>qBittorrent</b><br>DL Speed: <b>qBittorrent</b><br>DL snelheid: @@ -807,22 +807,22 @@ Copyright 2006 door Christophe Dumez<br> /s - + Finished Klaar - + Checking... Controleren... - + Connecting... Verbinding maken... - + Downloading... Downloaden... @@ -845,39 +845,39 @@ Copyright 2006 door Christophe Dumez<br> d - + None Geen - + Empty search pattern Leeg zoekpatroon - + Please type a search pattern first Type alstublieft eerst een zoekpatroon - + No seach engine selected Geen zoekmachine gekozen - + You must select at least one search engine. U moet tenminste een zoekmachine kiezen. - + Searching... Zoeken... - + I/O Error - I/O Fout + I/O Fout @@ -890,7 +890,7 @@ Copyright 2006 door Christophe Dumez<br> Torrent bestand URL: - + Are you sure you want to quit? -- qBittorrent Weet u zeker dat u wil afsluiten? -- qBittorrent @@ -900,7 +900,7 @@ Copyright 2006 door Christophe Dumez<br> Weet u zeker dat u qbittorrent af wil sluiten? - + KiB/s KiB/s @@ -915,22 +915,22 @@ Copyright 2006 door Christophe Dumez<br> Geblokkeerd - + Search is finished Zoeken is klaar - + An error occured during search... Een fout trad op tijdens zoeken... - + Search aborted Zoeken afgebroken - + Search returned no results Zoeken gaf geen resultaten @@ -940,12 +940,12 @@ Copyright 2006 door Christophe Dumez<br> Zoeken is Klaar - + Search plugin update -- qBittorrent Zoeken plugin update -- qBittorrent - + Search plugin can be updated, do you want to update it? Changelog: @@ -956,88 +956,88 @@ Changelog: - + Sorry, update server is temporarily unavailable. Sorry, update server is tijdelijk niet bereikbaar. - + Your search plugin is already up to date. Uw zoeken plugin is al bijgewerkt. - + Results Resultaten - + Name Naam - + Size Grootte - + Progress Voortgang - + DL Speed DL snelheid - + UP Speed UP snelheid - + Status Status - + ETA Geschatte resterende tijd - + Seeders Uploaders - + Leechers Downloaders - + Search engine Zoekmachine - + Stalled state of a torrent whose DL Speed is 0 Stilstand - + Paused Gepauzeerd - + Preview process already running Vooruitkijk proccess is al bezig - + There is already another preview process running. Please close the other one first. Er is al een ander vooruitkijk proccess actief. @@ -1045,59 +1045,74 @@ Stop het eerste proccess eerst. - + Couldn't download Couldn't download <file> Kon niet downloaden - + reason: Reason why the download failed reden: - + Downloading Example: Downloading www.example.com/test.torrent Downloaden - + Please wait... Wachten... - + Transfers Overdrachten - + Download finished Download afgerond - + has finished downloading. <filename> has finished downloading. is klaar met downloaden. - + Search Engine Zoekmachine - + Are you sure you want to quit qBittorrent? Weet u zeker dat u qBittorrent af wil sluiten? - + 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? + + + Seeds/Leechs + + + + + An error occured when trying to read or write + + + + + The disk is probably full, download has been paused + + MainWindow @@ -1162,74 +1177,74 @@ Stop het eerste proccess eerst. Geschatte resterende tijd - + &File &Bestand - + &Options &Opties - + &Help &Help - + &Edit &Bewerken - + Open Open - + Exit Afsluiten - + Preferences Voorkeuren - + About Over - + Start Start - + Pause Pauze - + Delete Verwijderen - + Pause All Pauzeer alles - + Start All Start alles Documentation - Documentatie + Documentatie @@ -1242,7 +1257,7 @@ Stop het eerste proccess eerst. Verwijder alles - + Torrent Properties Torrent eigenschappen @@ -1307,7 +1322,7 @@ Stop het eerste proccess eerst. Zoekmachine - + Download from URL Download vanaf URL @@ -1327,7 +1342,7 @@ Stop het eerste proccess eerst. KiB/s - + Create torrent Maak torrent @@ -1352,20 +1367,30 @@ Stop het eerste proccess eerst. Overdrachten - + Preview file Kijk vooruit op bestand - + Clear log Wist log - + Delete Permanently Permanent verwijderen + + + Visit website + + + + + Report a bug + + PropListDelegate @@ -1704,43 +1729,43 @@ Stop het eerste proccess eerst. misc - + B bytes B - + KiB kibibytes (1024 bytes) KiB - + MiB mebibytes (1024 kibibytes) MiB - + GiB gibibytes (1024 mibibytes) GiB - + TiB tebibytes (1024 gibibytes) TiB - + m minutes m - + h hours u @@ -1752,24 +1777,24 @@ Stop het eerste proccess eerst. d - + Unknown Onbekend - + h hours u - + d days d - + Unknown Unknown (size) Onbekend diff --git a/src/lang/qbittorrent_pl.qm b/src/lang/qbittorrent_pl.qm index 56e7436dd..b12000f45 100644 Binary files a/src/lang/qbittorrent_pl.qm and b/src/lang/qbittorrent_pl.qm differ diff --git a/src/lang/qbittorrent_pl.ts b/src/lang/qbittorrent_pl.ts index b3b3b659b..a1636bbb9 100644 --- a/src/lang/qbittorrent_pl.ts +++ b/src/lang/qbittorrent_pl.ts @@ -179,7 +179,7 @@ Wszystkie prawa zastrżeżone © 2006 Christophe Dumez<br> DLListDelegate - + KiB/s KiB/s @@ -600,7 +600,7 @@ Wszystkie prawa zastrżeżone © 2006 Christophe Dumez<br> GUI - + started. uruchomiony. @@ -615,27 +615,27 @@ Wszystkie prawa zastrżeżone © 2006 Christophe Dumez<br> kb/s - + UP Speed: Prędkość UP: - + Open Torrent Files Otwórz pliki Torrent - + Torrent Files Pliki Torrent - + Couldn't create the directory: Nie można zalożyć katalogu: - + already in download list. <file> already in download list. jest już na liście pobierania. @@ -651,22 +651,22 @@ Wszystkie prawa zastrżeżone © 2006 Christophe Dumez<br> Nieznany - + added to download list. dodany do listy pobierania. - + resumed. (fast resume) wznowiony. (szybkie wznawianie) - + Unable to decode torrent file: Problem z odkodowaniem pliku torrent: - + This file is either corrupted or this isn't a torrent. Plik jest uszkodzony lub nie jest plikiem torrent. @@ -676,12 +676,12 @@ Wszystkie prawa zastrżeżone © 2006 Christophe Dumez<br> Czy chcesz usunać wszystkie pliki z listy pobierania? - + &Yes &Tak - + &No &Nie @@ -691,18 +691,18 @@ 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 usunać wybrane elementy z listy pobierania? - + removed. <file> removed. usunięty. - + Listening on port: Nasłuchuje na porcie: @@ -712,7 +712,7 @@ Wszystkie prawa zastrżeżone © 2006 Christophe Dumez<br> wstrzymany - + All Downloads Paused. Wszystkie Pobierania Wsztrzymane. @@ -722,39 +722,39 @@ Wszystkie prawa zastrżeżone © 2006 Christophe Dumez<br> uruchomiony - + All Downloads Resumed. Wszystkie Pobierania Wzniowione. - + paused. <file> paused. wstrzymany. - + resumed. <file> resumed. wznowiony. - + Finished Ukończone - + Checking... Sprawdzanie.... - + Connecting... Łączenie... - + Downloading... Ściąganie... @@ -777,7 +777,7 @@ Wszystkie prawa zastrżeżone © 2006 Christophe Dumez<br> d - + qBittorrent qBittorrent @@ -787,12 +787,12 @@ Wszystkie prawa zastrżeżone © 2006 Christophe Dumez<br> qBittorrent - + Are you sure? -- qBittorrent Jesteś pewny? -- qBittorrent - + <b>qBittorrent</b><br>DL Speed: <b>qBittorrent</b><br>Prędkość DL: @@ -802,17 +802,17 @@ Wszystkie prawa zastrżeżone © 2006 Christophe Dumez<br> :: Christophe Dumez :: Wszelkie Prawa Zastrżeżone (c) 2006 - + <b>Connection Status:</b><br>Online <b>Status Połączenia:</b><br>Połączony - + <b>Connection Status:</b><br>Firewalled?<br><i>No incoming connections...</i> <b>Status Połączenia:</b><br>Zablokowane?<br><i>Brak połączeń przychodzących...</i> - + <b>Connection Status:</b><br>Offline<br><i>No peers found...</i> <b>Status Połączenia:</b><br>Rozłączony<br><i>Nie znaleziono peer-ów...</i> @@ -823,42 +823,42 @@ Wszystkie prawa zastrżeżone © 2006 Christophe Dumez<br> /s - + has finished downloading. zakończył sciąganie. - + Couldn't listen on any of the given ports. Nie można nasłuchiwać na zaðnym z podanych portów. - + None Brak - + Empty search pattern Pusty wzorzec wyszukiwania - + Please type a search pattern first Proszę podać wzorzec wyszukiwania - + No seach engine selected Nie wybrano wyszukiwarki - + You must select at least one search engine. Musisz wybrać przynajmniej jedną wyszukiwarkę. - + Searching... Wyszukiwanie... @@ -873,9 +873,9 @@ Wszystkie prawa zastrżeżone © 2006 Christophe Dumez<br> Zatrzymany - + I/O Error - Błąd We/Wy + Błąd We/Wy @@ -898,7 +898,7 @@ Wszystkie prawa zastrżeżone © 2006 Christophe Dumez<br> Adres pliku torrent: - + Are you sure you want to quit? -- qBittorrent Czy chcesz wyjść z programu? -- qBittorent @@ -928,7 +928,7 @@ Wszystkie prawa zastrżeżone © 2006 Christophe Dumez<br> Błąd pobierania, powód: - + KiB/s KiB/s @@ -948,22 +948,22 @@ Wszystkie prawa zastrżeżone © 2006 Christophe Dumez<br> Zablokowany - + Search is finished Wyszukiwanie zakończone - + An error occured during search... Wystąpił błąd podczas wyszukiwania... - + Search aborted Wyszukiwanie przerwane - + Search returned no results Nic nie znaleziono @@ -973,12 +973,12 @@ Wszystkie prawa zastrżeżone © 2006 Christophe Dumez<br> Wyszukiwanie jest zakończone - + Search plugin update -- qBittorrent Aktualizacja wtyczki wyszukującej -- qBittorrent - + Search plugin can be updated, do you want to update it? Changelog: @@ -986,147 +986,162 @@ Changelog: Dostępna jest nowa wersja wtyczki wyszukiwania, czy chcesz zaktualizować? Zmiany: - + Sorry, update server is temporarily unavailable. Przepraszamy, serwer aktualizacji jest tymczasowo niedostepny. - + Your search plugin is already up to date. Posiadasz najnowszą wersję wtyczki wyszukiwania. - + Results Wyniki - + Name Nazwa - + Size Rozmiar - + Progress Postęp - + DL Speed Prędkość DL - + UP Speed Prędkość UP - + Status Status - + ETA ETA - + Seeders Seeders - + Leechers Leechers - + Search engine Wyszukiwarka - + Stalled state of a torrent whose DL Speed is 0 Zablokowany - + Paused Zatrzymany - + Preview process already running Podgląd jest już uruchomiony - + There is already another preview process running. Please close the other one first. Podgląd jest już uruchomiony. Zamknij najpierw okno podglądu. - + Couldn't download Couldn't download <file> Nie można pobrać - + reason: Reason why the download failed powód: - + Downloading Example: Downloading www.example.com/test.torrent Pobieranie - + Please wait... Proszę czekać... - + Transfers Prędkość - + Are you sure you want to quit qBittorrent? Czy na pewno chcesz zakończyć aplikację qBittorrent? - + Are you sure you want to delete the selected item(s) in download list and in hard drive? Czy na pewno chcesz usunać wybrany element z listy i z dysku? - + Download finished - + has finished downloading. <filename> has finished downloading. zakończył sciąganie. - + Search Engine Wyszukiwarka + + + Seeds/Leechs + + + + + An error occured when trying to read or write + + + + + The disk is probably full, download has been paused + + MainWindow @@ -1191,74 +1206,74 @@ Zamknij najpierw okno podglądu. ETA - + &Options &Opcje - + &Edit &Edycja - + &File &Plik - + &Help &Pomoc - + Open Otwórz - + Exit Zakończ - + Preferences Preferencje - + About O programie - + Start Start - + Pause Wstrzymaj - + Delete Skasuj - + Pause All Wsztrzymaj wszystko - + Start All Rozpocznij wszystko Documentation - Dokumentacja + Dokumentacja @@ -1271,7 +1286,7 @@ Zamknij najpierw okno podglądu. Skasuj wszystko - + Torrent Properties Właściwości Torrent-a @@ -1336,7 +1351,7 @@ Zamknij najpierw okno podglądu. Wyszukiwarka - + Download from URL Pobierz z adresu @@ -1356,7 +1371,7 @@ Zamknij najpierw okno podglądu. KiB/s - + Create torrent Utwórz torrent-a @@ -1381,20 +1396,30 @@ Zamknij najpierw okno podglądu. Prędkość - + Preview file Podgląd pliku - + Clear log Wyczyść logi - + Delete Permanently Usuń całkowicie + + + Visit website + + + + + Report a bug + + PropListDelegate @@ -1768,43 +1793,43 @@ Zamknij najpierw okno podglądu. misc - + B bytes B - + KiB kibibytes (1024 bytes) KiB - + MiB mebibytes (1024 kibibytes) MiB - + GiB gibibytes (1024 mibibytes) GiB - + TiB tebibytes (1024 gibibytes) TiB - + m minutes m - + h hours h @@ -1816,24 +1841,24 @@ Zamknij najpierw okno podglądu. d - + Unknown Nieznany - + h hours h - + d days d - + Unknown Unknown (size) Nieznany diff --git a/src/lang/qbittorrent_pt.qm b/src/lang/qbittorrent_pt.qm index 3f031f58f..c80baaaf6 100644 Binary files a/src/lang/qbittorrent_pt.qm and b/src/lang/qbittorrent_pt.qm differ diff --git a/src/lang/qbittorrent_pt.ts b/src/lang/qbittorrent_pt.ts index cd10978d8..3ca316932 100644 --- a/src/lang/qbittorrent_pt.ts +++ b/src/lang/qbittorrent_pt.ts @@ -112,7 +112,7 @@ Copyright ©2006 por Christophe Dumez<br> DLListDelegate - + KiB/s KiB/s @@ -473,7 +473,7 @@ Copyright ©2006 por Christophe Dumez<br> GUI - + Open Torrent Files Abrir Arquivos Torrent @@ -483,7 +483,7 @@ Copyright ©2006 por Christophe Dumez<br> Desconhecido - + This file is either corrupted or this isn't a torrent. Este arquivo está corrompido ou não é um arquivo torrent. @@ -493,17 +493,17 @@ Copyright ©2006 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? @@ -518,22 +518,22 @@ Copyright ©2006 por Christophe Dumez<br> iniciado - + Finished Concluído - + Checking... Checando... - + Connecting... Conectando... - + Downloading... Baixando... @@ -543,12 +543,12 @@ Copyright ©2006 por Christophe Dumez<br> Lista de downloads está vazia. - + All Downloads Paused. Todos os downloads pausados. - + All Downloads Resumed. Todos os downloads reiniciados. @@ -558,71 +558,71 @@ Copyright ©2006 por Christophe Dumez<br> Velocidade de download: - + started. inciado. - + UP Speed: Velocidade de Upload: - + Couldn't create the directory: Impossível criar diretório: - + Torrent Files Arquivos Torrent - + already in download list. <file> already in download list. já está na lista de downloads. - + added to download list. adicionado à lista de downloads. - + resumed. (fast resume) reiniciado. (reinicialização rápida) - + Unable to decode torrent file: Incapaz de decodificar o arquivo torrent: - + removed. <file> removed. removido. - + paused. <file> paused. pausado. - + resumed. <file> resumed. reiniciado. - + Listening on port: Porta de escuta: - + qBittorrent qBittorrent @@ -632,67 +632,67 @@ Copyright ©2006 por Christophe Dumez<br> qBittorrent - + Are you sure? -- qBittorrent Tem certeza? -- qBittorrent - + <b>qBittorrent</b><br>DL Speed: <b>qBittorrent</b><br>Velocidade de Download: - + <b>Connection Status:</b><br>Online <b>Status da conexão:</b><br>Online - + <b>Connection Status:</b><br>Firewalled?<br><i>No incoming connections...</i> <b>Status da conexão:</b><br>Firewall ativado?<br><i>Não foi possível estabelecer uma conexão...</i> - + <b>Connection Status:</b><br>Offline<br><i>No peers found...</i> <b>Status da conexão:</b><br>Offline - + has finished downloading. concluiu o download. - + Couldn't listen on any of the given ports. Não foi possível escutar pelas portas dadas. - + None Nenhum - + Empty search pattern Padrão de busca vazio - + Please type a search pattern first Entre primeiro com um padrão de busca - + No seach engine selected Nenhum mecanismo de busca selecionado - + You must select at least one search engine. Você deve selecionar pelo menos um mecanismo de busca. - + Searching... Buscando... @@ -717,7 +717,7 @@ Copyright ©2006 por Christophe Dumez<br> URL do arquivo torrent: - + Are you sure you want to quit? -- qBittorrent Tem certeza que deseja sair? -- qBittorrent @@ -737,7 +737,7 @@ Copyright ©2006 por Christophe Dumez<br> Erro durante busca... - + KiB/s KiB/s @@ -752,22 +752,22 @@ Copyright ©2006 por Christophe Dumez<br> Parado - + Search is finished Busca concluída - + An error occured during search... Um erro ocorreu durante a busca... - + Search aborted Busca abortada - + Search returned no results A busca não retornou resultados @@ -777,12 +777,12 @@ Copyright ©2006 por Christophe Dumez<br> Busca concluída - + Search plugin update -- qBittorrent Atualização do plugin de busca -- qBittorrent - + Search plugin can be updated, do you want to update it? Changelog: @@ -792,146 +792,166 @@ Changelog: Changelog: - + Sorry, update server is temporarily unavailable. Servidor para atualizações está temporariamente indisponível. - + Your search plugin is already up to date. Seu plugin de busca já está atualizado. - + Results Resultados - + Name Nome - + Size Tamanho - + Progress Progresso - + DL Speed Velocidade de download - + UP Speed Velocidade de Upload - + Status Status - + ETA ETA - + Seeders - + Leechers Leechers - + Search engine - + Stalled state of a torrent whose DL Speed is 0 Parado - + Paused - + Preview process already running - + There is already another preview process running. Please close the other one first. - + Couldn't download Couldn't download <file> - + reason: Reason why the download failed - + Downloading Example: Downloading www.example.com/test.torrent Baixando - + Please wait... - + Transfers - + Download finished - + has finished downloading. <filename> has finished downloading. concluiu o download. - + Search Engine Mecanismo de Busca - + Are you sure you want to quit qBittorrent? - + Are you sure you want to delete the selected item(s) in download list and in hard drive? + + + Seeds/Leechs + + + + + I/O Error + Erro de Entrada ou Saída + + + + An error occured when trying to read or write + + + + + The disk is probably full, download has been paused + + MainWindow @@ -986,74 +1006,74 @@ Please close the other one first. ETA - + &Options &Opções - + &Edit &Editar - + &File &Arquivo - + &Help &Ajuda - + Open Abrir - + Exit Sair - + Preferences Preferências - + About Sobre - + Start Iniciar - + Pause Pausar - + Delete Apagar - + Pause All Pausar todos - + Start All Iniciar todos Documentation - Documentação + Documentação @@ -1061,7 +1081,7 @@ Please close the other one first. Apagar todos - + Torrent Properties Propriedades do Torrent @@ -1126,7 +1146,7 @@ Please close the other one first. Mecanismo de Busca - + Download from URL Baixar da URL @@ -1146,7 +1166,7 @@ Please close the other one first. KiB/s - + Create torrent Criar torrente @@ -1171,20 +1191,30 @@ Please close the other one first. - + Preview file - + Clear log - + Delete Permanently + + + Visit website + + + + + Report a bug + + PropListDelegate @@ -1543,66 +1573,66 @@ Please close the other one first. misc - + B bytes B - + KiB kibibytes (1024 bytes) Kib - + MiB mebibytes (1024 kibibytes) MiB - + GiB gibibytes (1024 mibibytes) GiB - + TiB tebibytes (1024 gibibytes) TiB - + m minutes m - + h hours h - + Unknown Desconhecido - + h hours h - + d days d - + Unknown Unknown (size) Desconhecido diff --git a/src/lang/qbittorrent_ro.qm b/src/lang/qbittorrent_ro.qm index 5b695f6fa..ed5e99467 100644 Binary files a/src/lang/qbittorrent_ro.qm and b/src/lang/qbittorrent_ro.qm differ diff --git a/src/lang/qbittorrent_ro.ts b/src/lang/qbittorrent_ro.ts index c716180b5..3bc275f2b 100644 --- a/src/lang/qbittorrent_ro.ts +++ b/src/lang/qbittorrent_ro.ts @@ -112,7 +112,7 @@ Copyright © 2006 by Christophe Dumez<br> DLListDelegate - + KiB/s KiB/s @@ -478,7 +478,7 @@ Copyright © 2006 by Christophe Dumez<br> GUI - + Open Torrent Files Deschide Fişiere Torrent @@ -488,7 +488,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. @@ -498,17 +498,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? @@ -523,22 +523,22 @@ Copyright © 2006 by Christophe Dumez<br> început - + Finished Finişat - + Checking... Verificare... - + Connecting... Conectare... - + Downloading... Downloading... @@ -548,12 +548,12 @@ Copyright © 2006 by Christophe Dumez<br> Lista Download curăţită. - + All Downloads Paused. Toate descărcările sunt Pausate. - + All Downloads Resumed. Toate descărcările sunt Resumate. @@ -563,71 +563,71 @@ Copyright © 2006 by Christophe Dumez<br> DL viteză: - + started. început. - + UP Speed: UP viteză: - + Couldn't create the directory: Nu pot crea directoriul: - + Torrent Files Fişiere Torrent - + already in download list. <file> already in download list. deacum în lista download. - + added to download list. adăugat la download list. - + resumed. (fast resume) resumat.(resumare rapidă) - + Unable to decode torrent file: Nu pot decoda fişierul torrent: - + removed. <file> removed. şters. - + paused. <file> paused. pausă. - + resumed. <file> resumed. resumat. - + Listening on port: Ascult portul: - + qBittorrent qBittorrent @@ -637,67 +637,67 @@ Copyright © 2006 by Christophe Dumez<br> qBittorrent - + Are you sure? -- qBittorrent Sunteţi siguri? -- qBittorrent - + <b>qBittorrent</b><br>DL Speed: <b>qBittorrent</b><br>DL viteză: - + <b>Connection Status:</b><br>Online <b>Starea conectării:</b><br>Online - + <b>Connection Status:</b><br>Firewalled?<br><i>No incoming connections...</i> <b>Starea conectării:</b><br>Firewalled?<br><i>Nu sunt conectări externe...</i> - + <b>Connection Status:</b><br>Offline<br><i>No peers found...</i> <b>Starea conectării:</b><br>Offline<br><i>Nu sunt găsiţi peers...</i> - + has finished downloading. am terminat descărcarea. - + Couldn't listen on any of the given ports. Nu pot asculta pe orice port dat. - + None Nimic - + Empty search pattern Şablonul de căutat este vid - + Please type a search pattern first Vă rugăm să completaţi şablonul de căutare - + No seach engine selected Nu aţi selectat motorul de căutare - + You must select at least one search engine. Trebuie să selectaţi cel puţin un motor de căutare. - + Searching... Căutare... @@ -722,7 +722,7 @@ Copyright © 2006 by Christophe Dumez<br> URL către fişierul Torrent: - + Are you sure you want to quit? -- qBittorrent Sunteţi siguri să ieşiţi? -- qBittorrent @@ -742,7 +742,7 @@ Copyright © 2006 by Christophe Dumez<br> Eroare în timpul căutării... - + KiB/s KiB/s @@ -757,22 +757,22 @@ Copyright © 2006 by Christophe Dumez<br> Oprit - + Search is finished Cautarea este terminata - + An error occured during search... Eroare în timpul căutării... - + Search aborted Cautarea abordată - + Search returned no results Cautarea nu a returnat rezultate @@ -782,12 +782,12 @@ Copyright © 2006 by Christophe Dumez<br> Cautarea terminata - + Search plugin update -- qBittorrent Cautarea plugin înoire -- qBittorent - + Search plugin can be updated, do you want to update it? Changelog: @@ -798,147 +798,167 @@ Changelog: - + Sorry, update server is temporarily unavailable. Ne cerem ertare, serverul este temporar inaccesibil. - + Your search plugin is already up to date. Plugin-ul cautat este de acum înnoit. - + Results Rezultate - + Name Nume - + Size Capacitate - + Progress Progress - + DL Speed Viteză DL - + UP Speed Viteză UP - + Status Stare - + ETA ETA - + Seeders Seederi - + Leechers Leecheri - + Search engine Motorul de căutare - + Stalled state of a torrent whose DL Speed is 0 Oprit - + Paused Pauzat - + Preview process already running Procesul de preview de acum este pornit - + There is already another preview process running. Please close the other one first. De acum alt proces de preview este pornit. Vă rugăm să-l opriţi. - + Couldn't download Couldn't download <file> Nu pot descărca - + reason: Reason why the download failed reason: - + Downloading Example: Downloading www.example.com/test.torrent Descărcarea - + Please wait... Vă rugăm să aşteptaţi... - + Transfers Transferuri - + Are you sure you want to quit qBittorrent? Doriti să eşiţi din qBittorrent? - + 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? - + Download finished - + has finished downloading. <filename> has finished downloading. am terminat descărcarea. - + Search Engine Motor de Căutare + + + Seeds/Leechs + + + + + I/O Error + Eroare de intrare/eşire + + + + An error occured when trying to read or write + + + + + The disk is probably full, download has been paused + + MainWindow @@ -993,74 +1013,74 @@ Vă rugăm să-l opriţi. ETA - + &Options &Opţiuni - + &Edit &Editare - + &File &Fişier - + &Help &Ajutor - + Open Deschide - + Exit Esire - + Preferences Preferinţe - + About Despre - + Start Start - + Pause Pauză - + Delete Şterge - + Pause All Pauză Toţi - + Start All Start Toţi Documentation - Documentaţie + Documentaţie @@ -1068,7 +1088,7 @@ Vă rugăm să-l opriţi. Şterge Toţi - + Torrent Properties Proprietăţile Torrentului @@ -1133,7 +1153,7 @@ Vă rugăm să-l opriţi. Motor de Căutare - + Download from URL Descarcă din URL @@ -1153,7 +1173,7 @@ Vă rugăm să-l opriţi. KiB/s - + Create torrent Crează torrent @@ -1178,20 +1198,30 @@ Vă rugăm să-l opriţi. Transferuri - + Preview file Preview fişier - + Clear log Curăţă log-ul - + Delete Permanently Şterge permanent + + + Visit website + + + + + Report a bug + + PropListDelegate @@ -1555,66 +1585,66 @@ Vă rugăm să-l opriţi. misc - + B bytes B - + KiB kibibytes (1024 bytes) Kib - + MiB mebibytes (1024 kibibytes) Mib - + GiB gibibytes (1024 mibibytes) GiB - + TiB tebibytes (1024 gibibytes) TiB - + m minutes m - + h hours h - + Unknown Necunoscut - + h hours h - + d days d - + Unknown Unknown (size) Necunoscut diff --git a/src/lang/qbittorrent_ru.qm b/src/lang/qbittorrent_ru.qm index dc472cade..f7cc19409 100644 Binary files a/src/lang/qbittorrent_ru.qm and b/src/lang/qbittorrent_ru.qm differ diff --git a/src/lang/qbittorrent_ru.ts b/src/lang/qbittorrent_ru.ts index d8442f0a2..402f94e96 100644 --- a/src/lang/qbittorrent_ru.ts +++ b/src/lang/qbittorrent_ru.ts @@ -154,7 +154,7 @@ Copyright © 2006 by Christophe Dumez<br> DLListDelegate - + KiB/s КиБ/с @@ -535,7 +535,7 @@ Copyright © 2006 by Christophe Dumez<br> GUI - + qBittorrent qBittorrent @@ -545,7 +545,7 @@ Copyright © 2006 by Christophe Dumez<br> ::Кристоф Дюме:: Все права защищены (c) 2006 - + started. начат. @@ -565,27 +565,27 @@ Copyright © 2006 by Christophe Dumez<br> кб/с - + UP Speed: Скорость Загр.: - + Open Torrent Files Открыть файлы Torrent - + Torrent Files Файлы Torrent - + Couldn't create the directory: Невозможно создать директорию: - + already in download list. <file> already in download list. уже в списке закачек. @@ -601,27 +601,27 @@ Copyright © 2006 by Christophe Dumez<br> Неизвестно - + added to download list. добавлен в список закачек. - + resumed. (fast resume) восстановлен. (быстрое восстановление) - + Unable to decode torrent file: Невозможно декодировать torrent файл: - + This file is either corrupted or this isn't a torrent. Этот файл либо поврежден, либо не torrent типа. - + Are you sure? -- qBittorrent Вы уверены? -- qBittorrent @@ -631,12 +631,12 @@ Copyright © 2006 by Christophe Dumez<br> Вы уверены что хотите удалить все файлы из списка закачек? - + &Yes &Да - + &No &Нет @@ -646,18 +646,18 @@ Copyright © 2006 by Christophe Dumez<br> Список закачек очищен. - + Are you sure you want to delete the selected item(s) in download list? Вы уверены что хотите удалить выделенные пункты из списка закачек? - + removed. <file> removed. удален. - + Listening on port: Прослушивание порта: @@ -667,7 +667,7 @@ Copyright © 2006 by Christophe Dumez<br> приостановлено - + All Downloads Paused. Все Закачки приостановлены. @@ -677,49 +677,49 @@ Copyright © 2006 by Christophe Dumez<br> начато - + All Downloads Resumed. Все Закачки Восстановлены. - + paused. <file> paused. приостановлен. - + resumed. <file> resumed. восстановлен. - + <b>Connection Status:</b><br>Online <b>Состояние соединения:</b><br>В сети - + <b>Connection Status:</b><br>Firewalled?<br><i>No incoming connections...</i> <b>Состояние соединения:</b><br>Работает файервол?<br><i>Нет входящих соединений...</i> - + <b>Connection Status:</b><br>Offline<br><i>No peers found...</i> <b>Состояние соединения:</b><br>Отключено?<br><i>Пэры не найдены...</i> - + has finished downloading. скачивание завершено. - + Couldn't listen on any of the given ports. Невозможно прослушать ни один из заданных портов. - + <b>qBittorrent</b><br>DL Speed: <b>qBittorrent</b><br>Скорость скач.: @@ -730,22 +730,22 @@ Copyright © 2006 by Christophe Dumez<br> - + Finished Закончено - + Checking... Проверка... - + Connecting... Подключение... - + Downloading... Скачивание... @@ -768,27 +768,27 @@ Copyright © 2006 by Christophe Dumez<br> д - + None Нет - + Empty search pattern Закончено - + Please type a search pattern first Пожалуйста, наберите сначала шаблон поиска - + No seach engine selected Не выбрано ни одного поискового двигателя - + You must select at least one search engine. Вы должны выбрать по меньшей мере один поисковый двигатель. @@ -798,7 +798,7 @@ Copyright © 2006 by Christophe Dumez<br> Невозможно создать плагин поиска. - + Searching... Поиск... @@ -818,9 +818,9 @@ Copyright © 2006 by Christophe Dumez<br> кб/с - + I/O Error - Ошибка ввода/вывода + Ошибка ввода/вывода @@ -833,7 +833,7 @@ Copyright © 2006 by Christophe Dumez<br> URL Torrent файла: - + Are you sure you want to quit? -- qBittorrent Вы уверены, что хотите выйти? -- qBittorrent @@ -843,7 +843,7 @@ Copyright © 2006 by Christophe Dumez<br> Вы уверены, что хотите выйти из qbittorrent? - + KiB/s КиБ/с @@ -858,22 +858,22 @@ Copyright © 2006 by Christophe Dumez<br> Заглохло - + Search is finished Поиск завершен - + An error occured during search... Во время поиска произошла ошибка... - + Search aborted Поиск прерван - + Search returned no results Поиск не дал результатов @@ -883,12 +883,12 @@ Copyright © 2006 by Christophe Dumez<br> Поиск завершен - + Search plugin update -- qBittorrent Обновление поискового плагина -- qBittorrent - + Search plugin can be updated, do you want to update it? Changelog: @@ -899,147 +899,162 @@ Changelog: - + Sorry, update server is temporarily unavailable. Извините, сервер обновлений временно недоступен. - + Your search plugin is already up to date. Ваш поисковый плагин не нуждается в обновлении. - + Results Результаты - + Name Имя - + Size Размер - + Progress Прогресс - + DL Speed Скорость скач - + UP Speed Скорость загр - + Status Статус - + ETA ETA - + Seeders Сидеры - + Leechers Личеры - + Search engine Поисковои сэрвис - + Stalled state of a torrent whose DL Speed is 0 Заглохло - + Paused Пауза - + Preview process already running Процесс предпросмотра уже работает - + There is already another preview process running. Please close the other one first. Есть уже другой процесс предпросмотра. Пожалуйста закроите процесс. - + Couldn't download Couldn't download <file> Не могу загрузить - + reason: Reason why the download failed причина: - + Downloading Example: Downloading www.example.com/test.torrent Скачивание - + Please wait... Пожалуйста подождите... - + Transfers Передачи - + Are you sure you want to quit qBittorrent? Вы действительно хотите покинуть qBittorrent? - + Are you sure you want to delete the selected item(s) in download list and in hard drive? Вы действительно хотите удалить выбранный(-е) элемент(ы) из списка скачек и с жесткого диска? - + Download finished - + has finished downloading. <filename> has finished downloading. скачивание завершено. - + Search Engine Поисковик + + + Seeds/Leechs + + + + + An error occured when trying to read or write + + + + + The disk is probably full, download has been paused + + MainWindow @@ -1099,74 +1114,74 @@ Please close the other one first. ETA - + &Options &Настройки - + &Edit &Изменить - + &File &Файл - + &Help &Помощь - + Open Открыть - + Exit Выход - + Preferences Предпочтения - + About О программе - + Start Начать - + Pause Приостановить - + Delete Удалить - + Pause All Приостановить Все - + Start All Начать Все Documentation - Документация + Документация @@ -1174,7 +1189,7 @@ Please close the other one first. Удалить Все - + Torrent Properties Свойства потока @@ -1249,7 +1264,7 @@ Please close the other one first. Очистить - + Download from URL Закачать из URL @@ -1259,7 +1274,7 @@ Please close the other one first. КиБ/с - + Create torrent Создать поток @@ -1284,20 +1299,30 @@ Please close the other one first. Передачи - + Preview file Фаил предпросмотра - + Clear log Очистить лог - + Delete Permanently Удалить навсегда + + + Visit website + + + + + Report a bug + + PropListDelegate @@ -1651,43 +1676,43 @@ Please close the other one first. misc - + B bytes Б - + KiB kibibytes (1024 bytes) КиБ - + MiB mebibytes (1024 kibibytes) МиБ - + GiB gibibytes (1024 mibibytes) ГиБ - + TiB tebibytes (1024 gibibytes) ТиБ - + m minutes м - + h hours ч @@ -1699,24 +1724,24 @@ Please close the other one first. д - + Unknown Неизвестно - + h hours ч - + d days д - + Unknown Unknown (size) Неизвестно diff --git a/src/lang/qbittorrent_sk.qm b/src/lang/qbittorrent_sk.qm index 9f758c8a6..c69afed97 100644 Binary files a/src/lang/qbittorrent_sk.qm and b/src/lang/qbittorrent_sk.qm differ diff --git a/src/lang/qbittorrent_sk.ts b/src/lang/qbittorrent_sk.ts index 9f831701b..67d7b5898 100644 --- a/src/lang/qbittorrent_sk.ts +++ b/src/lang/qbittorrent_sk.ts @@ -109,7 +109,7 @@ Copyright © 2006 by Christophe Dumez<br> DLListDelegate - + KiB/s KiB/s @@ -485,7 +485,7 @@ Copyright © 2006 by Christophe Dumez<br> GUI - + Open Torrent Files Otvoriť torrent súbory @@ -495,7 +495,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. @@ -505,17 +505,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? @@ -530,22 +530,22 @@ Copyright © 2006 by Christophe Dumez<br> spusten - + Finished hotovo - + Checking... kontroluje sa... - + Connecting... pripája sa... - + Downloading... sťahuje sa... @@ -555,12 +555,12 @@ Copyright © 2006 by Christophe Dumez<br> Zoznam sťahovanch vyčistený. - + All Downloads Paused. Všetky sťahovania pozastavené. - + All Downloads Resumed. Všetky sťahovania znovu spustené. @@ -570,22 +570,22 @@ Copyright © 2006 by Christophe Dumez<br> Rchlos sahovania: - + started. spustené. - + UP Speed: Rýchlosť nahrávania: - + Couldn't create the directory: Nebolo možné vytvoriť adresár: - + Torrent Files Torrent súbory @@ -595,17 +595,17 @@ Copyright © 2006 by Christophe Dumez<br> u sa nachza v zozname sahovanch. - + added to download list. pridaný do zoznamu sťahovaných. - + resumed. (fast resume) znovu spustené. (rýchle znovuspustenie) - + Unable to decode torrent file: Nemohol som dekódovať torrent súbor: @@ -625,12 +625,12 @@ Copyright © 2006 by Christophe Dumez<br> znovu spusten. - + Listening on port: Počúvam na porte: - + qBittorrent qBittorrent @@ -640,67 +640,67 @@ Copyright © 2006 by Christophe Dumez<br> qBittorrent - + Are you sure? -- qBittorrent Ste si istý? -- qBittorrent - + <b>qBittorrent</b><br>DL Speed: <b>qBittorrent</b><br>DL Speed: - + <b>Connection Status:</b><br>Online <b>Stav spojenia:</b><br>Online - + <b>Connection Status:</b><br>Firewalled?<br><i>No incoming connections...</i> <b>Stav spojenia:</b><br>Za firewallom?<br><i>Žiadne prichzajúce spojenia...</i> - + <b>Connection Status:</b><br>Offline<br><i>No peers found...</i> <b>Stav spojenia:</b><br>Offline<br><i>Neboli nájdení rovesníci...</i> - + has finished downloading. skončilo sťahovanie. - + Couldn't listen on any of the given ports. Nepodarilo sa počúvať na žiadnom zo zadaných portov. - + None Žiadny - + Empty search pattern Prázdny vyhľadávací vzor - + Please type a search pattern first Prosím, najprv zadajte vyhľadávací vzor - + No seach engine selected Nebol zvolený vyhľadávač - + You must select at least one search engine. Musíte zvoliť aspoň jeden vyhľadávač. - + Searching... Hľadá sa... @@ -725,7 +725,7 @@ Copyright © 2006 by Christophe Dumez<br> URL torrent súboru: - + Are you sure you want to quit? -- qBittorrent Určite chcete ukončiť program? -- qBittorrent @@ -745,7 +745,7 @@ Copyright © 2006 by Christophe Dumez<br> Chyba pos hadania... - + KiB/s KiB/s @@ -760,56 +760,56 @@ Copyright © 2006 by Christophe Dumez<br> Zastaven - + removed. <file> removed. odstránený. - + already in download list. <file> already in download list. už sa nacháza v zozname sťahovaných. - + paused. <file> paused. pozastavené. - + resumed. <file> resumed. znovu spustené. - + Search is finished Vyhľadávanie skočilo - + An error occured during search... Počas vyhľadávania sa vyskytla chyba... - + Search aborted Vyhľadávanie preušené - + Search returned no results Vyhľadávanie nevrátilo žiadne výsledky - + Search plugin update -- qBittorrent Aktualizácia zásuvného modulu vyhľadávania -- qBittorrent - + Search plugin can be updated, do you want to update it? Changelog: @@ -819,147 +819,167 @@ Changelog: Záznam zmien: - + Sorry, update server is temporarily unavailable. Je mi ľúto, aktualizačný server je dočasne nedostupný. - + Your search plugin is already up to date. Váš vyhľadávací zásuvný modul je aktuálny. - + Results Výsledky - + Name Názov - + Size Veľkosť - + Progress Priebeh - + DL Speed rýchlosť sťahovania - + UP Speed rýchlosť nahrávania - + Status Status - + ETA Odhadovaný čas - + Seeders Seederi - + Leechers Leecheri - + Search engine Vyhľadávač - + Stalled state of a torrent whose DL Speed is 0 Bez pohybu - + Paused Pozastavený - + Transfers Prenosy - + Preview process already running Proces náhľadu už beží - + There is already another preview process running. Please close the other one first. Iný proces náhľadu už beží. Najskôr ho prosím zatvorte. - + Couldn't download Couldn't download <file> Nemohol som stiahnuť - + reason: Reason why the download failed dôvod: - + Downloading Example: Downloading www.example.com/test.torrent Sťahujem - + Please wait... Čakajte prosím... - + Are you sure you want to quit qBittorrent? Ste si istý, že chcete zatvoriť qBittorrent? - + 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? - + Download finished - + has finished downloading. <filename> has finished downloading. skončilo sťahovanie. - + Search Engine Vyhad + + + Seeds/Leechs + + + + + I/O Error + V/V Chyba + + + + An error occured when trying to read or write + + + + + The disk is probably full, download has been paused + + MainWindow @@ -1014,74 +1034,74 @@ Najskôr ho prosím zatvorte. Odhadovan s - + &Options &Nastavenia - + &Edit &Úpravy - + &File &Súbor - + &Help &Pomocník - + Open Otvoriť - + Exit Ukončiť - + Preferences Nastavenia - + About O aplikácii - + Start Spustiť - + Pause Pozastaviť - + Delete Zmazať - + Pause All Pozastaviť všetky - + Start All Spustiť všetky Documentation - Dokumentácia + Dokumentácia @@ -1089,7 +1109,7 @@ Najskôr ho prosím zatvorte. Zmazať všetky - + Torrent Properties Vlastnosti torrentu @@ -1154,7 +1174,7 @@ Najskôr ho prosím zatvorte. Vyhad - + Download from URL Stiahnuť z URL @@ -1174,7 +1194,7 @@ Najskôr ho prosím zatvorte. KiB/s - + Create torrent Vytvoriť torrent @@ -1194,20 +1214,30 @@ Najskôr ho prosím zatvorte. Prenosy - + Preview file Náhľad súboru - + Clear log Vyčistiť záznam - + Delete Permanently Trvalo zmazať + + + Visit website + + + + + Report a bug + + PropListDelegate @@ -1611,7 +1641,7 @@ Najskôr ho prosím zatvorte. h - + Unknown Neznámy @@ -1626,61 +1656,61 @@ Najskôr ho prosím zatvorte. d - + B bytes B - + KiB kibibytes (1024 bytes) KiB - + MiB mebibytes (1024 kibibytes) MiB - + GiB gibibytes (1024 mibibytes) GiB - + TiB tebibytes (1024 gibibytes) TiB - + m minutes m - + h hours h - + d days d - + h hours h - + Unknown Unknown (size) Neznáma diff --git a/src/lang/qbittorrent_sv.qm b/src/lang/qbittorrent_sv.qm index f8991b2d4..7cf7c8324 100644 Binary files a/src/lang/qbittorrent_sv.qm and b/src/lang/qbittorrent_sv.qm differ diff --git a/src/lang/qbittorrent_sv.ts b/src/lang/qbittorrent_sv.ts index b73c07c05..398583669 100644 --- a/src/lang/qbittorrent_sv.ts +++ b/src/lang/qbittorrent_sv.ts @@ -120,7 +120,7 @@ Copyright © 2006 by Christophe Dumez<br> DLListDelegate - + KiB/s KiB/s @@ -441,231 +441,231 @@ Copyright © 2006 by Christophe Dumez<br> GUI - + Open Torrent Files Ö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? - + Finished Färdig - + Checking... Kontrollerar... - + Connecting... Ansluter... - + Downloading... Hämtar... - + All Downloads Paused. Alla hämtningar är pausade. - + All Downloads Resumed. Alla hämtningar har återupptagits. - + started. startad. - + UP Speed: Sändningshastighet: - + Couldn't create the directory: Kunde inte skapa katalogen: - + Torrent Files Torrent-filer - + already in download list. <file> already in download list. redan i hämtningslistan. - + added to download list. lades till i hämtningslistan. - + resumed. (fast resume) återupptagen. (snabbt läge) - + Unable to decode torrent file: Kunde inte avkoda torrent-fil: - + removed. <file> removed. borttagen. - + paused. <file> paused. pausad. - + resumed. <file> resumed. återupptagen. - + Listening on port: Lyssnar på port: - + qBittorrent qBittorrent - + Are you sure? -- qBittorrent Är du säker? -- qBittorrent - + <b>qBittorrent</b><br>DL Speed: <b>qBittorrent</b><br>Hämtningshastighet: - + <b>Connection Status:</b><br>Online <b>Anslutningsstatus:</b><br>Ansluten - + <b>Connection Status:</b><br>Firewalled?<br><i>No incoming connections...</i> <b>Anslutningsstatus:</b><br>Bakom brandvägg?<br><i>Inga inkommande anslutningar...</i> - + <b>Connection Status:</b><br>Offline<br><i>No peers found...</i> <b>Anslutningsstatus:</b><br>Frånkopplad<br><i>Inga peers hittades...</i> - + has finished downloading. har hämtats färdigt. - + Couldn't listen on any of the given ports. Kunde inte lyssna på någon av de angivna portarna. - + None Ingen - + Empty search pattern Tomt sökmönster - + Please type a search pattern first Ange ett sökmönster först - + No seach engine selected Ingen sökmotor vald - + You must select at least one search engine. Du måste välja åtminstone en sökmotor. - + Searching... Söker... - + Are you sure you want to quit? -- qBittorrent Är du säker på att du vill avsluta? -- qBittorrent - + KiB/s KiB/s - + Search is finished Sökningen är färdig - + An error occured during search... Ett fel inträffade under sökningen... - + Search aborted Sökningen avbröts - + Search returned no results Sökningen returnerade inga träffar - + Search plugin update -- qBittorrent Uppdatering av sökinstick -- qBittorrent - + Search plugin can be updated, do you want to update it? Changelog: @@ -675,147 +675,167 @@ Changelog: Ändringslogg: - + Sorry, update server is temporarily unavailable. Tyvärr, uppdateringsservern är inte tillgänglig för tillfället. - + Your search plugin is already up to date. Din sökinsticksmodul är redan uppdaterad. - + Results Resultat - + Name Namn - + Size Storlek - + Progress Förlopp - + DL Speed Hämtningshastighet - + UP Speed Sändningshastighet - + Status Status - + ETA Klar om - + Seeders Distributörer - + Leechers Reciprokörer - + Search engine Sökmotor - + Stalled state of a torrent whose DL Speed is 0 Försenad - + Paused Pausad - + Preview process already running Förhandsvisningsprocess kör redan - + There is already another preview process running. Please close the other one first. Det finns redan en annan förhandsvisningsprocess. Stäng den först. - + Couldn't download Couldn't download <file> Kunde inte hämta - + reason: Reason why the download failed anledning: - + Downloading Example: Downloading www.example.com/test.torrent Hämtar - + Please wait... Var god vänta... - + Transfers Överföringar - + Are you sure you want to quit qBittorrent? Är du säker på att du vill avsluta qBittorrent? - + 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? - + Download finished - + has finished downloading. <filename> has finished downloading. har hämtats färdigt. - + Search Engine + + + Seeds/Leechs + + + + + I/O Error + In-/Ut-fel + + + + An error occured when trying to read or write + + + + + The disk is probably full, download has been paused + + MainWindow @@ -835,77 +855,77 @@ Stäng den först. Total sändningshastighet: - + &Options A&lternativ - + &Edit R&edigera - + &File &Arkiv - + &Help &Hjälp - + Open Öppna - + Exit Avsluta - + Preferences Inställningar - + About Om - + Start Start - + Pause Paus - + Delete Ta bort - + Pause All Pausa alla - + Start All Starta alla Documentation - Dokumentation + Dokumentation - + Torrent Properties Egenskaper för torrent @@ -945,7 +965,7 @@ Stäng den först. Stopp - + Download from URL Hämta från url @@ -965,7 +985,7 @@ Stäng den först. KiB/s - + Create torrent Skapa torrent @@ -985,20 +1005,30 @@ Stäng den först. Överföringar - + Preview file Förhandsvisa fil - + Clear log Töm logg - + Delete Permanently Ta bort permanent + + + Visit website + + + + + Report a bug + + PropListDelegate @@ -1319,66 +1349,66 @@ Stäng den först. misc - + B bytes B - + KiB kibibytes (1024 bytes) KiB - + MiB mebibytes (1024 kibibytes) MiB - + GiB gibibytes (1024 mibibytes) GiB - + TiB tebibytes (1024 gibibytes) TiB - + m minutes m - + h hours h - + Unknown Okänd - + h hours h - + d days d - + Unknown Unknown (size) Okänd diff --git a/src/lang/qbittorrent_tr.qm b/src/lang/qbittorrent_tr.qm index ff567c8ad..6cd88cc5b 100644 Binary files a/src/lang/qbittorrent_tr.qm and b/src/lang/qbittorrent_tr.qm differ diff --git a/src/lang/qbittorrent_tr.ts b/src/lang/qbittorrent_tr.ts index efca8cc1b..9a8ed5e65 100644 --- a/src/lang/qbittorrent_tr.ts +++ b/src/lang/qbittorrent_tr.ts @@ -180,7 +180,7 @@ Telif Hakkı © 2006 Christophe Dumez<br> DLListDelegate - + KiB/s KiB/s @@ -601,7 +601,7 @@ Telif Hakkı © 2006 Christophe Dumez<br> GUI - + Open Torrent Files Torrent Dosyasını Aç @@ -616,7 +616,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. @@ -626,17 +626,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? @@ -656,22 +656,22 @@ Telif Hakkı © 2006 Christophe Dumez<br> kb/s - + Finished Tamamlandı - + Checking... Kontrol ediliyor... - + Connecting... Bağlanılıyor... - + Downloading... Download ediliyor... @@ -681,12 +681,12 @@ Telif Hakkı © 2006 Christophe Dumez<br> Download listesi temizlendi. - + All Downloads Paused. Bütün Downloadlar Duraklatıldı. - + All Downloads Resumed. Bütün Downloadlar Devam Ettirildi. @@ -696,60 +696,60 @@ Telif Hakkı © 2006 Christophe Dumez<br> DL Hızı: - + started. başlatıldı. - + UP Speed: UP Hızı: - + Couldn't create the directory: Klasör yaratılamıyor: - + Torrent Files Torrent Dosyaları - + already in download list. <file> already in download list. zaten download listesinde bulunuyor. - + added to download list. download listesine eklendi. - + resumed. (fast resume) devam ettirildi. (fast resume) - + Unable to decode torrent file: Torrent dosyası çözülemiyor: - + removed. <file> removed. silindi. - + paused. <file> paused. duraklatıldı. - + resumed. <file> resumed. devam ettirildi. @@ -773,12 +773,12 @@ Telif Hakkı © 2006 Christophe Dumez<br> g - + Listening on port: Port dinleniyor: - + qBittorrent qBittorrent @@ -788,12 +788,12 @@ Telif Hakkı © 2006 Christophe Dumez<br> qBittorrent - + Are you sure? -- qBittorrent Emin misiniz? -- qBittorrent - + <b>qBittorrent</b><br>DL Speed: <b>qBittorrent</b><br>DL Hızı: @@ -803,17 +803,17 @@ Telif Hakkı © 2006 Christophe Dumez<br> .: Cristophe Dumez tarafından hazırlanmıştır :: Telif Hakkı (c) 2006 - + <b>Connection Status:</b><br>Online <b>Bağlantı Durumu:</b><br> Bağlı - + <b>Connection Status:</b><br>Firewalled?<br><i>No incoming connections...</i> <b>Bağlantı Durumu:</b><br>Güvenlik Duvarınız mı açık?<br><i>Gelen bağlantı yok...</i> - + <b>Connection Status:</b><br>Offline<br><i>No peers found...</i> <b>Bağlantı Durumu:</b><br>Bağlı Değil<br><i>Kullanıcı bulunamadı...</i> @@ -824,42 +824,42 @@ Telif Hakkı © 2006 Christophe Dumez<br> /s - + has finished downloading. download tamamlandı. - + Couldn't listen on any of the given ports. Verilen portların hiçbiri dinlenemedi. - + None Yok - + Empty search pattern Boş arama sorgusu - + Please type a search pattern first Lütfen önce bir arama sorgusu girin - + No seach engine selected Arama motoru seçilmedi - + You must select at least one search engine. En az bir arama motoru seçmelisiniz. - + Searching... Aranıyor... @@ -874,9 +874,9 @@ Telif Hakkı © 2006 Christophe Dumez<br> Durdu - + I/O Error - I/O Hatası + I/O Hatası @@ -919,7 +919,7 @@ Telif Hakkı © 2006 Christophe Dumez<br> Bir http download u başarısız, neden: - + Are you sure you want to quit? -- qBittorrent Çıkmak istediğinize emin misiniz? -- qBittorrent @@ -939,7 +939,7 @@ Telif Hakkı © 2006 Christophe Dumez<br> Arama yapılırken hata... - + KiB/s KiB/s @@ -954,22 +954,22 @@ Telif Hakkı © 2006 Christophe Dumez<br> Hız kaybetti - + Search is finished Arama tamamlandı - + An error occured during search... Arama yapılırken bir hata oluştu... - + Search aborted Arama iptal edildi - + Search returned no results Arama sonuç bulamadı @@ -979,12 +979,12 @@ Telif Hakkı © 2006 Christophe Dumez<br> Arama Tamamlandı - + Search plugin update -- qBittorrent Arama plugini güncellemesi -- qBittorrent - + Search plugin can be updated, do you want to update it? Changelog: @@ -995,147 +995,162 @@ Changelog: - + Sorry, update server is temporarily unavailable. Üzgünüz, güncelleme sunucusu geçici olarak servis dışı. - + Your search plugin is already up to date. Arama plugini zaten güncel durumda. - + Results Sonuçlar - + Name İsim - + Size Boyut - + Progress İlerleme - + DL Speed DL Hızı - + UP Speed UP Hızı - + Status Durum - + ETA ETA - + Seeders Seeders - + Leechers Leechers - + Search engine Arama motoru - + Stalled state of a torrent whose DL Speed is 0 Hız kaybetti - + Paused Duraklatıldı - + Preview process already running Önizleme işlemi zaten çalışıyor - + There is already another preview process running. Please close the other one first. Zaten başka bir önizleme işlemi çalışıyor. Lütfen önce diğerini kapatın. - + Couldn't download Couldn't download <file> Download edilemedi - + reason: Reason why the download failed neden: - + Downloading Example: Downloading www.example.com/test.torrent Download ediliyor - + Please wait... Lütfen bekleyin... - + Transfers Aktarımlar - + Are you sure you want to quit qBittorrent? qBittorrent ten çıkmak istediğinize emin misiniz? - + 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? - + Download finished - + has finished downloading. <filename> has finished downloading. download tamamlandı. - + Search Engine Arama Motoru + + + Seeds/Leechs + + + + + An error occured when trying to read or write + + + + + The disk is probably full, download has been paused + + MainWindow @@ -1200,74 +1215,74 @@ Lütfen önce diğerini kapatın. ETA - + &Options &Ayarlar - + &Edit D&üzen - + &File &Dosya - + &Help &Yardım - + Open - + Exit Çıkış - + Preferences Seçenekler - + About Hakkında - + Start Başlat - + Pause Duraklat - + Delete Sil - + Pause All Hepsini Duraklat - + Start All Hepsini Duraklat Documentation - Kullanım Kılavuzu + Kullanım Kılavuzu @@ -1280,7 +1295,7 @@ Lütfen önce diğerini kapatın. Hepsini Sil - + Torrent Properties Torrent Özellikleri @@ -1345,7 +1360,7 @@ Lütfen önce diğerini kapatın. Arama Motoru - + Download from URL URL Adresinden Download @@ -1365,7 +1380,7 @@ Lütfen önce diğerini kapatın. KiB/s - + Create torrent Torrent oluştur @@ -1390,20 +1405,30 @@ Lütfen önce diğerini kapatın. Aktarımlar - + Preview file Dosya önizleme - + Clear log Kaydı temizle - + Delete Permanently Kalıcı Olarak Sil + + + Visit website + + + + + Report a bug + + PropListDelegate @@ -1777,43 +1802,43 @@ Lütfen önce diğerini kapatın. misc - + B bytes B - + KiB kibibytes (1024 bytes) KiB - + MiB mebibytes (1024 kibibytes) MiB - + GiB gibibytes (1024 mibibytes) GiB - + TiB tebibytes (1024 gibibytes) TiB - + m minutes d - + h hours sa @@ -1825,24 +1850,24 @@ Lütfen önce diğerini kapatın. g - + Unknown Bilinmeyen - + h hours sa - + d days g - + Unknown Unknown (size) Bilinmeyen diff --git a/src/lang/qbittorrent_uk.qm b/src/lang/qbittorrent_uk.qm index 6732202b9..f427eee31 100644 Binary files a/src/lang/qbittorrent_uk.qm and b/src/lang/qbittorrent_uk.qm differ diff --git a/src/lang/qbittorrent_uk.ts b/src/lang/qbittorrent_uk.ts index 91f2a22fb..621ab68d2 100644 --- a/src/lang/qbittorrent_uk.ts +++ b/src/lang/qbittorrent_uk.ts @@ -154,7 +154,7 @@ Copyright © 2006 by Christophe Dumez<br> DLListDelegate - + KiB/s КіБ/с @@ -530,7 +530,7 @@ Copyright © 2006 by Christophe Dumez<br> GUI - + Open Torrent Files Відкрити Torrent-файли @@ -540,7 +540,7 @@ Copyright © 2006 by Christophe Dumez<br> Невідомо - + This file is either corrupted or this isn't a torrent. Цей файл пошкоджено, або він не є torrent-файлом. @@ -550,17 +550,17 @@ Copyright © 2006 by Christophe Dumez<br> Ви впевнені що хочете видалити всі файли зі списку завантажень? - + &Yes &Так - + &No &Ні - + Are you sure you want to delete the selected item(s) in download list? Ви впевнені що хочете видалити вибрані файли зі списку завантажень? @@ -575,22 +575,22 @@ Copyright © 2006 by Christophe Dumez<br> почато - + Finished Закінчено - + Checking... Перевіряю... - + Connecting... З'єднуюсь... - + Downloading... Завантажую... @@ -600,12 +600,12 @@ Copyright © 2006 by Christophe Dumez<br> Список завантажень очищено. - + All Downloads Paused. Всі завантаження зупинено. - + All Downloads Resumed. Всі завантаження відновлено. @@ -615,60 +615,60 @@ Copyright © 2006 by Christophe Dumez<br> DL швидкість: - + started. почато. - + UP Speed: UP швидкість: - + Couldn't create the directory: Неможливо створити директорію: - + Torrent Files Torrent файли - + already in download list. <file> already in download list. вже в списку завантажень. - + added to download list. додано до списку завантажень. - + resumed. (fast resume) відновлено. (швидке відновлення) - + Unable to decode torrent file: Неможливо декодувати torrent-файл: - + removed. <file> removed. видалено. - + paused. <file> paused. зупинено. - + resumed. <file> resumed. відновлено. @@ -692,12 +692,12 @@ Copyright © 2006 by Christophe Dumez<br> д - + Listening on port: Слухаю порт: - + qBittorrent qBittorrent @@ -707,27 +707,27 @@ Copyright © 2006 by Christophe Dumez<br> qBittorrent - + Are you sure? -- qBittorrent Ви впевнені? -- qBittorrent - + <b>qBittorrent</b><br>DL Speed: <b>qBittorrent</b><br>DL швидкість: - + <b>Connection Status:</b><br>Online <b>Статус з'єднання:</b><br>Онлайн - + <b>Connection Status:</b><br>Firewalled?<br><i>No incoming connections...</i> <b>Статус з'єднання:</b><br>Заборонено файерволом?<br><i>Немає вхідних з'єднаннь...</i> - + <b>Connection Status:</b><br>Offline<br><i>No peers found...</i> <b>Статус з'єднання:</b><br>Оффлайн<br><i>Не знайдено пірів...</i> @@ -738,42 +738,42 @@ Copyright © 2006 by Christophe Dumez<br> - + has finished downloading. завантажено. - + Couldn't listen on any of the given ports. Не можу слухати по жодному з вказаних портів. - + None Немає - + Empty search pattern Пустий шаблон пошуку - + Please type a search pattern first Будь-ласка спочатку введіть шаблон пошуку - + No seach engine selected Не вибрано пошуковика - + You must select at least one search engine. Ви повинні вибрати хоча б один пошуковик. - + Searching... Шукаю... @@ -788,9 +788,9 @@ Copyright © 2006 by Christophe Dumez<br> Зупинено - + I/O Error - Помилка I/O + Помилка I/O @@ -833,7 +833,7 @@ Copyright © 2006 by Christophe Dumez<br> http завантаження невдале, причина: - + Are you sure you want to quit? -- qBittorrent Ви впевнені що хочете вийти? -- qBittorrent @@ -853,7 +853,7 @@ Copyright © 2006 by Christophe Dumez<br> Помилка при пошуку... - + KiB/s КіБ/с @@ -868,22 +868,22 @@ Copyright © 2006 by Christophe Dumez<br> Заглохло - + Search is finished Пошук завершено - + An error occured during search... Під час пошуку сталася помилка... - + Search aborted Пошук скасовано - + Search returned no results Пошук не дав результів @@ -893,12 +893,12 @@ Copyright © 2006 by Christophe Dumez<br> Пошук завершено - + Search plugin update -- qBittorrent Оновлення пошукового плагіну -- qBittorrent - + Search plugin can be updated, do you want to update it? Changelog: @@ -909,147 +909,162 @@ Changelog: - + Sorry, update server is temporarily unavailable. Пробачте, сервер оновлень тимчасово недоступний. - + Your search plugin is already up to date. Ви вже маєте останню версію пошукового плагіну. - + Results Результати - + Name Ім'я - + Size Розмір - + Progress Прогрес - + DL Speed DL швидкість - + UP Speed UP швидкість - + Status Статус - + ETA ETA - + Seeders Сідери - + Leechers Лічери - + Search engine Пошуковик - + Stalled state of a torrent whose DL Speed is 0 Заглохло - + Paused Призупинено - + Preview process already running Процес перегляду вже запущений - + There is already another preview process running. Please close the other one first. Вже запущений інший процес перегляду. Будь-ласка, спочатку закрийте його. - + Couldn't download Couldn't download <file> Не зміг завантажити - + reason: Reason why the download failed причина: - + Downloading Example: Downloading www.example.com/test.torrent Завантажую - + Please wait... Будь-ласка, зачекайте... - + Transfers Трансфери - + Are you sure you want to quit qBittorrent? Ви впевнені, що хочете вийти з qBittorrent? - + Are you sure you want to delete the selected item(s) in download list and in hard drive? Ви впевнені, що хочете видалити вибрані завантаження зі списку та з вінчестера? - + Download finished - + has finished downloading. <filename> has finished downloading. завантажено. - + Search Engine Пошуковик + + + Seeds/Leechs + + + + + An error occured when trying to read or write + + + + + The disk is probably full, download has been paused + + MainWindow @@ -1109,74 +1124,74 @@ Please close the other one first. ETA - + &Options &Опції - + &Edit &Редагувати - + &File &Файл - + &Help &Допомога - + Open Відкрити - + Exit Вихід - + Preferences Налаштування - + About Про програму - + Start Почати - + Pause Призупинити - + Delete Видалити - + Pause All Призупинити всі - + Start All Почати всі Documentation - Документація + Документація @@ -1184,7 +1199,7 @@ Please close the other one first. Видалити всі - + Torrent Properties Властивості Torrent @@ -1249,7 +1264,7 @@ Please close the other one first. Пошуковик - + Download from URL Завантажити з URL @@ -1269,7 +1284,7 @@ Please close the other one first. КіБ/с - + Create torrent Створити torrent @@ -1294,20 +1309,30 @@ Please close the other one first. Трансфери - + Preview file Файл перегляду - + Clear log Очистити лог - + Delete Permanently Видалити назовсім + + + Visit website + + + + + Report a bug + + PropListDelegate @@ -1671,43 +1696,43 @@ Please close the other one first. misc - + B bytes Б - + KiB kibibytes (1024 bytes) КіБ - + MiB mebibytes (1024 kibibytes) МіБ - + GiB gibibytes (1024 mibibytes) ГіБ - + TiB tebibytes (1024 gibibytes) ТіБ - + m minutes хв - + h hours г @@ -1719,24 +1744,24 @@ Please close the other one first. д - + Unknown Невідомо - + h hours г - + d days д - + Unknown Unknown (size) Невідомо diff --git a/src/lang/qbittorrent_zh.qm b/src/lang/qbittorrent_zh.qm index 11d05b2de..f30b3f257 100644 Binary files a/src/lang/qbittorrent_zh.qm and b/src/lang/qbittorrent_zh.qm differ diff --git a/src/lang/qbittorrent_zh.ts b/src/lang/qbittorrent_zh.ts index ec920d68e..fbe3712ff 100644 --- a/src/lang/qbittorrent_zh.ts +++ b/src/lang/qbittorrent_zh.ts @@ -133,7 +133,7 @@ Copyright © 2006 by Christophe Dumez<br> DLListDelegate - + KiB/s KiB/s @@ -514,7 +514,7 @@ Copyright © 2006 by Christophe Dumez<br> GUI - + Open Torrent Files 打开Torrent文件 @@ -524,7 +524,7 @@ Copyright © 2006 by Christophe Dumez<br> 无效 - + This file is either corrupted or this isn't a torrent. 该文件不是torrent文件或已经损坏. @@ -534,17 +534,17 @@ Copyright © 2006 by Christophe Dumez<br> 确定删除下载列表中的所有文件? - + &Yes &是 - + &No &否 - + Are you sure you want to delete the selected item(s) in download list? 确定删除所选中的文件? @@ -559,22 +559,22 @@ Copyright © 2006 by Christophe Dumez<br> 开始 - + Finished 完成 - + Checking... 检查中... - + Connecting... 连接中... - + Downloading... 下载中... @@ -584,12 +584,12 @@ Copyright © 2006 by Christophe Dumez<br> 下载列表已清空. - + All Downloads Paused. 暂停所有下载. - + All Downloads Resumed. 重新开始所有下载. @@ -599,136 +599,136 @@ Copyright © 2006 by Christophe Dumez<br> 下载速: - + started. 已开始. - + UP Speed: 上传速: - + Couldn't create the directory: 无法创建文档: - + Torrent Files Torrent文件 - + already in download list. <file> already in download list. 该文件已存在于下载列表中. - + added to download list. 添加到下载列表. - + resumed. (fast resume) 重新开始. (快速) - + Unable to decode torrent file: 无法解码torrent文件: - + removed. <file> removed. 移除. - + paused. <file> paused. 暂停. - + resumed. <file> resumed. 重新开始. - + Listening on port: 使用端口: - + qBittorrent - + Are you sure? -- qBittorrent 确定? -- qBittorrent - + <b>qBittorrent</b><br>DL Speed: <b>qBittorrent</b><br>下载速度: - + <b>Connection Status:</b><br>Online <b>连接状态:</b><br>在线 - + <b>Connection Status:</b><br>Firewalled?<br><i>No incoming connections...</i> <b>连接状态:</b><br>有防火墙?<br><i>无对内连接...</i> - + <b>Connection Status:</b><br>Offline<br><i>No peers found...</i> <b>连接状态:</b><br>离线</br><i>无法找到任何peer...</i> - + has finished downloading. 下载完毕. - + Couldn't listen on any of the given ports. 所给端口无响应. - + None - + Empty search pattern 无关键词 - + Please type a search pattern first 请先输入关键词 - + No seach engine selected 无选中的搜索引擎 - + You must select at least one search engine. 请选择至少一个搜索引擎. - + Searching... 搜索中... @@ -743,9 +743,9 @@ Copyright © 2006 by Christophe Dumez<br> 停止 - + I/O Error - 输入/输出错误 + 输入/输出错误 @@ -778,7 +778,7 @@ Copyright © 2006 by Christophe Dumez<br> http失败原因: - + Are you sure you want to quit? -- qBittorrent 确实要退出吗? -- qBittorrent @@ -803,7 +803,7 @@ Copyright © 2006 by Christophe Dumez<br> 下载失败: - + KiB/s @@ -818,22 +818,22 @@ Copyright © 2006 by Christophe Dumez<br> 等待 - + Search is finished 搜索完毕 - + An error occured during search... 搜索中出现错误... - + Search aborted 搜索失败 - + Search returned no results 搜索无结果 @@ -843,12 +843,12 @@ Copyright © 2006 by Christophe Dumez<br> 搜索完毕 - + Search plugin update -- qBittorrent 更新搜索插件 - + Search plugin can be updated, do you want to update it? Changelog: @@ -858,147 +858,162 @@ Changelog: 更改记录: - + Sorry, update server is temporarily unavailable. 对不起,服务器暂时不可用. - + Your search plugin is already up to date. 您的搜索插件已是最新的. - + Results 结果 - + Name 名称 - + Size 大小 - + Progress 进度 - + DL Speed 下载速度 - + UP Speed 上传速度 - + Status 状态 - + ETA 剩余时间 - + Seeders 完整种子 - + Leechers 不完整种子 - + Search engine 搜索引擎 - + Stalled state of a torrent whose DL Speed is 0 等待中 - + Paused 暂停中 - + Preview process already running 预览程序已存在 - + There is already another preview process running. Please close the other one first. 另一预览程序正在运行中. 请先关闭另一程序. - + Couldn't download Couldn't download <file> 无法下载 - + reason: Reason why the download failed 原因: - + Downloading Example: Downloading www.example.com/test.torrent 下载中 - + Please wait... 请稍等... - + Transfers 传输 - + Are you sure you want to quit qBittorrent? 确实要退出qBittorrent吗? - + Are you sure you want to delete the selected item(s) in download list and in hard drive? 确定从硬盘及下载列表中删除所选中的项目? - + Download finished - + has finished downloading. <filename> has finished downloading. 下载完毕. - + Search Engine 搜索引擎 + + + Seeds/Leechs + + + + + An error occured when trying to read or write + + + + + The disk is probably full, download has been paused + + MainWindow @@ -1048,74 +1063,74 @@ Please close the other one first. 状态 - + &Options &选项 - + &Edit &编辑 - + &File &文件 - + &Help &帮助 - + Open 打开 - + Exit 退出 - + Preferences 首选项 - + About 关于 - + Start 开始 - + Pause 暂停 - + Delete 删除 - + Pause All 暂停所有 - + Start All 开始所有 Documentation - 参考资料 + 参考资料 @@ -1128,7 +1143,7 @@ Please close the other one first. 删除所有 - + Torrent Properties Torrent所有权 @@ -1193,7 +1208,7 @@ Please close the other one first. 搜索引擎 - + Download from URL 通过网址下载 @@ -1213,7 +1228,7 @@ Please close the other one first. - + Create torrent 创建torrent @@ -1238,20 +1253,30 @@ Please close the other one first. 传输 - + Preview file 预览文件 - + Clear log 清除日志 - + Delete Permanently 永久删除 + + + Visit website + + + + + Report a bug + + PropListDelegate @@ -1610,66 +1635,66 @@ Please close the other one first. misc - + B bytes - + KiB kibibytes (1024 bytes) - + MiB mebibytes (1024 kibibytes) - + GiB gibibytes (1024 mibibytes) - + TiB tebibytes (1024 gibibytes) - + m minutes 分钟 - + h hours 小时 - + Unknown 未知 - + h hours - + d days - + Unknown Unknown (size) 未知 diff --git a/src/lang/qbittorrent_zh_HK.qm b/src/lang/qbittorrent_zh_HK.qm index da07ef04e..b29260cb5 100644 Binary files a/src/lang/qbittorrent_zh_HK.qm and b/src/lang/qbittorrent_zh_HK.qm differ diff --git a/src/lang/qbittorrent_zh_HK.ts b/src/lang/qbittorrent_zh_HK.ts index 3c56dba29..b2b0ff79d 100644 --- a/src/lang/qbittorrent_zh_HK.ts +++ b/src/lang/qbittorrent_zh_HK.ts @@ -133,7 +133,7 @@ Copyright © 2006 by Christophe Dumez<br> DLListDelegate - + KiB/s kB/s @@ -509,7 +509,7 @@ Copyright © 2006 by Christophe Dumez<br> GUI - + Open Torrent Files 打開Torrent文件 @@ -519,7 +519,7 @@ Copyright © 2006 by Christophe Dumez<br> 無效 - + This file is either corrupted or this isn't a torrent. 該文件不是torrent文件或已經損壞. @@ -529,17 +529,17 @@ Copyright © 2006 by Christophe Dumez<br> 確定刪除下在列表中的所有文件? - + &Yes &是 - + &No &否 - + Are you sure you want to delete the selected item(s) in download list? 確定刪除所選中的文件? @@ -554,22 +554,22 @@ Copyright © 2006 by Christophe Dumez<br> 開始 - + Finished 完成 - + Checking... 檢查中... - + Connecting... 連接中... - + Downloading... 下載中... @@ -579,12 +579,12 @@ Copyright © 2006 by Christophe Dumez<br> 下載列表以清空. - + All Downloads Paused. 暫停所有下載. - + All Downloads Resumed. 重新開始所有下載. @@ -594,136 +594,136 @@ Copyright © 2006 by Christophe Dumez<br> 下載速度: - + started. 已開始. - + UP Speed: 上傳速度: - + Couldn't create the directory: 無法建立目錄: - + Torrent Files Torrent檔案 - + already in download list. <file> already in download list. 該文件已存在於下載列表中. - + added to download list. 增加到下載列表. - + resumed. (fast resume) 重新開始. (快速) - + Unable to decode torrent file: 無法解碼torrent文件: - + removed. <file> removed. 移除. - + paused. <file> paused. 暫停. - + resumed. <file> resumed. 重新開始. - + Listening on port: 使用端口: - + qBittorrent - + Are you sure? -- qBittorrent 確定? -- qBittorrent - + <b>qBittorrent</b><br>DL Speed: <b>qBittorrent</b><br>下載速度: - + <b>Connection Status:</b><br>Online <b>連接狀態:</b><br>在線上 - + <b>Connection Status:</b><br>Firewalled?<br><i>No incoming connections...</i> <b>連接狀態:</b><br>有防火牆?<br><i>無incoming連接...</i> - + <b>Connection Status:</b><br>Offline<br><i>No peers found...</i> <b>連接狀態:</b><br>離線<br><i>無法找到任何資源...</i> - + has finished downloading. 下載完畢. - + Couldn't listen on any of the given ports. 所給端口無回應. - + None - + Empty search pattern 無關鍵字 - + Please type a search pattern first 請輸入關鍵字 - + No seach engine selected 無選中的搜索引擎 - + You must select at least one search engine. 至少選擇一個搜索引擎. - + Searching... 搜索中... @@ -738,9 +738,9 @@ Copyright © 2006 by Christophe Dumez<br> 停止 - + I/O Error - 輸入/輸出錯誤 + 輸入/輸出錯誤 @@ -773,7 +773,7 @@ Copyright © 2006 by Christophe Dumez<br> http失敗原因: - + Are you sure you want to quit? -- qBittorrent 確定要退出嗎? -- qBittorrent @@ -788,27 +788,27 @@ Copyright © 2006 by Christophe Dumez<br> 超時 - + KiB/s - + Search is finished 搜尋結束 - + An error occured during search... 搜尋發生錯誤... - + Search aborted 搜尋中斷 - + Search returned no results 搜尋無結果 @@ -818,12 +818,12 @@ Copyright © 2006 by Christophe Dumez<br> 搜尋結束 - + Search plugin update -- qBittorrent 搜尋 plugin 更新 -- qBittorrent - + Search plugin can be updated, do you want to update it? Changelog: @@ -831,146 +831,161 @@ Changelog: 搜尋 plugin 可更新, 是否更新? - + Sorry, update server is temporarily unavailable. 抱歉, 更新伺服器暫時不能用 - + Your search plugin is already up to date. 您的搜尋 plugin 已是最新 - + Results 結果 - + Name 名稱 - + Size 大小 - + Progress 進度 - + DL Speed 下載速度 - + UP Speed 上傳速度 - + Status 狀態 - + ETA ETA - + Seeders 種子 - + Leechers 不完整種子 - + Search engine 搜尋引擎 - + Stalled state of a torrent whose DL Speed is 0 - + Paused 暫停 - + Preview process already running - + There is already another preview process running. Please close the other one first. - + Couldn't download Couldn't download <file> - + reason: Reason why the download failed - + Downloading Example: Downloading www.example.com/test.torrent - + Please wait... - + Transfers - + Download finished - + has finished downloading. <filename> has finished downloading. 下載完畢. - + Search Engine 搜索引擎 - + Are you sure you want to quit qBittorrent? - + Are you sure you want to delete the selected item(s) in download list and in hard drive? + + + Seeds/Leechs + + + + + An error occured when trying to read or write + + + + + The disk is probably full, download has been paused + + MainWindow @@ -1020,74 +1035,74 @@ Please close the other one first. 狀態 - + &Options &選項 - + &Edit &編輯 - + &File &文件 - + &Help &幫助 - + Open 打開 - + Exit 退出 - + Preferences 偏好 - + About 關於 - + Start 開始 - + Pause 暫停 - + Delete 刪除 - + Pause All 暫停全部 - + Start All 開始全部 Documentation - 參考資料 + 參考資料 @@ -1100,7 +1115,7 @@ Please close the other one first. 刪除全部 - + Torrent Properties Torrent所有權 @@ -1165,7 +1180,7 @@ Please close the other one first. 搜索引擎 - + Download from URL 通過網址下載 @@ -1185,7 +1200,7 @@ Please close the other one first. - + Create torrent 創造 torrent @@ -1205,20 +1220,30 @@ Please close the other one first. - + Preview file - + Clear log - + Delete Permanently + + + Visit website + + + + + Report a bug + + PropListDelegate @@ -1542,66 +1567,66 @@ Please close the other one first. misc - + Unknown Unknown (size) 無效 - + B bytes - + KiB kibibytes (1024 bytes) - + MiB mebibytes (1024 kibibytes) - + GiB gibibytes (1024 mibibytes) - + TiB tebibytes (1024 gibibytes) - + Unknown 無效 - + m minutes - + h hours - + d days - + h hours diff --git a/src/misc.h b/src/misc.h index ae03328a5..36cee9700 100644 --- a/src/misc.h +++ b/src/misc.h @@ -39,11 +39,14 @@ class misc : public QObject{ public: // Convert any type of variable to C++ String - template static std::string toString(const T& x){ + // convert=true will convert -1 to 0 + template static std::string toString(const T& x, bool convert=false){ std::ostringstream o; if(!(o<