From ee01c2c745d44e8871850223f30566e5494ecc1a Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Thu, 19 Aug 2010 16:30:13 +0000 Subject: [PATCH] FEATURE: Added button to password-lock the UI --- Changelog | 1 + src/GUI.cpp | 78 +++++++- src/GUI.h | 4 + src/Icons/oxygen/encrypted32.png | Bin 0 -> 1052 bytes src/bittorrent.cpp | 4 +- src/httpconnection.cpp | 2 +- src/icons.qrc | 1 + src/lang/qbittorrent_ar.ts | 328 ++++++++++++++++++------------- src/lang/qbittorrent_bg.ts | 328 ++++++++++++++++++------------- src/lang/qbittorrent_ca.ts | 328 ++++++++++++++++++------------- src/lang/qbittorrent_cs.ts | 328 ++++++++++++++++++------------- src/lang/qbittorrent_da.ts | 328 ++++++++++++++++++------------- src/lang/qbittorrent_de.ts | 328 ++++++++++++++++++------------- src/lang/qbittorrent_el.ts | 328 ++++++++++++++++++------------- src/lang/qbittorrent_en.ts | 328 ++++++++++++++++++------------- src/lang/qbittorrent_es.ts | 328 ++++++++++++++++++------------- src/lang/qbittorrent_fi.ts | 328 ++++++++++++++++++------------- src/lang/qbittorrent_fr.ts | 328 ++++++++++++++++++------------- src/lang/qbittorrent_hr.ts | 44 +++++ src/lang/qbittorrent_hu.ts | 328 ++++++++++++++++++------------- src/lang/qbittorrent_it.ts | 328 ++++++++++++++++++------------- src/lang/qbittorrent_ja.ts | 328 ++++++++++++++++++------------- src/lang/qbittorrent_ko.ts | 328 ++++++++++++++++++------------- src/lang/qbittorrent_nb.ts | 328 ++++++++++++++++++------------- src/lang/qbittorrent_nl.ts | 44 +++++ src/lang/qbittorrent_pl.ts | 44 +++++ src/lang/qbittorrent_pt.ts | 44 +++++ src/lang/qbittorrent_pt_BR.ts | 44 +++++ src/lang/qbittorrent_ro.ts | 44 +++++ src/lang/qbittorrent_ru.ts | 44 +++++ src/lang/qbittorrent_sk.ts | 44 +++++ src/lang/qbittorrent_sr.ts | 44 +++++ src/lang/qbittorrent_sv.ts | 44 +++++ src/lang/qbittorrent_tr.ts | 44 +++++ src/lang/qbittorrent_uk.ts | 44 +++++ src/lang/qbittorrent_zh.ts | 44 +++++ src/lang/qbittorrent_zh_TW.ts | 44 +++++ src/preferences.h | 23 +++ src/transferlistdelegate.h | 2 +- src/ui/mainwindow.ui | 13 ++ 40 files changed, 3819 insertions(+), 2173 deletions(-) create mode 100644 src/Icons/oxygen/encrypted32.png diff --git a/Changelog b/Changelog index 9b461242b..81355ac87 100644 --- a/Changelog +++ b/Changelog @@ -1,6 +1,7 @@ * Unreleased - Christophe Dumez - v2.4.0 - FEATURE: Added actions to "Move to top/bottom" of priority queue - FEATURE: Added Auto-Shutdown on downloads completion feature + - FEATURE: Added button to password-lock the UI - FEATURE: Added label-level Pause/Resume/Delete actions * Tue Jul 27 2010 - Christophe Dumez - v2.3.0 diff --git a/src/GUI.cpp b/src/GUI.cpp index 8fa6bd9d2..f743a03cc 100644 --- a/src/GUI.cpp +++ b/src/GUI.cpp @@ -83,7 +83,7 @@ using namespace libtorrent; // Constructor GUI::GUI(QWidget *parent, QStringList torrentCmdLine) : QMainWindow(parent), force_exit(false) { setupUi(this); - + ui_locked = Preferences::isUILocked(); setWindowTitle(tr("qBittorrent %1", "e.g: qBittorrent v0.x").arg(QString::fromUtf8(VERSION))); displaySpeedInTitle = Preferences::speedInTitleBar(); // Setting icons @@ -107,6 +107,11 @@ GUI::GUI(QWidget *parent, QStringList torrentCmdLine) : QMainWindow(parent), for actionSet_global_upload_limit->setIcon(QIcon(QString::fromUtf8(":/Icons/skin/seeding.png"))); actionSet_global_download_limit->setIcon(QIcon(QString::fromUtf8(":/Icons/skin/download.png"))); actionDocumentation->setIcon(QIcon(QString::fromUtf8(":/Icons/skin/qb_question.png"))); + actionLock_qBittorrent->setIcon(QIcon(QString::fromUtf8(":/Icons/oxygen/encrypted32.png"))); + QMenu *lockMenu = new QMenu(); + QAction *defineUiLockPasswdAct = lockMenu->addAction(tr("Set the password...")); + connect(defineUiLockPasswdAct, SIGNAL(triggered()), this, SLOT(defineUILockPassword())); + actionLock_qBittorrent->setMenu(lockMenu); prioSeparator = toolBar->insertSeparator(actionDecreasePriority); prioSeparator2 = menu_Edit->insertSeparator(actionDecreasePriority); prioSeparator->setVisible(false); @@ -160,10 +165,6 @@ GUI::GUI(QWidget *parent, QStringList torrentCmdLine) : QMainWindow(parent), for // Configure BT session according to options loadPreferences(false); - // Resume unfinished torrents - BTSession->startUpTorrents(); - // Add torrent given on command line - processParams(torrentCmdLine); // Start connection checking timer guiUpdater = new QTimer(this); @@ -204,10 +205,18 @@ GUI::GUI(QWidget *parent, QStringList torrentCmdLine) : QMainWindow(parent), for }while(transferListFilters->getStatusFilters()->verticalScrollBar()->sliderPosition() > 0); transferListFilters->getStatusFilters()->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff); - if(Preferences::startMinimized()) { - showMinimized(); + if(ui_locked) { + hide(); + } else { + if(Preferences::startMinimized()) + showMinimized(); } + // Resume unfinished torrents + BTSession->startUpTorrents(); + // Add torrent given on command line + processParams(torrentCmdLine); + qDebug("GUI Built"); #ifdef Q_WS_WIN if(!Preferences::neverCheckFileAssoc() && !Preferences::isFileAssocOk()) { @@ -288,6 +297,34 @@ GUI::~GUI() { qDebug("Exiting GUI destructor..."); } +void GUI::defineUILockPassword() { + QString old_pass_md5 = Preferences::getUILockPasswordMD5(); + if(old_pass_md5.isNull()) old_pass_md5 = ""; + bool ok = false; + QString new_clear_password = QInputDialog::getText(this, tr("Password lock"), tr("Please define the locking password:"), QLineEdit::Password, old_pass_md5, &ok); + if(ok) { + if(new_clear_password != old_pass_md5) { + Preferences::setUILockPassword(new_clear_password); + } + QMessageBox::information(this, tr("Password update"), tr("The UI lock password has been successfully updated")); + } +} + +void GUI::on_actionLock_qBittorrent_triggered() { + // Check if there is a password + if(Preferences::getUILockPasswordMD5().isEmpty()) { + // Ask for a password + bool ok = false; + QString clear_password = QInputDialog::getText(this, tr("Password lock"), tr("Please define the locking password:"), QLineEdit::Password, "", &ok); + if(!ok) return; + Preferences::setUILockPassword(clear_password); + } + // Lock the interface + ui_locked = true; + Preferences::setUILocked(true); + hide(); +} + void GUI::displayRSSTab(bool enable) { if(enable) { // RSS tab @@ -529,10 +566,32 @@ void GUI::setTabText(int index, QString text) const { tabs->setTabText(index, text); } +bool GUI::unlockUI() { + bool ok = false; + QString clear_password = QInputDialog::getText(this, tr("UI lock password"), tr("Please type the UI lock password:"), QLineEdit::Password, "", &ok); + if(!ok) return false; + QString real_pass_md5 = Preferences::getUILockPasswordMD5(); + QCryptographicHash md5(QCryptographicHash::Md5); + md5.addData(clear_password.toLocal8Bit()); + QString password_md5 = md5.result().toHex(); + if(real_pass_md5 == password_md5) { + ui_locked = false; + Preferences::setUILocked(false); + return true; + } + QMessageBox::warning(this, tr("Invalid password"), tr("The password is invalid")); + return false; +} + // Toggle Main window visibility void GUI::toggleVisibility(QSystemTrayIcon::ActivationReason e) { if(e == QSystemTrayIcon::Trigger || e == QSystemTrayIcon::DoubleClick) { if(isHidden()) { + if(ui_locked) { + // Ask for UI lock password + if(!unlockUI()) + return; + } show(); if(isMinimized()) { if(isMaximized()) { @@ -739,8 +798,8 @@ void GUI::on_actionOpen_triggered() { // Open File Open Dialog // Note: it is possible to select more than one file const QStringList pathsList = QFileDialog::getOpenFileNames(0, - tr("Open Torrent Files"), settings.value(QString::fromUtf8("MainWindowLastDir"), QDir::homePath()).toString(), - tr("Torrent Files")+QString::fromUtf8(" (*.torrent)")); + tr("Open Torrent Files"), settings.value(QString::fromUtf8("MainWindowLastDir"), QDir::homePath()).toString(), + tr("Torrent Files")+QString::fromUtf8(" (*.torrent)")); if(!pathsList.empty()) { const bool useTorrentAdditionDialog = settings.value(QString::fromUtf8("Preferences/Downloads/AdditionDialog"), true).toBool(); const uint listSize = pathsList.size(); @@ -822,6 +881,7 @@ void GUI::loadPreferences(bool configure_session) { BTSession->addConsoleMessage(tr("Options were saved successfully.")); #ifndef Q_WS_MAC const bool newSystrayIntegration = Preferences::systrayIntegration(); + actionLock_qBittorrent->setEnabled(newSystrayIntegration); if(newSystrayIntegration != (systrayIcon!=0)) { if(newSystrayIntegration) { // create the trayicon diff --git a/src/GUI.h b/src/GUI.h index 95e39f46b..919fb8420 100644 --- a/src/GUI.h +++ b/src/GUI.h @@ -98,6 +98,9 @@ protected slots: void handleDownloadFromUrlFailure(QString, QString) const; void createSystrayDelayed(); void tab_changed(int); + void on_actionLock_qBittorrent_triggered(); + void defineUILockPassword(); + bool unlockUI(); // Keyboard shortcuts void createKeyboardShortcuts(); void displayTransferTab() const; @@ -151,6 +154,7 @@ private: PropertiesWidget *properties; bool displaySpeedInTitle; bool force_exit; + bool ui_locked; // Keyboard shortcuts QShortcut *switchSearchShortcut; QShortcut *switchSearchShortcut2; diff --git a/src/Icons/oxygen/encrypted32.png b/src/Icons/oxygen/encrypted32.png new file mode 100644 index 0000000000000000000000000000000000000000..353a22ca259a4bcfda30193e8e360870d3b0c10f GIT binary patch literal 1052 zcmV+%1mpXOP)gwtX*L9!eayjqx^b|)&M^H+kP$-1h-Q5icFDEA_p99cI5|C?aYahw^(8x3?EM@;q;goQ?zN zqvyWk0+^nbUOWdVq#(j!1))& z!otEUaz4XK3=R(Zq}IdX;o*&z6sXl|^R)Z)!NCDb{4;ib!OYy;+$<@wO=S5!55RoO zA)vVTbF4Y(Iy*a`o^yVI1g)EuQleU|a&Gh|LEskc1`H~*_qfCy$NAv&MQoyGYWinlfQ~`y6lMh!kR*DIOEfE47Q#$oLdvWTe)=w*kl74*JWsUp5Zr@ZbYtw3r~<>_!>FDE0pNMs=0FU)dpq9ZZP-kCT3pK{60?7kfc+kbGn@%|7H-rw zz_E}Pjlvs(won#91N^9EkY9}`357jlBd6z(vTd6CjC12?aCTresetNbFailedAttemptsForIp(peer_ip); QString url = parser.url(); // Favicon diff --git a/src/icons.qrc b/src/icons.qrc index 55b997e28..2e146d1f0 100644 --- a/src/icons.qrc +++ b/src/icons.qrc @@ -153,6 +153,7 @@ Icons/oxygen/cookies.png Icons/oxygen/network-server.png Icons/oxygen/unsubscribe16.png + Icons/oxygen/encrypted32.png Icons/oxygen/list-add.png Icons/oxygen/edit-paste.png Icons/oxygen/folder-remote.png diff --git a/src/lang/qbittorrent_ar.ts b/src/lang/qbittorrent_ar.ts index af204b84e..20b4a8819 100644 --- a/src/lang/qbittorrent_ar.ts +++ b/src/lang/qbittorrent_ar.ts @@ -800,7 +800,7 @@ You should get this information from your Web browser preferences. GUI - + Open Torrent Files فتح ملف تورنت @@ -813,26 +813,26 @@ You should get this information from your Web browser preferences. &لا - + Torrent Files ملفات التورنت - + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - + qBittorrent is not the default application to open torrent files or Magnet links. Do you want to associate qBittorrent to torrent files and Magnet links? qBittorrent ليس البرنامج المفضل لفتح ملفات التورنت او الروابط الممغنطة هل تريد ربط qBittorrent بملفات التورنت او الروابط الممغنطة ؟ - + qBittorrent qBittorrent @@ -842,15 +842,15 @@ Do you want to associate qBittorrent to torrent files and Magnet links? qBittorrent %1 - - + + DL speed: %1 KiB/s e.g: Download speed: 10 KiB/s DL سرعة: %1 كيلو ب/ث - - + + UP speed: %1 KiB/s e.g: Upload speed: 10 KiB/s UP سرعة: %1 كيلو ب/ث @@ -860,45 +860,45 @@ Do you want to associate qBittorrent to torrent files and Magnet links? هل أنت متأكد من رغبتك في الخروج؟ - + %1 has finished downloading. e.g: xxx.avi has finished downloading. تم الانتهاء من تحميل %1. - + I/O Error i.e: Input/Output Error خطأ في I/O - + Search البحث - + RSS RSS - + Alt+1 shortcut to switch to first tab Alt+1 - + Url download error خطأ في تحميل الرابط - + Couldn't download file at url: %1, reason: %2. خطأ في تحميل الرابط: %1, السبب: %2. - + An I/O error occured for torrent %1. Reason: %2 e.g: An error occured for torrent xxx.avi. @@ -907,99 +907,146 @@ Do you want to associate qBittorrent to torrent files and Magnet links? السبب: %2 - + + Set the password... + + + + Transfers النقل - + Torrent file association الإرتباط بملف التورنت - + + + Password lock + + + + + + Please define the locking password: + + + + + Password update + + + + + The UI lock password has been successfully updated + + + + Transfers (%1) - + Download completion انتهاء التحميل - + Alt+2 shortcut to switch to third tab Alt+2 - + Ctrl+F shortcut to switch to search tab Ctrl+F - + Alt+3 shortcut to switch to fourth tab Alt+3 - + Recursive download confirmation التأكد عند التحميل تقدميا - + The torrent %1 contains torrent files, do you want to proceed with their download? الملف %1 به ملفات تورنت اخرى هل تريد التحميل؟ - - + + Yes نعم - - + + No لا - + Never - + Global Upload Speed Limit حدود سرعة الرفع العامة - + Global Download Speed Limit حدود سرعة التحميل العامة - + + UI lock password + + + + + Please type the UI lock password: + + + + + Invalid password + + + + + The password is invalid + + + + Exiting qBittorrent - + Some files are currently transferring. Are you sure you want to quit qBittorrent? توجد ملفات فعالة . هل تريد الخروج؟ - + Always - + qBittorrent %1 (Down: %2/s, Up: %3/s) %1 is qBittorrent version qBittorrent %1 (Down: %2/s, Up: %3/s) @@ -1013,7 +1060,7 @@ Are you sure you want to quit qBittorrent? استخدام السرعة المحدودة - + Options were saved successfully. تم حفظ الخيارات بنجاح. @@ -1563,17 +1610,17 @@ No further notices will be issued. - + &Add File... - + E&xit - + &Options... @@ -1606,43 +1653,43 @@ No further notices will be issued. زيارة الموقع - + Add &URL... - + Torrent &creator - + Log viewer - - + + Alternative speed limits - + Top &tool bar - + Display top tool bar - + &Speed in title bar - + Show transfer speed in title bar @@ -1659,101 +1706,112 @@ No further notices will be issued. انشاء تورنت - + &About - + &Start - + &Pause - + &Delete - + P&ause All - + S&tart All - + Visit &Website - + Preview file استعراض الملف - + Clear log مسح السجل - + Report a &bug - + Set upload limit... - + Set download limit... - + &Documentation - + Set global download limit... - + Set global upload limit... - + &Log viewer... - + Shutdown when downloads complete + + + + Lock qBittorrent + + + + + Ctrl+L + + Log Window نافذة السجل - + &RSS reader - + Search &engine @@ -1794,12 +1852,12 @@ No further notices will be issued. فتح تورنت - + Decrease priority تقليص الاهمية - + Increase priority زيادة الاهمية @@ -3928,40 +3986,40 @@ Please install it manually. TransferListWidget - + Down Speed i.e: Download speed سرعة التحميل - + Up Speed i.e: Upload speed سرعة الرفع - + ETA i.e: Estimated Time of Arrival / Time left المتبقي - + Column visibility وضوح الصف - + Start بدء - + Pause إقاف مؤقت - + Delete حذف @@ -3970,150 +4028,150 @@ Please install it manually. معاينة الملف - + Name i.e: torrent name الاسم - + Size i.e: torrent size الحجم - + Done % Done انتها - + Status Torrent status (e.g. downloading, seeding, paused) الحالة - + Seeds i.e. full sources (often untranslated) السييد - + Peers i.e. partial sources (often untranslated) البيرز - + Ratio Share ratio معدل الرفع - - + + Label الملصق - + Added On Torrent was added to transfer list on 01/01/2010 08:00 تاريخ الإضافة - + Completed On Torrent was completed on 01/01/2010 08:00 تاريخ الإنتهاء - + Down Limit i.e: Download limit حد التحميل - + Up Limit i.e: Upload limit حد الرفع - + Choose save path - + Save path creation error - + Could not create the save path - + Torrent Download Speed Limiting حد التحميل للتورنت - + Torrent Upload Speed Limiting حد الرفع للتورنت - + New Label ملصق جديد - + Label: الملصق: - + Invalid label name اسم خطأ للملسق - + Please don't use any special characters in the label name. الرجاء عدم ذكر اسماء تحتوي علي رموز غريبة في اسم الملصق. - + Rename إعادة تسمية - + New name: اسم جديد: - + Preview file... - + Limit upload rate... - + Limit download rate... - + Priority @@ -4126,36 +4184,36 @@ Please install it manually. حد معدل التحميل - + Open destination folder فتح المجلد المستهدف - + Move up i.e. move up in the queue - + Move down i.e. Move down in the queue - + Move to top i.e. Move to top of the queue - + Move to bottom i.e. Move to bottom of the queue - + Set location... @@ -4172,43 +4230,43 @@ Please install it manually. تقلليل الاهمية - + Force recheck اعادة الفحص - + Copy magnet link نسخ الرابط الممغنط - + Super seeding mode حالة الرافع القوي - + Rename... إعادة تسمية... - + Download in sequential order التحميل بتسلسل - + Download first and last piece first تحميل اول واخر قطعة - + New... New label... ملصق جديد... - + Reset Reset label إعادة الملصق @@ -5010,81 +5068,81 @@ However, those plugins were disabled. misc - + B bytes بايت ب - + KiB kibibytes (1024 bytes) كيلوبايت ك ب - + MiB mebibytes (1024 kibibytes) ميجا بايت م ب - + GiB gibibytes (1024 mibibytes) جيجا بايت ج ب - + TiB tebibytes (1024 gibibytes) تيرا بايت ت ب - + %1h %2m e.g: 3hours 5minutes - + %1d %2h e.g: 2days 10hours - + Unknown Unknown (size) غير معروف ) الحجم ) غير معروف - + qBittorrent will shutdown the computer now because all downloads are complete. - - - - + + + + Unknown غير معروف - + < 1m < 1 minute < 1 دقيقة < 1 د - + %1m e.g: 10minutes %1 د diff --git a/src/lang/qbittorrent_bg.ts b/src/lang/qbittorrent_bg.ts index d1a881933..dbc3b12e2 100644 --- a/src/lang/qbittorrent_bg.ts +++ b/src/lang/qbittorrent_bg.ts @@ -2028,7 +2028,7 @@ You should get this information from your Web browser preferences. GUI - + Open Torrent Files Отвори Торент Файлове @@ -2049,61 +2049,81 @@ You should get this information from your Web browser preferences. Сигурни ли сте че искате да изтриете всички файлове от списъка за сваляне? - + Alt+2 shortcut to switch to third tab Alt+2 - + Alt+3 shortcut to switch to fourth tab Alt+3 - + Recursive download confirmation Допълнителна информация за сваляне - + The torrent %1 contains torrent files, do you want to proceed with their download? Торента %1 съдържа файлове торент, искате ли да ги свалите? - - + + Yes Да - - + + No Не - + Never Никога - + Global Upload Speed Limit Общ лимит Скорост на качване - + Global Download Speed Limit Общ лимит Скорост на сваляне - + + UI lock password + + + + + Please type the UI lock password: + + + + + Invalid password + + + + + The password is invalid + + + + Exiting qBittorrent Напускам qBittorrent - + Always Винаги @@ -2121,7 +2141,7 @@ You should get this information from your Web browser preferences. qBittorrent %1 - + qBittorrent %1 (Down: %2/s, Up: %3/s) %1 is qBittorrent version qBittorrent %1 (Сваля: %2/s, Качва: %3/s) @@ -2195,7 +2215,7 @@ You should get this information from your Web browser preferences. Не мога да създам директория: - + Torrent Files Торент Файлове @@ -2255,7 +2275,7 @@ You should get this information from your Web browser preferences. qBittorrent - + qBittorrent qBittorrent @@ -2501,7 +2521,7 @@ Please close the other one first. Моля, изчакайте... - + Transfers Трансфери @@ -2528,7 +2548,7 @@ Please close the other one first. - + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 @@ -2596,15 +2616,15 @@ Please close the other one first. qBittorrent %1 стартиран. - - + + DL speed: %1 KiB/s e.g: Download speed: 10 KiB/s DL Скорост %1 KB/с - - + + UP speed: %1 KiB/s e.g: Upload speed: 10 KiB/s UL Скорост %1 KB/с @@ -2687,13 +2707,13 @@ Please close the other one first. '%1' бе възстановен. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. '%1' завърши свалянето. - + I/O Error i.e: Input/Output Error В/И Грешка @@ -2753,19 +2773,19 @@ Please close the other one first. Намерена грешка (пълен диск?), '%1' е в пауза. - + Search Търси - + qBittorrent is not the default application to open torrent files or Magnet links. Do you want to associate qBittorrent to torrent files and Magnet links? qBittorrent не е вашето приложение по подразбиране за отваряне на файлове торент или Магнитни връзки. Искате ли да свържете qBittorrent към файлове торент и Магнитни връзки? - + RSS RSS @@ -2821,28 +2841,55 @@ Are you sure you want to quit qBittorrent? Поддръжка кодиране [ИЗКЛ] - + Alt+1 shortcut to switch to first tab Alt+1 - + Download completion Завършва свалянето - + + Set the password... + + + + Torrent file association Свързване на торент файла - + + + Password lock + + + + + + Please define the locking password: + + + + + Password update + + + + + The UI lock password has been successfully updated + + + + Transfers (%1) Трансфери (%1) - + An I/O error occured for torrent %1. Reason: %2 e.g: An error occured for torrent xxx.avi. @@ -2861,12 +2908,12 @@ Are you sure you want to quit qBittorrent? Alt+4 - + Url download error Грешка при сваляне от Url - + Couldn't download file at url: %1, reason: %2. Невъзможно сваляне на файл от url: %1, причина: %2. @@ -2889,13 +2936,13 @@ Are you sure you want to quit qBittorrent? Alt+3 - + Ctrl+F shortcut to switch to search tab Ctrl+F - + Some files are currently transferring. Are you sure you want to quit qBittorrent? Някои файлове се прехвърлят. Сигурни ли сте че искате да напуснете qBittorrent? @@ -2964,7 +3011,7 @@ Are you sure you want to quit qBittorrent? Качени - + Options were saved successfully. Опциите бяха съхранени успешно. @@ -3583,17 +3630,17 @@ No further notices will be issued. &Оглед - + &Add File... &Добави файл... - + E&xit И&зход - + &Options... &Опции... @@ -3626,22 +3673,22 @@ No further notices will be issued. Посетете уебсайт - + Add &URL... Добави &URL... - + Torrent &creator Торент &създател - + Set upload limit... Определи лимит качване... - + Set download limit... Определи лимит сваляне... @@ -3650,92 +3697,103 @@ No further notices will be issued. Документация - + &About &Относно - + &Start &Старт - + &Pause &Пауза - + &Delete &Изтрий - + P&ause All П&ауза Всички - + S&tart All С&тарт Всички - + Visit &Website Посетете &уебсайт - + Report a &bug Уведомете за &грешка - + &Documentation &Документация - + Set global download limit... Определи общ лимит сваляне... - + Set global upload limit... Определи общ лимит качване... - + &Log viewer... &Разглеждане на данни... - + Log viewer Разглеждане на данни - + Shutdown when downloads complete + + + + Lock qBittorrent + + + + + Ctrl+L + + Log Window Прозорец Влизане - - + + Alternative speed limits Други ограничения за скорост - + &RSS reader &RSS четец - + Search &engine Програма за &търсене @@ -3748,22 +3806,22 @@ No further notices will be issued. Ползвай други ограничения за скорост - + Top &tool bar Горна лента с &инструменти - + Display top tool bar Покажи горна лента с инструменти - + &Speed in title bar &Скорост в заглавната лента - + Show transfer speed in title bar Покажи скорост в заглавната лента @@ -3864,12 +3922,12 @@ No further notices will be issued. Трансфери - + Preview file Огледай файла - + Clear log Изтрий лога @@ -3910,12 +3968,12 @@ No further notices will be issued. Отвори Торент - + Decrease priority Намали предимството - + Increase priority Увеличи предимството @@ -6352,13 +6410,13 @@ Please install it manually. UP Скорост - + Down Speed i.e: Download speed Скорост Сваляне - + Up Speed i.e: Upload speed Скорост на качване @@ -6373,7 +6431,7 @@ Please install it manually. Съотношение - + ETA i.e: Estimated Time of Arrival / Time left ЕТА @@ -6387,22 +6445,22 @@ Please install it manually. &Не - + Column visibility Видимост на колона - + Start Старт - + Pause Пауза - + Delete Изтрий @@ -6423,150 +6481,150 @@ Please install it manually. Изтрий завинаги - + Name i.e: torrent name Име - + Size i.e: torrent size Размер - + Done % Done Готово - + Status Torrent status (e.g. downloading, seeding, paused) Състояние - + Seeds i.e. full sources (often untranslated) Споделящи - + Peers i.e. partial sources (often untranslated) Двойки - + Ratio Share ratio Съотношение - - + + Label Етикет - + Added On Torrent was added to transfer list on 01/01/2010 08:00 Добавен на - + Completed On Torrent was completed on 01/01/2010 08:00 Завършен на - + Down Limit i.e: Download limit Лимит сваляне - + Up Limit i.e: Upload limit Лимит качване - + Choose save path Избери път за съхранение - + Save path creation error Грешка при създаване на път за съхранение - + Could not create the save path Не мога да създам път за съхранение - + Torrent Download Speed Limiting Ограничаване Скорост на сваляне - + Torrent Upload Speed Limiting Ограничаване Скорост на качване - + New Label Нов етикет - + Label: Етикет: - + Invalid label name Невалидно име на етикет - + Please don't use any special characters in the label name. Моля, не ползвайте специални символи в името на етикета. - + Rename Преименувай - + New name: Ново име: - + Preview file... Огледай файла... - + Limit upload rate... Ограничи процент качване... - + Limit download rate... Ограничи процент сваляне... - + Priority Предимство @@ -6579,36 +6637,36 @@ Please install it manually. Ограничи процент сваляне - + Open destination folder Отвори папка получател - + Move up i.e. move up in the queue - + Move down i.e. Move down in the queue - + Move to top i.e. Move to top of the queue - + Move to bottom i.e. Move to bottom of the queue - + Set location... Определи място... @@ -6625,43 +6683,43 @@ Please install it manually. Намали предимството - + Force recheck Включени проверки за промени - + Copy magnet link Копирай връзка magnet - + Super seeding mode Режим на супер-даване - + Rename... Преименувай... - + Download in sequential order Сваляне по азбучен ред - + Download first and last piece first Свали първо и последно парче първо - + New... New label... Ново... - + Reset Reset label Нулирай @@ -7998,43 +8056,43 @@ However, those plugins were disabled. misc - + B bytes Б - + KiB kibibytes (1024 bytes) КБ - + MiB mebibytes (1024 kibibytes) МБ - + GiB gibibytes (1024 mibibytes) ГБ - + TiB tebibytes (1024 gibibytes) ТБ - + %1h %2m e.g: 3hours 5minutes %1ч%2мин - + %1d %2h e.g: 2days 10hours %1д%2ч @@ -8060,32 +8118,32 @@ However, those plugins were disabled. ч - - - - + + + + Unknown Неизвестно - + Unknown Unknown (size) Неизвестен - + qBittorrent will shutdown the computer now because all downloads are complete. - + < 1m < 1 minute < 1мин - + %1m e.g: 10minutes %1мин diff --git a/src/lang/qbittorrent_ca.ts b/src/lang/qbittorrent_ca.ts index a0ce5fc7b..1b49c2f65 100644 --- a/src/lang/qbittorrent_ca.ts +++ b/src/lang/qbittorrent_ca.ts @@ -1941,12 +1941,12 @@ Podeu obtenir aquesta informació de les preferències del seu navegador web.No se pudo crear el directorio: - + Open Torrent Files Obrir arxius Torrent - + Torrent Files Arxius Torrent @@ -2078,7 +2078,7 @@ Podeu obtenir aquesta informació de les preferències del seu navegador web. qBittorrent - + qBittorrent qBittorrent @@ -2328,7 +2328,7 @@ Por favor cierra el otro antes. Por favor espere... - + Transfers Transferint @@ -2355,7 +2355,7 @@ Por favor cierra el otro antes. - + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 @@ -2423,15 +2423,15 @@ Por favor cierra el otro antes. qBittorrent %1 iniciado. - - + + DL speed: %1 KiB/s e.g: Download speed: 10 KiB/s Vel. de Baixada: %1 KiB/s - - + + UP speed: %1 KiB/s e.g: Upload speed: 10 KiB/s Vel. de Pujada: %1 KiB/s @@ -2514,13 +2514,13 @@ Por favor cierra el otro antes. '%1' reiniciado. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 ha acabat de descarregar-se. - + I/O Error i.e: Input/Output Error Error d'Entrada/Sortida @@ -2580,39 +2580,66 @@ Por favor cierra el otro antes. Un error va ocórrer (Disc ple?), '%1' pausat. - + Search Buscar - + Torrent file association Associació d'arxius Torrent - + + Set the password... + + + + qBittorrent is not the default application to open torrent files or Magnet links. Do you want to associate qBittorrent to torrent files and Magnet links? qBittorrent no és l'aplicació per defecte per obrir arxius Torrent o enllaços Magnet. ¿Vol que qBittorrent sigui el programa per defecte per gestionar aquests arxius? - + + + Password lock + + + + + + Please define the locking password: + + + + + Password update + + + + + The UI lock password has been successfully updated + + + + RSS RSS - + Transfers (%1) Transferències (%1) - + Download completion Descàrrega completada - + An I/O error occured for torrent %1. Reason: %2 e.g: An error occured for torrent xxx.avi. @@ -2621,61 +2648,81 @@ Do you want to associate qBittorrent to torrent files and Magnet links? Raó: %2 - + Alt+2 shortcut to switch to third tab Alt+2 - + Alt+3 shortcut to switch to fourth tab Alt+3 - + Recursive download confirmation Confirmació descàrregues recursives - + The torrent %1 contains torrent files, do you want to proceed with their download? Aquest torrent %1 conté arxius torrent, vol seguir endavant amb la seva descàrrega? - - + + Yes - - + + No No - + Never Mai - + Global Upload Speed Limit Límit global de Pujada - + Global Download Speed Limit Límit global de Baixada - + + UI lock password + + + + + Please type the UI lock password: + + + + + Invalid password + + + + + The password is invalid + + + + Exiting qBittorrent Tancant qBittorrent - + Always Sempre @@ -2685,7 +2732,7 @@ Raó: %2 qBittorrent %1 - + qBittorrent %1 (Down: %2/s, Up: %3/s) %1 is qBittorrent version qBittorrent %1 (Baixada: %2/s, Pujada: %3/s) @@ -2763,7 +2810,7 @@ Are you sure you want to quit qBittorrent? Radio - + Alt+1 shortcut to switch to first tab Alt+1 @@ -2784,12 +2831,12 @@ Are you sure you want to quit qBittorrent? Alt+4 - + Url download error Error de descàrrega d'Url - + Couldn't download file at url: %1, reason: %2. No es va poder descarregar l'arxiu en la url: %1, raó: %2. @@ -2820,7 +2867,7 @@ Are you sure you want to quit qBittorrent? Alt+3 - + Ctrl+F shortcut to switch to search tab Ctrl + F @@ -2831,7 +2878,7 @@ Are you sure you want to quit qBittorrent? '%1' fue eliminado porque su radio llegó al valor máximo que estableciste. - + Some files are currently transferring. Are you sure you want to quit qBittorrent? Alguns arxius encara estan transferint. @@ -2863,7 +2910,7 @@ Està segur que vol sortir? qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s) - + Options were saved successfully. Opcions guardades correctament. @@ -3483,17 +3530,17 @@ Probablement això és una cosa que ja sabia, així que no li dirà cap altra ve &Veure - + &Add File... &Afegir arxius... - + E&xit &Sortir - + &Options... &Opcions... @@ -3526,22 +3573,22 @@ Probablement això és una cosa que ja sabia, així que no li dirà cap altra ve Visiti el lloc Web - + Add &URL... Afegir &URL... - + Torrent &creator Crear &Torrent - + Set upload limit... Límit de Pujada... - + Set download limit... Límit de Baixada... @@ -3550,92 +3597,103 @@ Probablement això és una cosa que ja sabia, així que no li dirà cap altra ve Documentació - + &About &Sobre - + &Start &Començar - + &Pause &Interrompre - + &Delete &Esborrar - + P&ause All Pa&usar Totes - + S&tart All Iniciar &Totes - + Visit &Website Visitar el meu lloc &Web - + Report a &bug Comunicar un &bug - + &Documentation &Documentasió - + Set global download limit... Límit global de Baixada... - + Set global upload limit... Límit global de Pujada... - + &Log viewer... Visor &d'registres... - + Log viewer Visor d'registres - + Shutdown when downloads complete + + + + Lock qBittorrent + + + + + Ctrl+L + + Log Window Finestra de registre - - + + Alternative speed limits Límits de velocitat alternativa - + &RSS reader &Lector RSS - + Search &engine &Motor de cerca @@ -3652,22 +3710,22 @@ Probablement això és una cosa que ja sabia, així que no li dirà cap altra ve Usar límits de velocitat alternativa - + Top &tool bar Barra d'eines &superior - + Display top tool bar Mostrar barra d'eines superior - + &Speed in title bar &Velocitat a la barra - + Show transfer speed in title bar Mostra velocitat a la barra de títol @@ -3768,12 +3826,12 @@ Probablement això és una cosa que ja sabia, així que no li dirà cap altra ve Transferidos - + Preview file Previsualitzar arxiu - + Clear log Netejar registre @@ -3822,12 +3880,12 @@ Probablement això és una cosa que ja sabia, així que no li dirà cap altra ve Obrir torrent - + Decrease priority Disminuir prioritat - + Increase priority Incrementar prioritat @@ -6246,13 +6304,13 @@ Si us plau, instal-li'l de forma manual. Velocidad de Subida - + Down Speed i.e: Download speed Vel. Baixada - + Up Speed i.e: Upload speed Vel. Pujada @@ -6262,7 +6320,7 @@ Si us plau, instal-li'l de forma manual. Radio - + ETA i.e: Estimated Time of Arrival / Time left Temps estimat @@ -6276,22 +6334,22 @@ Si us plau, instal-li'l de forma manual. &No - + Column visibility Visibilitat de columnes - + Start Començar - + Pause Interrompre - + Delete Esborrar @@ -6312,150 +6370,150 @@ Si us plau, instal-li'l de forma manual. Borrar permanentemente - + Name i.e: torrent name Nom - + Size i.e: torrent size Mida - + Done % Done Progrés - + Status Torrent status (e.g. downloading, seeding, paused) Estat - + Seeds i.e. full sources (often untranslated) Llavors - + Peers i.e. partial sources (often untranslated) Parells - + Ratio Share ratio Ratio - - + + Label Etiqueta - + Added On Torrent was added to transfer list on 01/01/2010 08:00 Afegit el - + Completed On Torrent was completed on 01/01/2010 08:00 Completat a - + Down Limit i.e: Download limit Límit Baixada - + Up Limit i.e: Upload limit Límit Pujada - + Choose save path Seleccioni un directori de destinació - + Save path creation error Error en la creació del directori de destí - + Could not create the save path No es va poder crear el directori de destí - + Torrent Download Speed Limiting Límit de velocitat de Baixada Torrent - + Torrent Upload Speed Limiting Límit de velocitat de Pujada Torrent - + New Label Nova Etiqueta - + Label: Etiqueta: - + Invalid label name Nom d'Etiqueta no vàlid - + Please don't use any special characters in the label name. Si us plau, no utilitzi caràcters especials per al nom de l'Etiqueta. - + Rename Rebatejar - + New name: Nou nom: - + Preview file... Previsualitzar arxiu... - + Limit upload rate... Taxa límit de Pujada... - + Limit download rate... Taxa límit de Baixada... - + Priority @@ -6468,36 +6526,36 @@ Si us plau, instal-li'l de forma manual. Taxa límit de Baixada - + Open destination folder Obrir carpeta destí - + Move up i.e. move up in the queue - + Move down i.e. Move down in the queue - + Move to top i.e. Move to top of the queue - + Move to bottom i.e. Move to bottom of the queue - + Set location... Establir una destinació... @@ -6514,43 +6572,43 @@ Si us plau, instal-li'l de forma manual. Disminuir prioritat - + Force recheck Forçar verificació de arxiu - + Copy magnet link Copiar magnet link - + Super seeding mode Mode de SuperSembra - + Rename... Rebatejar... - + Download in sequential order Descarregar en ordre seqüencial - + Download first and last piece first Descarregar primer, primeres i últimes parts - + New... New label... Nou... - + Reset Reset label Reset Etiquetas @@ -7837,48 +7895,48 @@ De qualsevol manera, aquests plugins van ser deshabilitats. misc - + qBittorrent will shutdown the computer now because all downloads are complete. - + B bytes B - + KiB kibibytes (1024 bytes) KiB - + MiB mebibytes (1024 kibibytes) MiB - + GiB gibibytes (1024 mibibytes) GiB - + TiB tebibytes (1024 gibibytes) TiB - + %1h %2m e.g: 3hours 5minutes - + %1d %2h e.g: 2days 10hours @@ -7899,10 +7957,10 @@ De qualsevol manera, aquests plugins van ser deshabilitats. d - - - - + + + + Unknown Desconocido @@ -7917,19 +7975,19 @@ De qualsevol manera, aquests plugins van ser deshabilitats. d - + Unknown Unknown (size) Desconegut - + < 1m < 1 minute <1m - + %1m e.g: 10minutes %1m diff --git a/src/lang/qbittorrent_cs.ts b/src/lang/qbittorrent_cs.ts index a01876fd3..ce71d7bde 100644 --- a/src/lang/qbittorrent_cs.ts +++ b/src/lang/qbittorrent_cs.ts @@ -1597,7 +1597,7 @@ Tyto informace by měly jít získat z nastavení webového prohlížeče. GUI - + Open Torrent Files Otevřít torrent soubory @@ -1606,71 +1606,113 @@ Tyto informace by měly jít získat z nastavení webového prohlížeče.&Ano - + Torrent file association Asociace souboru .torrent - + + + Password lock + + + + + + Please define the locking password: + + + + + Password update + + + + + The UI lock password has been successfully updated + + + + Transfers (%1) Přenosy (%1) - + Alt+2 shortcut to switch to third tab Alt+2 - + Alt+3 shortcut to switch to fourth tab Alt+3 - + Recursive download confirmation Potvrzení rekurzivního stahování - + The torrent %1 contains torrent files, do you want to proceed with their download? Torrent %1 obsahuje soubory .torrent, chcete je také začít stahovat? - - + + Yes Ano - - + + No Ne - + Never Nikdy - + Global Upload Speed Limit Celkový limit rychlosti nahrávání - + Global Download Speed Limit Celkový limit rychlosti stahování - + + UI lock password + + + + + Please type the UI lock password: + + + + + Invalid password + + + + + The password is invalid + + + + Exiting qBittorrent Ukončování qBittorrent - + Always Vždy @@ -1679,7 +1721,7 @@ Tyto informace by měly jít získat z nastavení webového prohlížeče.&Ne - + qBittorrent %1 (Down: %2/s, Up: %3/s) %1 is qBittorrent version qBittorrent %1 (Stahování: %2/s, Nahrávání: %3/s) @@ -1697,7 +1739,7 @@ Tyto informace by měly jít získat z nastavení webového prohlížeče.Jste si jist, že chcete smazat vybrané položky ze seznamu stahování? - + Torrent Files Torrent soubory @@ -1711,7 +1753,7 @@ Tyto informace by měly jít získat z nastavení webového prohlížeče. - + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 @@ -1729,7 +1771,7 @@ Tyto informace by měly jít získat z nastavení webového prohlížeče.Nebyly nalezeny žádné peery... - + qBittorrent qBittorrent @@ -1739,15 +1781,15 @@ Tyto informace by měly jít získat z nastavení webového prohlížeče.qBittorrent %1 - - + + DL speed: %1 KiB/s e.g: Download speed: 10 KiB/s Rychlost stahování: %1 KiB/s - - + + UP speed: %1 KiB/s e.g: Upload speed: 10 KiB/s Rychlost nahrávání: %1 KiB/s @@ -1780,13 +1822,13 @@ Tyto informace by měly jít získat z nastavení webového prohlížeče.'%1' obnoven. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. Stahování %1 bylo dokončeno. - + I/O Error i.e: Input/Output Error Chyba I/O @@ -1819,12 +1861,12 @@ Tyto informace by měly jít získat z nastavení webového prohlížeče.Nastala chyba (plný disk?), '%1' pozastaven. - + Search Hledat - + RSS RSS @@ -1884,30 +1926,35 @@ Opravdu chcete ukončit qBittorrent? Podpora šifrování [VYP] - + Alt+1 shortcut to switch to first tab Alt+1 - + Transfers Přenosy - + + Set the password... + + + + qBittorrent is not the default application to open torrent files or Magnet links. Do you want to associate qBittorrent to torrent files and Magnet links? qBittorrent není výchozí aplikací pro otevírání souborů .torrent ani Magnet odkazů. Chcete asociovat qBittorrent se soubory .torrent a Magnet odkazů? - + Download completion Kompletace stahování - + An I/O error occured for torrent %1. Reason: %2 e.g: An error occured for torrent xxx.avi. @@ -1926,12 +1973,12 @@ Chcete asociovat qBittorrent se soubory .torrent a Magnet odkazů? Alt+4 - + Url download error Chyba stahování URL - + Couldn't download file at url: %1, reason: %2. Nelze stáhnout soubor z URL: %1, důvod: %2. @@ -1954,13 +2001,13 @@ Chcete asociovat qBittorrent se soubory .torrent a Magnet odkazů? Alt+3 - + Ctrl+F shortcut to switch to search tab Ctrl+F - + Some files are currently transferring. Are you sure you want to quit qBittorrent? Některé soubory se právě přenášejí. @@ -2030,7 +2077,7 @@ Opravdu chcete ukončit qBittorrent? Nahrávání - + Options were saved successfully. Nastavení bylo úspěšně uloženo. @@ -2598,17 +2645,17 @@ Další upozornění již nebudou zobrazena. Po&hled - + &Add File... Při&dat soubor... - + E&xit U&končit - + &Options... &Možnosti... @@ -2641,112 +2688,123 @@ Další upozornění již nebudou zobrazena. Navštívit webovou stránku - + &About O &aplikaci - + &Start Spust&it - + &Pause Po&zastavit - + &Delete Smaza&t - + P&ause All Pozastavit vš&e - + S&tart All Spustit &vše - + Visit &Website Navštívit &webovou stránku - + Add &URL... Přidat &URL... - + Torrent &creator Tvůr&ce torrentu - + Report a &bug Nahlásit chybu - + Set upload limit... Nastavit limit nahrávání... - + Set download limit... Nastavit limit stahování... - + &Documentation Dokumentace - + Set global download limit... Nastavit celkový limit stahování... - + Set global upload limit... Nastavit celkový limit nahrávání... - + &Log viewer... Prohlížeč záznamů... - + Log viewer Prohlížeč záznamů - + Shutdown when downloads complete + + + + Lock qBittorrent + + + + + Ctrl+L + + Log Window Okno se záznamy - - + + Alternative speed limits Alternativní limity rychlosti - + &RSS reader RSS kanály - + Search &engine Vyhledávač @@ -2759,22 +2817,22 @@ Další upozornění již nebudou zobrazena. Použít alternativní limity rychlosti - + Top &tool bar Horní panel nástrojů - + Display top tool bar Zobrazit horní panel nástrojů - + &Speed in title bar R&ychlost v záhlaví okna - + Show transfer speed in title bar Zobrazit aktuální rychlost v záhlaví okna @@ -2791,12 +2849,12 @@ Další upozornění již nebudou zobrazena. Vytvořit torrent - + Preview file Náhled souboru - + Clear log Vyprázdnit záznamy @@ -2841,12 +2899,12 @@ Další upozornění již nebudou zobrazena. Otevřít torrent - + Decrease priority Snížit prioritu - + Increase priority Zvýšit prioritu @@ -5214,13 +5272,13 @@ Nainstalujte jej prosím ručně. Rychlost nahrávání - + Down Speed i.e: Download speed Rychlost stahování - + Up Speed i.e: Upload speed Rychlost nahrávání @@ -5235,7 +5293,7 @@ Nainstalujte jej prosím ručně. Poměr - + ETA i.e: Estimated Time of Arrival / Time left Odh. čas @@ -5249,22 +5307,22 @@ Nainstalujte jej prosím ručně. &Ne - + Column visibility Zobrazení sloupců - + Start Spustit - + Pause Pozastavit - + Delete Smazat @@ -5285,150 +5343,150 @@ Nainstalujte jej prosím ručně. Trvale smazat - + Name i.e: torrent name Název - + Size i.e: torrent size Velikost - + Done % Done Hotovo - + Status Torrent status (e.g. downloading, seeding, paused) Status - + Seeds i.e. full sources (often untranslated) Seedy - + Peers i.e. partial sources (often untranslated) Protějšky - + Ratio Share ratio Poměr - - + + Label Štítek - + Added On Torrent was added to transfer list on 01/01/2010 08:00 Přidán - + Completed On Torrent was completed on 01/01/2010 08:00 Dokončen - + Down Limit i.e: Download limit Limit stahování - + Up Limit i.e: Upload limit Limit nahrávání - + Choose save path Vyberte cestu pro uložení - + Save path creation error Chyba při vytváření cesty pro uložení - + Could not create the save path Nemohu vytvořit cestu pro uložení - + Torrent Download Speed Limiting Limit rychlosti stahování torrentu - + Torrent Upload Speed Limiting Limit rychlosti nahrávání torrentu - + New Label Nový štítek - + Label: Štítek: - + Invalid label name Neplatný název štítku - + Please don't use any special characters in the label name. Nepoužívejte prosím v názvu štítku žádné speciální znaky. - + Rename Přejmenovat - + New name: Nový název: - + Preview file... Náhled souboru... - + Limit upload rate... Omezit rychlost nahrávání... - + Limit download rate... Omezit rychlost stahování... - + Priority Priorita @@ -5441,36 +5499,36 @@ Nainstalujte jej prosím ručně. Omezit rychlost stahování - + Open destination folder Otevřít cílový adresář - + Move up i.e. move up in the queue - + Move down i.e. Move down in the queue - + Move to top i.e. Move to top of the queue - + Move to bottom i.e. Move to bottom of the queue - + Set location... Nastavit umístění... @@ -5487,43 +5545,43 @@ Nainstalujte jej prosím ručně. Snížit prioritu - + Force recheck Překontrolovat platnost - + Copy magnet link Kopírovat odkaz Magnet - + Super seeding mode Super seeding mód - + Rename... Přejmenovat... - + Download in sequential order Stahovat v souvislém pořadí - + Download first and last piece first Stáhnout nejdříve první a poslední část - + New... New label... Nový... - + Reset Reset label Reset @@ -6641,74 +6699,74 @@ Nicméně, tyto moduly byly vypnuty. misc - + B bytes B - + KiB kibibytes (1024 bytes) KiB - + MiB mebibytes (1024 kibibytes) MiB - + GiB gibibytes (1024 mibibytes) GiB - + TiB tebibytes (1024 gibibytes) TiB - + %1h %2m e.g: 3hours 5minutes %1h %2m - + %1d %2h e.g: 2days 10hours %1d %2h - + Unknown Unknown (size) Neznámý - + qBittorrent will shutdown the computer now because all downloads are complete. - - - - + + + + Unknown Neznámý - + < 1m < 1 minute < 1m - + %1m e.g: 10minutes %1m diff --git a/src/lang/qbittorrent_da.ts b/src/lang/qbittorrent_da.ts index f97ecb5ac..f6ae8901f 100644 --- a/src/lang/qbittorrent_da.ts +++ b/src/lang/qbittorrent_da.ts @@ -1579,7 +1579,7 @@ You should get this information from your Web browser preferences. GUI - + Open Torrent Files Åbn Torrent Filer @@ -1608,7 +1608,7 @@ You should get this information from your Web browser preferences. Downloader... - + Torrent Files Torrent Filer @@ -1697,7 +1697,7 @@ Please close the other one first. Luk venglist denne først. - + Transfers Overførsler @@ -1719,7 +1719,7 @@ Luk venglist denne først. - + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 @@ -1787,7 +1787,7 @@ Luk venglist denne først. qBittorrent %1 startet. - + qBittorrent qBittorrent @@ -1797,15 +1797,15 @@ Luk venglist denne først. qBittorrent %1 - - + + DL speed: %1 KiB/s e.g: Download speed: 10 KiB/s DL hastighed: %1 KB/s - - + + UP speed: %1 KiB/s e.g: Upload speed: 10 KiB/s UP hastighed: %1 KB/s @@ -1888,13 +1888,13 @@ Luk venglist denne først. '%1' fortsat. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 er hentet færdig. - + I/O Error i.e: Input/Output Error I/O Fejl @@ -1949,18 +1949,18 @@ Luk venglist denne først. Der opstod en fejl (fuld disk?), '%1' sat på pause. - + Search Søg - + qBittorrent is not the default application to open torrent files or Magnet links. Do you want to associate qBittorrent to torrent files and Magnet links? - + RSS RSS @@ -1969,23 +1969,23 @@ Do you want to associate qBittorrent to torrent files and Magnet links? Færdig - + Alt+1 shortcut to switch to first tab - + Url download error Url download fejl - + Couldn't download file at url: %1, reason: %2. Kunne ikke downloade filen via url: %1, begrundelse: %2. - + An I/O error occured for torrent %1. Reason: %2 e.g: An error occured for torrent xxx.avi. @@ -1994,100 +1994,147 @@ Do you want to associate qBittorrent to torrent files and Magnet links? Begrundelse: %2 - + + Set the password... + + + + Torrent file association - + + + Password lock + + + + + + Please define the locking password: + + + + + Password update + + + + + The UI lock password has been successfully updated + + + + Transfers (%1) - + Download completion Download færdig - + Alt+2 shortcut to switch to third tab - + Ctrl+F shortcut to switch to search tab - + Alt+3 shortcut to switch to fourth tab - + Recursive download confirmation - + The torrent %1 contains torrent files, do you want to proceed with their download? - - + + Yes Ja - - + + No Nej - + Never - + Global Upload Speed Limit Global Upload Hastighedsbegrænsning - + Global Download Speed Limit Global Download Hastighedsbegrænsning - + + UI lock password + + + + + Please type the UI lock password: + + + + + Invalid password + + + + + The password is invalid + + + + Exiting qBittorrent - + Some files are currently transferring. Are you sure you want to quit qBittorrent? Nogen filer er stadig ved at bliver overført. Er du sikker på at du vil afslutte qBittorrent? - + Always - + qBittorrent %1 (Down: %2/s, Up: %3/s) %1 is qBittorrent version - + Options were saved successfully. Indstillingerne blev gemt. @@ -2657,17 +2704,17 @@ No further notices will be issued. - + &Add File... - + E&xit - + &Options... @@ -2700,112 +2747,123 @@ No further notices will be issued. Besøg Website - + &About - + &Start - + &Pause - + &Delete - + P&ause All - + S&tart All - + Visit &Website - + Add &URL... - + Torrent &creator - + Report a &bug - + Set upload limit... - + Set download limit... - + &Documentation - + Set global download limit... - + Set global upload limit... - + &Log viewer... - + Log viewer - + Shutdown when downloads complete + + + + Lock qBittorrent + + + + + Ctrl+L + + Log Window Log vindue - - + + Alternative speed limits - + &RSS reader - + Search &engine @@ -2814,22 +2872,22 @@ No further notices will be issued. Søgemaskine - + Top &tool bar - + Display top tool bar - + &Speed in title bar - + Show transfer speed in title bar @@ -2898,12 +2956,12 @@ No further notices will be issued. Overførsler - + Preview file Smugkig fil - + Clear log Ryd log @@ -2944,12 +3002,12 @@ No further notices will be issued. Indstillinger - + Decrease priority Sæt lavere prioritet - + Increase priority Sæt højere prioritet @@ -5123,19 +5181,19 @@ Please install it manually. UP hastighed - + Down Speed i.e: Download speed Down Hastighed - + Up Speed i.e: Upload speed Up Hastighed - + ETA i.e: Estimated Time of Arrival / Time left Tid Tilbage @@ -5149,22 +5207,22 @@ Please install it manually. &Nej - + Column visibility Kolonne synlighed - + Start Start - + Pause Pause - + Delete Slet @@ -5177,150 +5235,150 @@ Please install it manually. Slet Permanent - + Name i.e: torrent name Navn - + Size i.e: torrent size Størrelse - + Done % Done Færdig - + Status Torrent status (e.g. downloading, seeding, paused) Status - + Seeds i.e. full sources (often untranslated) - + Peers i.e. partial sources (often untranslated) - + Ratio Share ratio - - + + Label - + Added On Torrent was added to transfer list on 01/01/2010 08:00 - + Completed On Torrent was completed on 01/01/2010 08:00 - + Down Limit i.e: Download limit - + Up Limit i.e: Upload limit - + Choose save path Gem til denne mappe - + Save path creation error Fejl ved oprettelse af mappe - + Could not create the save path Kunne ikke oprette mappe svarende til den indtastede sti - + Torrent Download Speed Limiting Begrænsning af Torrent Download Hastighed - + Torrent Upload Speed Limiting Begrænsning af Torrent Upload Hastighed - + New Label - + Label: - + Invalid label name - + Please don't use any special characters in the label name. - + Rename Omdøb - + New name: - + Preview file... - + Limit upload rate... - + Limit download rate... - + Priority Prioritet @@ -5333,36 +5391,36 @@ Please install it manually. Begræns download - + Open destination folder Åben destinationsmappe - + Move up i.e. move up in the queue - + Move down i.e. Move down in the queue - + Move to top i.e. Move to top of the queue - + Move to bottom i.e. Move to bottom of the queue - + Set location... @@ -5379,43 +5437,43 @@ Please install it manually. Formindsk prioritet - + Force recheck Tvungen tjek - + Copy magnet link Kopier magnet link - + Super seeding mode Super seeding tilstand - + Rename... - + Download in sequential order Downlad i rækkefølge - + Download first and last piece first Download første og sidste stykke først - + New... New label... - + Reset Reset label @@ -6475,74 +6533,74 @@ Disse plugins blev dog koble fra. misc - + B bytes B - + KiB kibibytes (1024 bytes) KB - + MiB mebibytes (1024 kibibytes) MB - + GiB gibibytes (1024 mibibytes) GB - + TiB tebibytes (1024 gibibytes) TB - - - - + + + + Unknown Ukendt - + %1h %2m e.g: 3hours 5minutes - + %1d %2h e.g: 2days 10hours - + Unknown Unknown (size) Ukendt - + qBittorrent will shutdown the computer now because all downloads are complete. - + < 1m < 1 minute < 1 m - + %1m e.g: 10minutes %1m diff --git a/src/lang/qbittorrent_de.ts b/src/lang/qbittorrent_de.ts index f59c22e09..dbb8bfcd6 100644 --- a/src/lang/qbittorrent_de.ts +++ b/src/lang/qbittorrent_de.ts @@ -1963,7 +1963,7 @@ qBittorrent beobachtet das Verzeichniss und starten den Download von vorhandenen :: By Christophe Dumez :: Copyright (c) 2006 - + qBittorrent qBittorrent @@ -1984,12 +1984,12 @@ qBittorrent beobachtet das Verzeichniss und starten den Download von vorhandenen UP Geschwindigkeit: - + Open Torrent Files Öffne Torrent-Dateien - + Torrent Files Torrent-Dateien @@ -2358,7 +2358,7 @@ Bitte schliessen Sie diesen zuerst. Bitte warten... - + Transfers Übertragungen @@ -2385,7 +2385,7 @@ Bitte schliessen Sie diesen zuerst. - + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 @@ -2453,15 +2453,15 @@ Bitte schliessen Sie diesen zuerst. qBittorrent %1 gestartet. - - + + DL speed: %1 KiB/s e.g: Download speed: 10 KiB/s DL Geschwindigkeit: %1 KB/s - - + + UP speed: %1 KiB/s e.g: Upload speed: 10 KiB/s UP Geschwindigkeit: %1 KiB/s @@ -2544,13 +2544,13 @@ Bitte schliessen Sie diesen zuerst. '%1' fortgesetzt. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 vollständig heruntergeladen. - + I/O Error i.e: Input/Output Error I/O Error @@ -2610,38 +2610,65 @@ Bitte schliessen Sie diesen zuerst. Ein Fehler ist aufgetreten (Festplatte voll?), '%1' angehalten. - + Search Suche - + Torrent file association Verbindung zu Torrent Datei - + + Set the password... + + + + qBittorrent is not the default application to open torrent files or Magnet links. Do you want to associate qBittorrent to torrent files and Magnet links? qBittorrent ist nicht die Standard Applikation um Torrent Dateien oder Magnet Links zu öffnen. Möchten Sie Torrent Dateien und Magnet Links immer mit qBittorent öffnen? - + + + Password lock + + + + + + Please define the locking password: + + + + + Password update + + + + + The UI lock password has been successfully updated + + + + RSS RSS - + Transfers (%1) Übertragungen (%1) - + Download completion Beendigung des Download - + An I/O error occured for torrent %1. Reason: %2 e.g: An error occured for torrent xxx.avi. @@ -2649,28 +2676,48 @@ Do you want to associate qBittorrent to torrent files and Magnet links? Ein I/O Fehler ist aufegtreten für die Torrent Datei %1. Ursache: %2 - + Alt+2 shortcut to switch to third tab Alt+2 - + Recursive download confirmation Rekursiven Downlaod bestätigen - + The torrent %1 contains torrent files, do you want to proceed with their download? Der Torrent %1 enthält Torrent Dateien, möchten Sie mit dem Download fortfahren? - + + UI lock password + + + + + Please type the UI lock password: + + + + + Invalid password + + + + + The password is invalid + + + + Exiting qBittorrent Beende qBittorrent - + Always Immer @@ -2680,7 +2727,7 @@ Do you want to associate qBittorrent to torrent files and Magnet links? qBittorrent %1 - + qBittorrent %1 (Down: %2/s, Up: %3/s) %1 is qBittorrent version @@ -2762,7 +2809,7 @@ Möchten sie qBittorrent wirklich beenden? Verhältnis - + Alt+1 shortcut to switch to first tab Alt+1 @@ -2783,12 +2830,12 @@ Möchten sie qBittorrent wirklich beenden? Alt+4 - + Url download error URL Download Fehler - + Couldn't download file at url: %1, reason: %2. Konnte Datei von URL: %1 nicht laden, Begründung: %2. @@ -2819,46 +2866,46 @@ Möchten sie qBittorrent wirklich beenden? Alt+3 - + Ctrl+F shortcut to switch to search tab Strg+F - + Alt+3 shortcut to switch to fourth tab Alt+3 - - + + Yes Ja - - + + No Nein - + Never Niemals - + Global Upload Speed Limit Globale UL-Rate - + Global Download Speed Limit Globale DL-Rate - + Some files are currently transferring. Are you sure you want to quit qBittorrent? Zur Zeit werden Dateien übertragen. @@ -2928,7 +2975,7 @@ Sind Sie sicher, daß sie qBittorrent beenden möchten? Uploads - + Options were saved successfully. Optionen wurden erfolgreich gespeichert. @@ -3551,17 +3598,17 @@ Wahrscheinlich haben wir Ihnen hiermit nichts Neues erzählt und werden Sie auch &Ansicht - + &Add File... &Datei Hinzufügen... - + E&xit Beenden - + &Options... &Optionen... @@ -3594,22 +3641,22 @@ Wahrscheinlich haben wir Ihnen hiermit nichts Neues erzählt und werden Sie auch Öffne Website - + Add &URL... &URL Hinzufügen... - + Torrent &creator Torrent Urheber - + Set upload limit... Upload Limit Setzen... - + Set download limit... Download Limit Setzen... @@ -3618,92 +3665,103 @@ Wahrscheinlich haben wir Ihnen hiermit nichts Neues erzählt und werden Sie auch Dokumentation - + &About ]Über - + &Start &Start - + &Pause &Anhalten - + &Delete &Löschen - + P&ause All A&lle anhalten - + S&tart All Alle S&tarten - + Visit &Website &Website Aufrufen - + Report a &bug &Bug Melde - + &Documentation &Dokumentation - + Set global download limit... Globales Downlaod Limit Setzen... - + Set global upload limit... Globals Upload Limit Setzen... - + &Log viewer... &Log Betrachter... - + Log viewer Log Betrachter - + Shutdown when downloads complete + + + + Lock qBittorrent + + + + + Ctrl+L + + Log Window Log-Fenster - - + + Alternative speed limits Alternative Geschwindigkeitsbegrenzung - + &RSS reader &RSS Reader - + Search &engine Such&maschine @@ -3716,22 +3774,22 @@ Wahrscheinlich haben wir Ihnen hiermit nichts Neues erzählt und werden Sie auch Alternative Geschwindigkeitsbegrenzungen verwenden - + Top &tool bar Obere Werk&zeugleiste - + Display top tool bar Zeige obere Werkzeugleiste - + &Speed in title bar &Geschwindigkei in der Titelleiste - + Show transfer speed in title bar Übertragungsgeschwindigkeit in der Titelleiste anzeigen @@ -3816,12 +3874,12 @@ Wahrscheinlich haben wir Ihnen hiermit nichts Neues erzählt und werden Sie auch Transfer - + Preview file Vorschau Datei - + Clear log Log löschen @@ -3874,12 +3932,12 @@ Wahrscheinlich haben wir Ihnen hiermit nichts Neues erzählt und werden Sie auch Öffne Torrent - + Decrease priority Verringere Priorität - + Increase priority Erhöhe Prorität @@ -6250,13 +6308,13 @@ Please install it manually. UP Geschwindigkeit - + Down Speed i.e: Download speed DL-Rate - + Up Speed i.e: Upload speed UL-Rate @@ -6266,7 +6324,7 @@ Please install it manually. Verhältnis - + ETA i.e: Estimated Time of Arrival / Time left voraussichtliche Dauer @@ -6280,22 +6338,22 @@ Please install it manually. &Nein - + Column visibility Sichtbarkeit der Spalten - + Start Start - + Pause Anhalten - + Delete Löschen @@ -6308,150 +6366,150 @@ Please install it manually. Endgültig löschen - + Name i.e: torrent name Name - + Size i.e: torrent size Größe - + Done % Done Fertig - + Status Torrent status (e.g. downloading, seeding, paused) Status - + Seeds i.e. full sources (often untranslated) - + Peers i.e. partial sources (often untranslated) - + Ratio Share ratio Verhältnis - - + + Label - + Added On Torrent was added to transfer list on 01/01/2010 08:00 Hinzugefügt am - + Completed On Torrent was completed on 01/01/2010 08:00 Vervollständigt am - + Down Limit i.e: Download limit Download Begrenzung - + Up Limit i.e: Upload limit Upload Begrenzung - + Choose save path Speicherort auswählen - + Save path creation error Fehler beim erstellen des Speicherortes - + Could not create the save path Speicherort konnte nicht erstellt werden - + Torrent Download Speed Limiting Begrenzung der Torrent-DL-Rate - + Torrent Upload Speed Limiting Begrenzung der Torrent-UL-Rate - + New Label Neues Label - + Label: - + Invalid label name Ungültiger Labelname - + Please don't use any special characters in the label name. Bitte keine Sonderzeichen im Labelname verwenden. - + Rename Umbenennen - + New name: Neuer Name: - + Preview file... Datei vorschauen... - + Limit upload rate... Uploadrate begrenzen... - + Limit download rate... Downlaodrate begrenzen... - + Priority Priorität @@ -6464,36 +6522,36 @@ Please install it manually. Begrenze Downloadrate - + Open destination folder Zielverzeichniss öffnen - + Move up i.e. move up in the queue - + Move down i.e. Move down in the queue - + Move to top i.e. Move to top of the queue - + Move to bottom i.e. Move to bottom of the queue - + Set location... Ort setzen... @@ -6510,43 +6568,43 @@ Please install it manually. Priorität verringern - + Force recheck Erzwinge erneutes Überprüfen - + Copy magnet link Kopiere Magnet-Link - + Super seeding mode Super-Seeding-Modus - + Rename... Umbenennen... - + Download in sequential order Der Reihe nach downloaden - + Download first and last piece first Erste und letzte Teile zuerst laden - + New... New label... Neu... - + Reset Reset label Zurück setzen @@ -7862,43 +7920,43 @@ Die Plugins wurden jedoch deaktiviert. misc - + B bytes B - + KiB kibibytes (1024 bytes) KB - + MiB mebibytes (1024 kibibytes) MB - + GiB gibibytes (1024 mibibytes) GB - + TiB tebibytes (1024 gibibytes) TB - + %1h %2m e.g: 3hours 5minutes - + %1d %2h e.g: 2days 10hours %1t %2h @@ -7919,32 +7977,32 @@ Die Plugins wurden jedoch deaktiviert. d - - - - + + + + Unknown Unbekannt - + Unknown Unknown (size) Unbekannt - + qBittorrent will shutdown the computer now because all downloads are complete. - + < 1m < 1 minute < 1 Minute - + %1m e.g: 10minutes %1 Min diff --git a/src/lang/qbittorrent_el.ts b/src/lang/qbittorrent_el.ts index efc768053..6bdd37186 100644 --- a/src/lang/qbittorrent_el.ts +++ b/src/lang/qbittorrent_el.ts @@ -2030,7 +2030,7 @@ You should get this information from your Web browser preferences. GUI - + Open Torrent Files Άνοιγμα Αρχείων torrent @@ -2119,7 +2119,7 @@ You should get this information from your Web browser preferences. Δεν μπόρεσε να δημιουργηθεί η κατηγορία: - + Torrent Files Αρχεία torrent @@ -2179,7 +2179,7 @@ You should get this information from your Web browser preferences. qBittorrent - + qBittorrent qBittorrent @@ -2449,7 +2449,7 @@ Please close the other one first. Παρακαλώ περιμένετε... - + Transfers Μεταφορές @@ -2476,7 +2476,7 @@ Please close the other one first. - + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 @@ -2544,15 +2544,15 @@ Please close the other one first. Εκκινήθηκε το qBittorrent %1. - - + + DL speed: %1 KiB/s e.g: Download speed: 10 KiB/s Ταχύτητα Λήψης: %1 KiB/s - - + + UP speed: %1 KiB/s e.g: Upload speed: 10 KiB/s Ταχύτητα Αποστολής: %1 KiB/s @@ -2635,13 +2635,13 @@ Please close the other one first. Το '%1' ξανάρχισε. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. Έχει τελειώσει η λήψη του '%1'. - + I/O Error i.e: Input/Output Error I/O Σφάλμα @@ -2701,39 +2701,66 @@ Please close the other one first. Ένα σφάλμα προέκυψε (δίσκος πλήρης?), το '%1' είναι σε παύση. - + Search Εύρεση - + Torrent file association Συσχετισμός με αρχεία τόρεντ - + + Set the password... + + + + qBittorrent is not the default application to open torrent files or Magnet links. Do you want to associate qBittorrent to torrent files and Magnet links? Το qBittorrent δεν είναι η προεπιλεγμένη εφαρμογή για το άνοιγμα αρχείων torrent και Magnet link. Θέλετε να συσχετίσετε το qBittorrent με τα αρχεία τόρεντ και Magnet link? - + + + Password lock + + + + + + Please define the locking password: + + + + + Password update + + + + + The UI lock password has been successfully updated + + + + RSS RSS - + Transfers (%1) Μεταφορές (%1) - + Download completion Ολοκλήρωση λήψης - + An I/O error occured for torrent %1. Reason: %2 e.g: An error occured for torrent xxx.avi. @@ -2742,28 +2769,48 @@ Do you want to associate qBittorrent to torrent files and Magnet links? Αιτία: %2 - + Alt+2 shortcut to switch to third tab Alt+2 - + Recursive download confirmation Επιβεβαίωση σχετικού (recursive) κατεβάσματος - + The torrent %1 contains torrent files, do you want to proceed with their download? Το τόρεντ %1 περιέχει άλλα αρχεία τόρεντ, θέλετε να συνεχίσετε και να τα κατεβάσετε? - + + UI lock password + + + + + Please type the UI lock password: + + + + + Invalid password + + + + + The password is invalid + + + + Exiting qBittorrent Έξοδος από το qBittorrent - + Always Πάντα @@ -2773,7 +2820,7 @@ Do you want to associate qBittorrent to torrent files and Magnet links? qBittorrent %1 - + qBittorrent %1 (Down: %2/s, Up: %3/s) %1 is qBittorrent version qBittorrent %1 (Κάτ.: %2/s, Αν.: %3/s) @@ -2851,7 +2898,7 @@ Are you sure you want to quit qBittorrent? Αναλογία - + Alt+1 shortcut to switch to first tab Alt+1 @@ -2872,12 +2919,12 @@ Are you sure you want to quit qBittorrent? Alt+4 - + Url download error Σφάλμα λήψης url - + Couldn't download file at url: %1, reason: %2. Αδυναμία λήψης αρχείου από το url: %1,αιτία: %2. @@ -2908,46 +2955,46 @@ Are you sure you want to quit qBittorrent? Alt+3 - + Ctrl+F shortcut to switch to search tab Ctrl+F - + Alt+3 shortcut to switch to fourth tab Alt+3 - - + + Yes Ναι - - + + No Όχι - + Never Ποτέ - + Global Upload Speed Limit Συνολικό Όριο Ταχύτητας Αποστολής - + Global Download Speed Limit Συνολικό Όριο Ταχύτητας Λήψης - + Some files are currently transferring. Are you sure you want to quit qBittorrent? Μερικά αρχεία μεταφέρονται τώρα. @@ -3017,7 +3064,7 @@ Are you sure you want to quit qBittorrent? Αποστολή - + Options were saved successfully. Οι επιλογές αποθηκεύτηκαν επιτυχώς. @@ -3638,17 +3685,17 @@ No further notices will be issued. &Προβολή - + &Add File... &Προσθήκη Αρχείου... - + E&xit Έ&ξοδος - + &Options... &Ρυθμίσεις... @@ -3681,22 +3728,22 @@ No further notices will be issued. Επισκεφθείτε την Ιστοσελίδα - + Add &URL... Προσθήκη &URL... - + Torrent &creator Δημιουργός &τόρεντ - + Set upload limit... Ρύθμιση ορίου αποστολής... - + Set download limit... Ρύθμιση ορίου λήψης... @@ -3705,92 +3752,103 @@ No further notices will be issued. Έγγραφα - + &About &Σχετικά - + &Start &Έναρξη - + &Pause &Παύση - + &Delete &Διαγραφή - + P&ause All Π&αύση Όλων - + S&tart All Έ&ναρξη Όλων - + Visit &Website Επίσκεψη &Ιστοσελίδας - + Report a &bug Αναφορά &Σφάλματος - + &Documentation &Έγγραφα - + Set global download limit... Ρύθμιση συνολικού ορίου λήψης... - + Set global upload limit... Ρύθμιση συνολικού ορίου αποστολής... - + &Log viewer... &Καταγραφή γεγονότων... - + Log viewer Καταγραφή γεγονότων - + Shutdown when downloads complete + + + + Lock qBittorrent + + + + + Ctrl+L + + Log Window Παράθυρο Καταγραφής - - + + Alternative speed limits Εναλλακτικά όρια ταχύτητας - + &RSS reader &RSS αναγβώστης - + Search &engine Μηχανή &αναζήτησης @@ -3803,22 +3861,22 @@ No further notices will be issued. Χρήση εναλλακτικών ορίων ταχύτητας - + Top &tool bar Άνω μπάρα &εργαλείων - + Display top tool bar Εμφάνιση άνω μπάρας εργαλείων - + &Speed in title bar &Ταχύτητα στην μπάρα τίτλου - + Show transfer speed in title bar Ένδειξη ταχύτητας μεταφορών στην μπάρα τίτλου @@ -3919,12 +3977,12 @@ No further notices will be issued. Μεταφορές - + Preview file Προεπισκόπηση αρχείου - + Clear log Εκκαθάριση καταγραφών @@ -3973,12 +4031,12 @@ No further notices will be issued. Άνοιγμα torrent - + Decrease priority Μείωσε προτεραιότητα - + Increase priority Αύξησε προτεραιότητα @@ -6437,13 +6495,13 @@ Please install it manually. UP Ταχύτητα - + Down Speed i.e: Download speed Ταχύτητα Λήψης - + Up Speed i.e: Upload speed Ταχύτητα Αποστολής @@ -6458,7 +6516,7 @@ Please install it manually. Αναλογία - + ETA i.e: Estimated Time of Arrival / Time left Χρόνος που απομένει @@ -6472,22 +6530,22 @@ Please install it manually. &Όχι - + Column visibility Εμφανισημότητα Κολώνας - + Start Έναρξη - + Pause Παύση - + Delete Διαγραφή @@ -6508,150 +6566,150 @@ Please install it manually. Οριστική Διαγραφή - + Name i.e: torrent name Όνομα - + Size i.e: torrent size Μέγεθος - + Done % Done Έγινε - + Status Torrent status (e.g. downloading, seeding, paused) Κατάσταση - + Seeds i.e. full sources (often untranslated) Διαμοιραστές - + Peers i.e. partial sources (often untranslated) Συνδέσεις - + Ratio Share ratio Αναλογία - - + + Label Ετικέτα - + Added On Torrent was added to transfer list on 01/01/2010 08:00 Προστέθηκε στις - + Completed On Torrent was completed on 01/01/2010 08:00 Ολοκληρώθηκε στις - + Down Limit i.e: Download limit Όριο Κατεβάσματος - + Up Limit i.e: Upload limit Όριο ανεβάσματος - + Choose save path Επιλέξτε διαδρομή αποθήκευσης - + Save path creation error Σφάλμα δημιουργίας διαδρομής αποθήκευσης - + Could not create the save path Αδύνατη η δημιουργία διαδρομής αποθήκευσης - + Torrent Download Speed Limiting Περιορισμός Ταχύτητας Λήψης torrent - + Torrent Upload Speed Limiting Περιορισμός Ταχύτητας Αποστολής torrent - + New Label Νέα Ετικέτα - + Label: Ετικέτα: - + Invalid label name Άκυρο όνομα ετικέτας - + Please don't use any special characters in the label name. Παρακαλώ μην χρισιμοποιείτε ειδικούς χαρακτήρες στο όνομα της ετικέτας. - + Rename Μετονομασία - + New name: Νέο όνομα: - + Preview file... Προεπισκόπηση αρχείου... - + Limit upload rate... Όριο ταχύτητας αποστολής... - + Limit download rate... Όριο ταχύτητας λήψης... - + Priority Προτεραιότητα @@ -6664,36 +6722,36 @@ Please install it manually. Περιορισμός ορίου λήψης - + Open destination folder Άνοιγμα φακέλου προορισμού - + Move up i.e. move up in the queue - + Move down i.e. Move down in the queue - + Move to top i.e. Move to top of the queue - + Move to bottom i.e. Move to bottom of the queue - + Set location... Ρύθμιση τοποθεσίας... @@ -6710,43 +6768,43 @@ Please install it manually. Μείωσε προτεραιότητα - + Force recheck Αναγκαστικός επανέλεγχος - + Copy magnet link Αντιγραφή magnet link - + Super seeding mode Λειτουργία ενισχυμένου διαμοιράσματος - + Rename... Μετονομασία... - + Download in sequential order Κατέβασμα σε συνεχή σειρά - + Download first and last piece first Κατέβασμα πρώτου και τελευταίου κομματιού στην αρχή - + New... New label... Νέα... - + Reset Reset label Επαναφορά @@ -8084,48 +8142,48 @@ However, those plugins were disabled. misc - + qBittorrent will shutdown the computer now because all downloads are complete. - + B bytes B - + KiB kibibytes (1024 bytes) KiB/s - + MiB mebibytes (1024 kibibytes) MiB - + GiB gibibytes (1024 mibibytes) GiB - + TiB tebibytes (1024 gibibytes) TiB - + %1h %2m e.g: 3hours 5minutes %1ώ %2λ - + %1d %2h e.g: 2days 10hours %1μ %2ώ @@ -8146,10 +8204,10 @@ However, those plugins were disabled. μ - - - - + + + + Unknown Άγνωστο @@ -8164,19 +8222,19 @@ However, those plugins were disabled. μ - + Unknown Unknown (size) Άγνωστο - + < 1m < 1 minute < 1λ - + %1m e.g: 10minutes %1λ diff --git a/src/lang/qbittorrent_en.ts b/src/lang/qbittorrent_en.ts index 191d4b993..7e898bdac 100644 --- a/src/lang/qbittorrent_en.ts +++ b/src/lang/qbittorrent_en.ts @@ -758,87 +758,87 @@ You should get this information from your Web browser preferences. GUI - + Open Torrent Files - + Torrent Files - + qBittorrent %1 e.g: qBittorrent v0.x - + qBittorrent is not the default application to open torrent files or Magnet links. Do you want to associate qBittorrent to torrent files and Magnet links? - + qBittorrent - - + + DL speed: %1 KiB/s e.g: Download speed: 10 KiB/s - - + + UP speed: %1 KiB/s e.g: Upload speed: 10 KiB/s - + %1 has finished downloading. e.g: xxx.avi has finished downloading. - + I/O Error i.e: Input/Output Error - + Search - + RSS - + Alt+1 shortcut to switch to first tab - + Url download error - + Couldn't download file at url: %1, reason: %2. - + An I/O error occured for torrent %1. Reason: %2 e.g: An error occured for torrent xxx.avi. @@ -846,104 +846,151 @@ Do you want to associate qBittorrent to torrent files and Magnet links? - + + Set the password... + + + + Transfers - + Torrent file association - + + + Password lock + + + + + + Please define the locking password: + + + + + Password update + + + + + The UI lock password has been successfully updated + + + + Transfers (%1) - + Download completion - + Alt+2 shortcut to switch to third tab - + Ctrl+F shortcut to switch to search tab - + Alt+3 shortcut to switch to fourth tab - + Recursive download confirmation - + The torrent %1 contains torrent files, do you want to proceed with their download? - - + + Yes - - + + No - + Never - + Global Upload Speed Limit - + Global Download Speed Limit - + + UI lock password + + + + + Please type the UI lock password: + + + + + Invalid password + + + + + The password is invalid + + + + Exiting qBittorrent - + Some files are currently transferring. Are you sure you want to quit qBittorrent? - + Always - + qBittorrent %1 (Down: %2/s, Up: %3/s) %1 is qBittorrent version - + Options were saved successfully. @@ -1485,163 +1532,174 @@ No further notices will be issued. - + &Add File... - + E&xit - + &Options... - + Add &URL... - + Torrent &creator - + Log viewer - - + + Alternative speed limits - + Top &tool bar - + Display top tool bar - + &Speed in title bar - + Show transfer speed in title bar - + &About - + &Start - + &Pause - + &Delete - + P&ause All - + S&tart All - + Visit &Website - + Preview file - + Clear log - + Report a &bug - + Set upload limit... - + Set download limit... - + &Documentation - + Set global download limit... - + Set global upload limit... - + &Log viewer... - + &RSS reader - + Search &engine - + Shutdown when downloads complete - + + + Lock qBittorrent + + + + + Ctrl+L + + + + Decrease priority - + Increase priority @@ -3489,263 +3547,263 @@ Please install it manually. TransferListWidget - + Down Speed i.e: Download speed - + Up Speed i.e: Upload speed - + ETA i.e: Estimated Time of Arrival / Time left - + Column visibility - + Start - + Pause - + Delete - + Name i.e: torrent name - + Size i.e: torrent size - + Done % Done - + Status Torrent status (e.g. downloading, seeding, paused) - + Seeds i.e. full sources (often untranslated) - + Peers i.e. partial sources (often untranslated) - + Ratio Share ratio - - + + Label - + Added On Torrent was added to transfer list on 01/01/2010 08:00 - + Completed On Torrent was completed on 01/01/2010 08:00 - + Down Limit i.e: Download limit - + Up Limit i.e: Upload limit - + Choose save path - + Save path creation error - + Could not create the save path - + Torrent Download Speed Limiting - + Torrent Upload Speed Limiting - + New Label - + Label: - + Invalid label name - + Please don't use any special characters in the label name. - + Rename - + New name: - + Preview file... - + Limit upload rate... - + Limit download rate... - + Open destination folder - + Move up i.e. move up in the queue - + Move down i.e. Move down in the queue - + Move to top i.e. Move to top of the queue - + Move to bottom i.e. Move to bottom of the queue - + Set location... - + Priority - + Force recheck - + Copy magnet link - + Super seeding mode - + Rename... - + Download in sequential order - + Download first and last piece first - + New... New label... - + Reset Reset label @@ -4531,74 +4589,74 @@ However, those plugins were disabled. misc - + B bytes - + KiB kibibytes (1024 bytes) - + MiB mebibytes (1024 kibibytes) - + GiB gibibytes (1024 mibibytes) - + TiB tebibytes (1024 gibibytes) - + %1h %2m e.g: 3hours 5minutes - + %1d %2h e.g: 2days 10hours - + Unknown Unknown (size) - + qBittorrent will shutdown the computer now because all downloads are complete. - - - - + + + + Unknown - + < 1m < 1 minute - + %1m e.g: 10minutes diff --git a/src/lang/qbittorrent_es.ts b/src/lang/qbittorrent_es.ts index 8a6a7558e..b56ca20d5 100644 --- a/src/lang/qbittorrent_es.ts +++ b/src/lang/qbittorrent_es.ts @@ -1941,12 +1941,12 @@ Debe obtener esta información de las preferencias de su navegador Web.No se pudo crear el directorio: - + Open Torrent Files Abrir archivos Torrent - + Torrent Files Archivos Torrent @@ -2078,7 +2078,7 @@ Debe obtener esta información de las preferencias de su navegador Web. qBittorrent - + qBittorrent qBittorrent @@ -2328,7 +2328,7 @@ Por favor cierra el otro antes. Por favor espere... - + Transfers Transferencia @@ -2355,7 +2355,7 @@ Por favor cierra el otro antes. - + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 @@ -2423,15 +2423,15 @@ Por favor cierra el otro antes. qBittorrent %1 iniciado. - - + + DL speed: %1 KiB/s e.g: Download speed: 10 KiB/s Vel. de Bajada: %1 KiB/s - - + + UP speed: %1 KiB/s e.g: Upload speed: 10 KiB/s Vel. de Subida: %1 KiB/s @@ -2514,13 +2514,13 @@ Por favor cierra el otro antes. '%1' reiniciado. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 ha terminado de descargarse. - + I/O Error i.e: Input/Output Error Error de Entrada/Salida @@ -2580,39 +2580,66 @@ Por favor cierra el otro antes. Ha ocurrido un error (¿Disco lleno?), '%1' pausado. - + Search Buscar - + Torrent file association Asociación de archivos Torrent - + + Set the password... + + + + qBittorrent is not the default application to open torrent files or Magnet links. Do you want to associate qBittorrent to torrent files and Magnet links? qBittorrent no es la aplicación por defecto para abrir archivos Torrent o enlaces Magnet. ¿Quiere que qBittorrent sea el programa por defecto para gestionar estos archivos? - + + + Password lock + + + + + + Please define the locking password: + + + + + Password update + + + + + The UI lock password has been successfully updated + + + + RSS RSS - + Transfers (%1) Transferencias (%1) - + Download completion Descarga completada - + An I/O error occured for torrent %1. Reason: %2 e.g: An error occured for torrent xxx.avi. @@ -2621,61 +2648,81 @@ Do you want to associate qBittorrent to torrent files and Magnet links? Razón: %2 - + Alt+2 shortcut to switch to third tab Alt+2 - + Alt+3 shortcut to switch to fourth tab Alt+3 - + Recursive download confirmation Confirmación descargas recursivas - + The torrent %1 contains torrent files, do you want to proceed with their download? Este torrent %1 contiene archivos torrent, ¿quiere seguir adelante con su descarga? - - + + Yes - - + + No No - + Never Nunca - + Global Upload Speed Limit Límite global de subida - + Global Download Speed Limit Limite global de bajada - + + UI lock password + + + + + Please type the UI lock password: + + + + + Invalid password + + + + + The password is invalid + + + + Exiting qBittorrent Cerrando qBittorrent - + Always Siempre @@ -2685,7 +2732,7 @@ Do you want to associate qBittorrent to torrent files and Magnet links? qBittorrent %1 - + qBittorrent %1 (Down: %2/s, Up: %3/s) %1 is qBittorrent version qBittorrent %1 (Bajada: %2/s, Subida: %3/s) @@ -2763,7 +2810,7 @@ Are you sure you want to quit qBittorrent? Radio - + Alt+1 shortcut to switch to first tab Alt+1 @@ -2784,12 +2831,12 @@ Are you sure you want to quit qBittorrent? Alt+4 - + Url download error Error de descarga de Url - + Couldn't download file at url: %1, reason: %2. No se pudo descargar el archivo en la url: %1, razón: %2. @@ -2820,7 +2867,7 @@ Are you sure you want to quit qBittorrent? Alt+3 - + Ctrl+F shortcut to switch to search tab Ctrl + F @@ -2831,7 +2878,7 @@ Are you sure you want to quit qBittorrent? '%1' fue eliminado porque su radio llegó al valor máximo que estableciste. - + Some files are currently transferring. Are you sure you want to quit qBittorrent? Algunos archivos están aún transfiriendose. @@ -2863,7 +2910,7 @@ Are you sure you want to quit qBittorrent? qBittorrent %1 (DL: %2KiB/s, UP: %3KiB/s) - + Options were saved successfully. Opciones guardadas correctamente. @@ -3483,17 +3530,17 @@ Probablemente esto es algo que ya sabía, así que no le dirá otra vez.&Ver - + &Add File... &Agregar archivo... - + E&xit &Salir - + &Options... &Opciones... @@ -3526,22 +3573,22 @@ Probablemente esto es algo que ya sabía, así que no le dirá otra vez.Visite mi sitio Web - + Add &URL... Añadir &URL... - + Torrent &creator Crear &Torrent - + Set upload limit... Límitie de Subidad... - + Set download limit... Límite de Bajada... @@ -3550,92 +3597,103 @@ Probablemente esto es algo que ya sabía, así que no le dirá otra vez.Documentación - + &About &Acerca de - + &Start &Comenzar - + &Pause &Pausar - + &Delete &Borrar - + P&ause All Pa&usar Todas - + S&tart All Comenzar &Todas - + Visit &Website &Visite mi sitio Web - + Report a &bug Comunicar un &bug - + &Documentation &Documentación - + Set global download limit... Límite global de Bajada... - + Set global upload limit... Límite global de Subida... - + &Log viewer... Visor de &registros... - + Log viewer Visor de registros - + Shutdown when downloads complete + + + + Lock qBittorrent + + + + + Ctrl+L + + Log Window Ventana de registro - - + + Alternative speed limits Límites de velocidad alternativa - + &RSS reader &Lector RSS - + Search &engine &Motor de búsqueda @@ -3652,22 +3710,22 @@ Probablemente esto es algo que ya sabía, así que no le dirá otra vez.Usar límites de velocidad alternativa - + Top &tool bar Barra &Herramientas superior - + Display top tool bar Mostrar barra heramientas superior - + &Speed in title bar &Velocidad en la barra - + Show transfer speed in title bar Mostrar velocidad en la barra de título @@ -3768,12 +3826,12 @@ Probablemente esto es algo que ya sabía, así que no le dirá otra vez.Transferidos - + Preview file Previsualizar archivo - + Clear log Limpiar registro @@ -3822,12 +3880,12 @@ Probablemente esto es algo que ya sabía, así que no le dirá otra vez.Abrir torrent - + Decrease priority Disminuir prioridad - + Increase priority Incrementar prioridad @@ -6254,13 +6312,13 @@ Por favor, instálelo de forma manual. Velocidad de Subida - + Down Speed i.e: Download speed Vel. Bajada - + Up Speed i.e: Upload speed Vel. Subida @@ -6270,7 +6328,7 @@ Por favor, instálelo de forma manual. Radio - + ETA i.e: Estimated Time of Arrival / Time left Tiemp aprox @@ -6284,22 +6342,22 @@ Por favor, instálelo de forma manual. &No - + Column visibility Visibilidad de columnas - + Start Comenzar - + Pause Pausar - + Delete Borrar @@ -6320,150 +6378,150 @@ Por favor, instálelo de forma manual. Borrar permanentemente - + Name i.e: torrent name Nombre - + Size i.e: torrent size Tamaño - + Done % Done Progreso - + Status Torrent status (e.g. downloading, seeding, paused) Estado - + Seeds i.e. full sources (often untranslated) Semillas - + Peers i.e. partial sources (often untranslated) Pares - + Ratio Share ratio Ratio - - + + Label Etiqueta - + Added On Torrent was added to transfer list on 01/01/2010 08:00 Añadido el - + Completed On Torrent was completed on 01/01/2010 08:00 Completado el - + Down Limit i.e: Download limit Límite Bajada - + Up Limit i.e: Upload limit Límite Subida - + Choose save path Seleccione un directorio de destino - + Save path creation error Error en la creación del directorio de destino - + Could not create the save path No se pudo crear el directorio de destino - + Torrent Download Speed Limiting Límite de velocidad de Bajada Torrent - + Torrent Upload Speed Limiting Límite de velocidad de Subida Torrent - + New Label Nueva Etiqueta - + Label: Etiqueta: - + Invalid label name Nombre de Etiqueta no válido - + Please don't use any special characters in the label name. Por favor, no utilice caracteres especiales para el nombre de la Etiqueta. - + Rename Renombrar - + New name: Nuevo nombre: - + Preview file... Previsualizar archivo... - + Limit upload rate... Tasa límite de Subida... - + Limit download rate... Tasa límite de Bajada... - + Priority Prioridad @@ -6476,36 +6534,36 @@ Por favor, instálelo de forma manual. Tasa límite de Bajada - + Open destination folder Abrir carpeta de destino - + Move up i.e. move up in the queue - + Move down i.e. Move down in the queue - + Move to top i.e. Move to top of the queue - + Move to bottom i.e. Move to bottom of the queue - + Set location... Establecer destino... @@ -6522,43 +6580,43 @@ Por favor, instálelo de forma manual. Disminuir prioridad - + Force recheck Forzar verificación de archivo - + Copy magnet link Copiar magnet link - + Super seeding mode Modo de SuperSiembra - + Rename... Renombrar... - + Download in sequential order Descargar en orden secuencial - + Download first and last piece first Descargar primero, primeras y últimas partes - + New... New label... Nueva... - + Reset Reset label Borrar todas las Etiquetas @@ -7846,48 +7904,48 @@ De cualquier forma, esos plugins fueron deshabilitados. misc - + qBittorrent will shutdown the computer now because all downloads are complete. - + B bytes B - + KiB kibibytes (1024 bytes) KiB - + MiB mebibytes (1024 kibibytes) MiB - + GiB gibibytes (1024 mibibytes) GiB - + TiB tebibytes (1024 gibibytes) TiB - + %1h %2m e.g: 3hours 5minutes - + %1d %2h e.g: 2days 10hours @@ -7908,10 +7966,10 @@ De cualquier forma, esos plugins fueron deshabilitados. d - - - - + + + + Unknown Desconocido @@ -7926,19 +7984,19 @@ De cualquier forma, esos plugins fueron deshabilitados. d - + Unknown Unknown (size) Desconocido - + < 1m < 1 minute <1m - + %1m e.g: 10minutes %1m diff --git a/src/lang/qbittorrent_fi.ts b/src/lang/qbittorrent_fi.ts index 06e61f86b..ab3fb8531 100644 --- a/src/lang/qbittorrent_fi.ts +++ b/src/lang/qbittorrent_fi.ts @@ -1983,7 +1983,7 @@ Sinun pitäisi löytää nämä tiedot web-selaimesi asetuksista. Hakupalvelua ei ole valittu - + Open Torrent Files Avaa torrent-tiedostoja @@ -2113,12 +2113,12 @@ Uutta esikatselua ei voi aloittaa. Tiedosto ei ole kelvollinen torrent-tiedosto. - + Torrent Files Torrent-tiedostot - + Transfers Siirrot @@ -2152,7 +2152,7 @@ Uutta esikatselua ei voi aloittaa. - + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 @@ -2210,66 +2210,86 @@ Uutta esikatselua ei voi aloittaa. Lataajia - + Alt+2 shortcut to switch to third tab Alt+2 - + Alt+3 shortcut to switch to fourth tab Alt+3 - + Recursive download confirmation Vahvistus rekursiiviseen lataukseen - + The torrent %1 contains torrent files, do you want to proceed with their download? Torentti %1 sisältää torrent-tiedostoja, jatketaanko latausta? - - + + Yes Kyllä - - + + No Ei - + Never Ei koskaan - + Global Upload Speed Limit Yleinen lähetysnopeusrajoitus - + Global Download Speed Limit Yleinen latausnopeusrajoitus - + + UI lock password + + + + + Please type the UI lock password: + + + + + Invalid password + + + + + The password is invalid + + + + Exiting qBittorrent Lopetetaan qBittorrent - + qBittorrent qBittorrent - + Always Aina @@ -2279,21 +2299,21 @@ Uutta esikatselua ei voi aloittaa. qBittorrent %1 - - + + DL speed: %1 KiB/s e.g: Download speed: 10 KiB/s Latausnopeus: %1 KiB/s - - + + UP speed: %1 KiB/s e.g: Upload speed: 10 KiB/s Lähetysnopeus: %1 KiB/s - + qBittorrent %1 (Down: %2/s, Up: %3/s) %1 is qBittorrent version qBittorrent %1 (Lataus: %2/s, lähetys: %3/s) @@ -2359,13 +2379,13 @@ Uutta esikatselua ei voi aloittaa. Torrentin ”%1” lataamista jatkettiin. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. Lataus ”%1” tuli valmiiksi. - + I/O Error i.e: Input/Output Error I/O-virhe @@ -2403,17 +2423,17 @@ Uutta esikatselua ei voi aloittaa. Tapahtui virhe (levy on täynnä?). Lataus ”%1” pysäytettiin. - + Search Etsi - + Torrent file association Torrent-tiedoston liittäminen - + RSS RSS @@ -2469,30 +2489,57 @@ Haluatko varmasti lopettaa? Salaus [EI KÄYTÖSSÄ] - + Alt+1 shortcut to switch to first tab Alt+1 - + Download completion Latauksen valmistuminen - + + Set the password... + + + + qBittorrent is not the default application to open torrent files or Magnet links. Do you want to associate qBittorrent to torrent files and Magnet links? qBittorrent ei ole torrent-tiedostojen tai Magnet-linkkien oletusohjelmisto. Haluatko, että qBittorrent käsittelee nämä oletusarvoisesti? - + + + Password lock + + + + + + Please define the locking password: + + + + + Password update + + + + + The UI lock password has been successfully updated + + + + Transfers (%1) Siirrot (%1) - + An I/O error occured for torrent %1. Reason: %2 e.g: An error occured for torrent xxx.avi. @@ -2511,12 +2558,12 @@ Haluatko, että qBittorrent käsittelee nämä oletusarvoisesti? Alt+4 - + Url download error Latausvirhe - + Couldn't download file at url: %1, reason: %2. Tiedoston lataaminen osoitteesta %1 epäonnistui: %2. @@ -2539,13 +2586,13 @@ Haluatko, että qBittorrent käsittelee nämä oletusarvoisesti? Alt+3 - + Ctrl+F shortcut to switch to search tab Ctrl+F - + Some files are currently transferring. Are you sure you want to quit qBittorrent? Tiedostoja on siirrotta. @@ -2615,7 +2662,7 @@ Haluatko varmasti lopettaa qBittorrentin? Lähetykset - + Options were saved successfully. Valinnat tallennettiin. @@ -3154,7 +3201,7 @@ Muita varoituksia ei anneta. Tyhjennä - + Clear log Tyhjennä loki @@ -3238,7 +3285,7 @@ Muita varoituksia ei anneta. Asetukset - + Preview file Esikatsele @@ -3353,17 +3400,17 @@ Muita varoituksia ei anneta. &Näytä - + &Add File... &Lisää tiedosto... - + E&xit &Poistu - + &Options... V&alinnat... @@ -3372,141 +3419,152 @@ Muita varoituksia ei anneta. Käy web-sivustolla - + &About &Tietoja - + &Start &Käynnistä - + &Pause &Pysäytä - + &Delete &Poista - + P&ause All P&ysäytä kaikki - + S&tart All K&äynnistä kaikki - + Visit &Website Käy &web-sivustolla - + Add &URL... Lisää &Url... - + Torrent &creator Torrentin &valmistaja - + Report a &bug Ilmoita &virheestä - + Set upload limit... Aseta lähetysnopeusrajoitus... - + Set download limit... Aseta latausnopeusrajoitus... - + &Documentation &Dokumentaatio - + Set global download limit... Aseta yleinen latausnopeusrajoitus... - + Set global upload limit... Aseta yleinen lähetysnopeusrajoitus... - + Decrease priority Laske prioriteettia - + Increase priority Nosta prioriteettia - + &Log viewer... &Lokin katselu... - + Log viewer Lokin katselu - - + + Alternative speed limits Vaihtoehtoiset nopeusrajoitukset - + Top &tool bar &Ylätyökalupalkki - + Display top tool bar Näytä ylätyökalupalkki - + &Speed in title bar &Nopeus otsikkorivillä - + Show transfer speed in title bar Näytä nopeus otsikkorivillä - + &RSS reader &RSS-lukija - + Search &engine &Hakupalvelu - + Shutdown when downloads complete + + + + Lock qBittorrent + + + + + Ctrl+L + + Search engine Hakupalvelu @@ -5941,13 +5999,13 @@ Asenna se itse. Lähetysnopeus - + Down Speed i.e: Download speed Latausnopeus - + Up Speed i.e: Upload speed Lähetysnopeus @@ -5962,7 +6020,7 @@ Asenna se itse. Jakosuhde - + ETA i.e: Estimated Time of Arrival / Time left Aikaa jäljellä @@ -5976,22 +6034,22 @@ Asenna se itse. &Ei - + Column visibility Sarakkeen näkyvyys - + Start Käynnistä - + Pause Pysäytä - + Delete Poista @@ -6012,150 +6070,150 @@ Asenna se itse. Poista pysyvästi - + Name i.e: torrent name Nimi - + Size i.e: torrent size Koko - + Done % Done Valmis - + Status Torrent status (e.g. downloading, seeding, paused) Tila - + Seeds i.e. full sources (often untranslated) Jakajia - + Peers i.e. partial sources (often untranslated) Asiakkaita - + Ratio Share ratio Jakosuhde - - + + Label Nimike - + Added On Torrent was added to transfer list on 01/01/2010 08:00 Lisätty - + Completed On Torrent was completed on 01/01/2010 08:00 Valmistui - + Down Limit i.e: Download limit Latausraja - + Up Limit i.e: Upload limit Lähetysraja - + Choose save path Valitse tallennuskansio - + Save path creation error Tallennuskansion luominen epäonnistui - + Could not create the save path Tallennuskansion luominen epäonnistui - + Torrent Download Speed Limiting Torrentin latausnopeuden rajoitus - + Torrent Upload Speed Limiting Torrentin lähetysnopeuden rajoitin - + New Label Uusi nimike - + Label: Nimike: - + Invalid label name Virheellinen nimike - + Please don't use any special characters in the label name. Älä käytä erikoismerkkejä nimikkeessä. - + Rename Nimeä uudelleen - + New name: Uusi nimi: - + Preview file... Esikatsele... - + Limit upload rate... Rajoita lähetysnopeus... - + Limit download rate... Rajoita latausnopeus... - + Priority Prioriteetti @@ -6168,36 +6226,36 @@ Asenna se itse. Rajoita latausnopeus - + Open destination folder Avaa kohdekansio - + Move up i.e. move up in the queue - + Move down i.e. Move down in the queue - + Move to top i.e. Move to top of the queue - + Move to bottom i.e. Move to bottom of the queue - + Set location... Aseta kohde... @@ -6214,43 +6272,43 @@ Asenna se itse. Laske prioriteettia - + Force recheck Pakota tarkistamaan uudelleen - + Copy magnet link Kopioi magnet-linkki - + Super seeding mode super seed -tila - + Rename... Nimeä uudelleen... - + Download in sequential order Lataa järjestyksessä - + Download first and last piece first Lataa ensin ensimmäinen ja viimeinen osa - + New... New label... Uusi... - + Reset Reset label Palauta @@ -7507,7 +7565,7 @@ Kyseiset liitänäiset poistettiin kuitenkin käytöstä. misc - + B bytes B @@ -7518,7 +7576,7 @@ Kyseiset liitänäiset poistettiin kuitenkin käytöstä. d - + GiB gibibytes (1024 mibibytes) GiB @@ -7534,7 +7592,7 @@ Kyseiset liitänäiset poistettiin kuitenkin käytöstä. h - + KiB kibibytes (1024 bytes) KiB @@ -7545,56 +7603,56 @@ Kyseiset liitänäiset poistettiin kuitenkin käytöstä. m - + MiB mebibytes (1024 kibibytes) MiB - + TiB tebibytes (1024 gibibytes) TiB - - - - + + + + Unknown Tuntematon - + %1h %2m e.g: 3hours 5minutes %1 h %2 min - + %1d %2h e.g: 2days 10hours %1 d %2 h - + Unknown Unknown (size) Tuntematon - + qBittorrent will shutdown the computer now because all downloads are complete. - + < 1m < 1 minute alle minuutti - + %1m e.g: 10minutes %1 min diff --git a/src/lang/qbittorrent_fr.ts b/src/lang/qbittorrent_fr.ts index 828ca29bb..f920c084b 100644 --- a/src/lang/qbittorrent_fr.ts +++ b/src/lang/qbittorrent_fr.ts @@ -2089,7 +2089,7 @@ Vous pouvez récupérer ces informations à partir des préférences de votre na Impossible de trouver le dossier : ' - + Open Torrent Files Ouvrir fichiers torrent @@ -2198,7 +2198,7 @@ Vous pouvez récupérer ces informations à partir des préférences de votre na Impossible de créer le dossier : - + Torrent Files Fichiers Torrent @@ -2534,7 +2534,7 @@ Veuillez d'abord le quitter. Veuillez patienter... - + Transfers Transferts @@ -2561,7 +2561,7 @@ Veuillez d'abord le quitter. - + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 @@ -2629,7 +2629,7 @@ Veuillez d'abord le quitter. qBittorrent %1 démarré. - + qBittorrent qBittorrent @@ -2639,15 +2639,15 @@ Veuillez d'abord le quitter. qBittorrent %1 - - + + DL speed: %1 KiB/s e.g: Download speed: 10 KiB/s Vitesse DL : %1 Ko/s - - + + UP speed: %1 KiB/s e.g: Upload speed: 10 KiB/s Vitesse UP : %1 Ko/s @@ -2730,13 +2730,13 @@ Veuillez d'abord le quitter. '%1' a été relancé. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. Le téléchargement de %1 est terminé. - + I/O Error i.e: Input/Output Error Erreur E/S @@ -2796,12 +2796,12 @@ Veuillez d'abord le quitter. Une erreur s'est produite (disque plein ?), '%1' a été mis en pause. - + Search Recherche - + Torrent file association Association aux fichiers Torrent @@ -2812,29 +2812,56 @@ Do you want to associate qBittorrent to torrent files? Voulez-vous réaliser cette association ? - + + Set the password... + + + + qBittorrent is not the default application to open torrent files or Magnet links. Do you want to associate qBittorrent to torrent files and Magnet links? qBittorrent n'est pas l'application utilisée pour ouvrir les fichiers torrent ou les liens Magnet. Voulez-vous corriger cela ? - + + + Password lock + + + + + + Please define the locking password: + + + + + Password update + + + + + The UI lock password has been successfully updated + + + + RSS - + Transfers (%1) Transferts (%1) - + Download completion Fin du téléchargement - + An I/O error occured for torrent %1. Reason: %2 e.g: An error occured for torrent xxx.avi. @@ -2843,50 +2870,70 @@ Voulez-vous corriger cela ? Raison : %2 - + Alt+2 shortcut to switch to third tab Alt+é - + Recursive download confirmation Confirmation pour téléchargement récursif - + The torrent %1 contains torrent files, do you want to proceed with their download? Le torrent %1 contients des fichiers torrents, desirez-vous les mettre en téléchargement ? - - + + Yes Oui - - + + No Non - + Never Jamais - + + UI lock password + + + + + Please type the UI lock password: + + + + + Invalid password + + + + + The password is invalid + + + + Exiting qBittorrent Fermeture de qBittorrent - + Always Toujours - + qBittorrent %1 (Down: %2/s, Up: %3/s) %1 is qBittorrent version qBittorrent %1 (Réception : %2/s, Envoi : %3/s) @@ -2968,7 +3015,7 @@ Etes-vous certain de vouloir quitter qBittorrent ? Ratio - + Alt+1 shortcut to switch to first tab Alt+& @@ -2989,12 +3036,12 @@ Etes-vous certain de vouloir quitter qBittorrent ? Alt+' - + Url download error Erreur téléchargement url - + Couldn't download file at url: %1, reason: %2. Impossible de télécharger le fichier à l'url : %1, raison : %2. @@ -3025,29 +3072,29 @@ Etes-vous certain de vouloir quitter qBittorrent ? Alt+" - + Ctrl+F shortcut to switch to search tab - + Alt+3 shortcut to switch to fourth tab Alt+" - + Global Upload Speed Limit Limite globale de la vitesse d'envoi - + Global Download Speed Limit Limite globale de la vitesse de réception - + Some files are currently transferring. Are you sure you want to quit qBittorrent? Certains fichiers sont en cours de transfert. @@ -3117,7 +3164,7 @@ Etes-vous certain de vouloir quitter qBittorrent ? Partages - + Options were saved successfully. Préférences sauvegardées avec succès. @@ -3753,17 +3800,17 @@ Ce message d'avertissement ne sera plus affiché. A&ffichage - + &Add File... &Ajouter un fichier... - + E&xit &Quitter - + &Options... &Options... @@ -3796,112 +3843,123 @@ Ce message d'avertissement ne sera plus affiché. Visiter le site officiel - + &About &A Propos - + &Start &Démarrer - + &Pause Mettre en &pause - + &Delete &Supprimer - + P&ause All Tout &mettre en pause - + S&tart All Tout déma&rrer - + Visit &Website &Visiter le site officiel - + Add &URL... Ajouter une &URL... - + Torrent &creator &Créateur de torrent - + Report a &bug Signaler un &bogue - + Set upload limit... Définir limite d'envoi... - + Set download limit... Définir limite de réception... - + &Documentation &Documentation - + Set global download limit... Définir limite globale de réception... - + Set global upload limit... Définir limite globale d'envoi... - + &Log viewer... &Journal d'exécution... - + Log viewer Journal d'exécution - + Shutdown when downloads complete + + + + Lock qBittorrent + + + + + Ctrl+L + + Log Window Journal d'exécution - - + + Alternative speed limits Vitesses limites alternatives - + &RSS reader Lecteur &RSS - + Search &engine &Moteur de recherche @@ -3918,22 +3976,22 @@ Ce message d'avertissement ne sera plus affiché. Utiliser les limites de vitesse alternatives - + Top &tool bar Barre d'ou&tils - + Display top tool bar Afficher la barre d'outils - + &Speed in title bar &Vitesses dans le titre de la fenêtre - + Show transfer speed in title bar Afficher les vitesses de transfert dans le titre de la fenêtre @@ -4034,12 +4092,12 @@ Ce message d'avertissement ne sera plus affiché. Transferts - + Preview file Prévisualiser fichier - + Clear log Effacer journal @@ -4092,12 +4150,12 @@ Ce message d'avertissement ne sera plus affiché. Ouvrir un torrent - + Decrease priority Diminuer la priorité - + Increase priority Augmenter la priorité @@ -6625,13 +6683,13 @@ Veuillez l'installer manuellement. Vitesse UP - + Down Speed i.e: Download speed Vitesse DL - + Up Speed i.e: Upload speed Vitesse UP @@ -6646,7 +6704,7 @@ Veuillez l'installer manuellement. Ratio - + ETA i.e: Estimated Time of Arrival / Time left Restant @@ -6660,22 +6718,22 @@ Veuillez l'installer manuellement. &Non - + Column visibility Visibilité des colonnes - + Start Démarrer - + Pause Pause - + Delete Supprimer @@ -6696,150 +6754,150 @@ Veuillez l'installer manuellement. Supprimer depuis le disque - + Name i.e: torrent name Nom - + Size i.e: torrent size Taille - + Done % Done Reçu - + Status Torrent status (e.g. downloading, seeding, paused) Etat - + Seeds i.e. full sources (often untranslated) Seeds - + Peers i.e. partial sources (often untranslated) Peers - + Ratio Share ratio Ratio - - + + Label Catégorie - + Added On Torrent was added to transfer list on 01/01/2010 08:00 Ajouté le - + Completed On Torrent was completed on 01/01/2010 08:00 Terminé le - + Down Limit i.e: Download limit Limite réception - + Up Limit i.e: Upload limit Limite envoi - + Choose save path Choix du répertoire de destination - + Save path creation error Erreur lors de la création du répertoire de destination - + Could not create the save path Impossible de créer le répertoire de destination - + Torrent Download Speed Limiting Limitation de la vitesse de réception - + Torrent Upload Speed Limiting Limitation de la vitesse d'envoi - + New Label Nouvelle catégorie - + Label: Catégorie : - + Invalid label name Nom de catégorie incorrect - + Please don't use any special characters in the label name. Veuillez ne pas utiliser de caractères spéciaux dans le nom de catégorie. - + Rename Renommer - + New name: Nouveau nom : - + Preview file... Prévisualiser fichier... - + Limit upload rate... Limiter vitesse d'envoi... - + Limit download rate... Limiter vitesse de réception... - + Priority Priorité @@ -6852,36 +6910,36 @@ Veuillez l'installer manuellement. Limiter la vitesse de réception - + Open destination folder Ouvrir le répertoire de destination - + Move up i.e. move up in the queue - + Move down i.e. Move down in the queue - + Move to top i.e. Move to top of the queue - + Move to bottom i.e. Move to bottom of the queue - + Set location... Chemin de sauvegarde... @@ -6898,43 +6956,43 @@ Veuillez l'installer manuellement. Diminuer la priorité - + Force recheck Forcer revérification - + Copy magnet link Copier le lien magnet - + Super seeding mode Mode de super partage - + Rename... Renommer... - + Download in sequential order Téléchargement séquentiel - + Download first and last piece first Téléchargement prioritaire du début et de la fin - + New... New label... Nouvelle catégorie... - + Reset Reset label Réinitialiser catégorie @@ -8320,48 +8378,48 @@ Cependant, les greffons en question ont été désactivés. misc - + qBittorrent will shutdown the computer now because all downloads are complete. - + B bytes o - + KiB kibibytes (1024 bytes) Ko - + MiB mebibytes (1024 kibibytes) Mo - + GiB gibibytes (1024 mibibytes) Go - + TiB tebibytes (1024 gibibytes) To - + %1h %2m e.g: 3hours 5minutes %1h %2m - + %1d %2h e.g: 2days 10hours %1j %2h @@ -8382,10 +8440,10 @@ Cependant, les greffons en question ont été désactivés. j - - - - + + + + Unknown Inconnu @@ -8400,19 +8458,19 @@ Cependant, les greffons en question ont été désactivés. j - + Unknown Unknown (size) Inconnue - + < 1m < 1 minute < 1min - + %1m e.g: 10minutes %1min diff --git a/src/lang/qbittorrent_hr.ts b/src/lang/qbittorrent_hr.ts index 9fb879076..2766ecfe0 100644 --- a/src/lang/qbittorrent_hr.ts +++ b/src/lang/qbittorrent_hr.ts @@ -825,6 +825,42 @@ Do you want to associate qBittorrent to torrent files and Magnet links? Exiting qBittorrent Izlaz iz qBittorrenta + + Set the password... + + + + Password lock + + + + Please define the locking password: + + + + Password update + + + + The UI lock password has been successfully updated + + + + UI lock password + + + + Please type the UI lock password: + + + + Invalid password + + + + The password is invalid + + GeoIP @@ -1479,6 +1515,14 @@ Neće biti daljnjih napomena. Shutdown when downloads complete + + Lock qBittorrent + + + + Ctrl+L + + PeerAdditionDlg diff --git a/src/lang/qbittorrent_hu.ts b/src/lang/qbittorrent_hu.ts index 77c684118..1da3d4663 100644 --- a/src/lang/qbittorrent_hu.ts +++ b/src/lang/qbittorrent_hu.ts @@ -1875,7 +1875,7 @@ Ez megtudható a böngésző beállításaiból. GUI - + Open Torrent Files Megnyitás @@ -1904,7 +1904,7 @@ Ez megtudható a böngésző beállításaiból. Letöltés... - + Torrent Files Torrentek @@ -1944,7 +1944,7 @@ Kérlek előbb azt zárd be. - + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 @@ -2002,7 +2002,7 @@ Kérlek előbb azt zárd be. qBittorrent %1 elindítva. - + qBittorrent qBittorrent @@ -2012,15 +2012,15 @@ Kérlek előbb azt zárd be. qBittorrent %1 - - + + DL speed: %1 KiB/s e.g: Download speed: 10 KiB/s Letöltés: %1 KiB/s - - + + UP speed: %1 KiB/s e.g: Upload speed: 10 KiB/s Feltöltés: %1 KiB/s @@ -2093,13 +2093,13 @@ Kérlek előbb azt zárd be. '%1' elindítva. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 letöltve. - + I/O Error i.e: Input/Output Error I/O Hiba @@ -2137,44 +2137,71 @@ Kérlek előbb azt zárd be. Hiba történt (megtelt a merevlemez?), '%1' megállítva. - + Search Keresés - + Transfers Átvitelek - + + Set the password... + + + + Torrent file association Torrent fájl társítás - + qBittorrent is not the default application to open torrent files or Magnet links. Do you want to associate qBittorrent to torrent files and Magnet links? A qBittorrent nem az alapértelmezett .torrent vagy Magnet link kezelő alkalmazás. Szeretnéd alapértelmezetté tenni? - + + + Password lock + + + + + + Please define the locking password: + + + + + Password update + + + + + The UI lock password has been successfully updated + + + + RSS RSS - + Transfers (%1) Átvitelek (%1) - + Download completion Elkészült letöltés - + An I/O error occured for torrent %1. Reason: %2 e.g: An error occured for torrent xxx.avi. @@ -2183,50 +2210,70 @@ Szeretnéd alapértelmezetté tenni? Oka: %2 - + Alt+2 shortcut to switch to third tab Alt+2 - + Recursive download confirmation Letöltés ismételt megerősítése - + The torrent %1 contains torrent files, do you want to proceed with their download? A %1 torrent .torrent fájlokat is tartalmaz. Szeretnéd folytatni a letöltést? - - + + Yes Igen - - + + No Nem - + Never Soha - + + UI lock password + + + + + Please type the UI lock password: + + + + + Invalid password + + + + + The password is invalid + + + + Exiting qBittorrent qBittorrent bezárása - + Always Mindig - + qBittorrent %1 (Down: %2/s, Up: %3/s) %1 is qBittorrent version qBittorrent %1 (Letöltés: %2/s, Feltöltés: %3/s) @@ -2312,7 +2359,7 @@ Mégis leállítod a qBittorrentet? Arány - + Alt+1 shortcut to switch to first tab Alt+1 @@ -2333,12 +2380,12 @@ Mégis leállítod a qBittorrentet? Alt+4 - + Url download error Url letöltés hiba - + Couldn't download file at url: %1, reason: %2. Nem sikerült letölteni url címről: %1, mert: %2. @@ -2369,29 +2416,29 @@ Mégis leállítod a qBittorrentet? Alt+3 - + Ctrl+F shortcut to switch to search tab Ctrl+F - + Alt+3 shortcut to switch to fourth tab Alt+3 - + Global Upload Speed Limit Teljes feltöltési sebesség korlát - + Global Download Speed Limit Teljes letöltési sebesség korlát - + Some files are currently transferring. Are you sure you want to quit qBittorrent? Néhány átvitel még folyamatban van. @@ -2461,7 +2508,7 @@ Bizotos, hogy bezárod a qBittorrentet? Feltöltések - + Options were saved successfully. Beállítások sikeresen elmentve. @@ -3045,17 +3092,17 @@ Vélhetően tisztában vagy ezzel, így többé nem kapsz figyelmeztetést.&Nézet - + &Add File... &Fájl Hozzáadása... - + E&xit &Kilépés - + &Options... &Beállítások... @@ -3088,112 +3135,123 @@ Vélhetően tisztában vagy ezzel, így többé nem kapsz figyelmeztetést.Weboldal meglátogatása - + &About &Névjegy - + &Start &Indítás - + &Pause &Szünet - + &Delete &Törlés - + P&ause All Ö&sszes leállítása - + S&tart All Ö&sszes indítása - + Visit &Website Irány a &weboldal - + Add &URL... &URL hozzáadása... - + Torrent &creator Torrent &készítő - + Report a &bug &Hibajelentés - + Set upload limit... Feltöltési korlát megadása... - + Set download limit... Letöltési korlát megadása... - + &Documentation &Dokumentáció - + Set global download limit... Letöltési sebességkorlát... - + Set global upload limit... Feltöltési sebességkorlát... - + &Log viewer... &Eseménynapló... - + Log viewer Eseménynapló - + Shutdown when downloads complete + + + + Lock qBittorrent + + + + + Ctrl+L + + Log Window Naplózás - - + + Alternative speed limits Alternatív sebességkorlát - + &RSS reader &RSS olvasó - + Search &engine &Keresőmotor @@ -3206,22 +3264,22 @@ Vélhetően tisztában vagy ezzel, így többé nem kapsz figyelmeztetést.Alternatív sebesség limit használata - + Top &tool bar Felső &eszköz panel - + Display top tool bar Eszközsor megjelenítése - + &Speed in title bar &Sebesség a címsoron - + Show transfer speed in title bar Sebesség megjelenítése a címsoron @@ -3246,12 +3304,12 @@ Vélhetően tisztában vagy ezzel, így többé nem kapsz figyelmeztetést.Megosztási arány: - + Preview file Minta fájl - + Clear log Napló kiürítése @@ -3308,12 +3366,12 @@ Vélhetően tisztában vagy ezzel, így többé nem kapsz figyelmeztetést.Torrent megnyitása - + Decrease priority Elsőbbség csökkentése - + Increase priority Elsőbbség fokozása @@ -5753,13 +5811,13 @@ Kérlek telepítsd manuálisan. Folyamat - + Down Speed i.e: Download speed Letöltési sebesség - + Up Speed i.e: Upload speed Feltöltési sebesség @@ -5774,7 +5832,7 @@ Kérlek telepítsd manuálisan. Arány - + ETA i.e: Estimated Time of Arrival / Time left Idő @@ -5788,22 +5846,22 @@ Kérlek telepítsd manuálisan. &Nem - + Column visibility Oszlop megjelenítése - + Start Indítás - + Pause Szünet - + Delete Törlés @@ -5824,150 +5882,150 @@ Kérlek telepítsd manuálisan. Végleges törlés - + Name i.e: torrent name Név - + Size i.e: torrent size Méret - + Done % Done Elkészült - + Status Torrent status (e.g. downloading, seeding, paused) Állapot - + Seeds i.e. full sources (often untranslated) Seed - + Peers i.e. partial sources (often untranslated) Ügyfelek - + Ratio Share ratio Arány - - + + Label Címke - + Added On Torrent was added to transfer list on 01/01/2010 08:00 Hozáadva - + Completed On Torrent was completed on 01/01/2010 08:00 Elkészült - + Down Limit i.e: Download limit Letöltés limit - + Up Limit i.e: Upload limit Feltöltés limit - + Choose save path Mentés helye - + Save path creation error Járhatatlan ösvény - + Could not create the save path Nem sikerült létrehozni a letöltési könyvtárat. (Írásvédett?) - + Torrent Download Speed Limiting Torrent letöltési sebesség limit - + Torrent Upload Speed Limiting Torrent feltöltési sebesség limit - + New Label Új címke - + Label: Címke: - + Invalid label name Érvénytelen címke név - + Please don't use any special characters in the label name. Kérlek ne használj speciális karaktereket a címke nevében. - + Rename Átnevezés - + New name: Új név: - + Preview file... Minta fájl... - + Limit upload rate... Feltöltési arány limit... - + Limit download rate... Letöltési arány limit... - + Priority @@ -5980,36 +6038,36 @@ Kérlek telepítsd manuálisan. Letöltési sebesség limit - + Open destination folder Célkönyvtár megnyitása - + Move up i.e. move up in the queue - + Move down i.e. Move down in the queue - + Move to top i.e. Move to top of the queue - + Move to bottom i.e. Move to bottom of the queue - + Set location... Hely megadása... @@ -6026,43 +6084,43 @@ Kérlek telepítsd manuálisan. Elsőbbség csökkentése - + Force recheck Kényszerített ellenőrzés - + Copy magnet link Magnet link másolása - + Super seeding mode Szuper seed üzemmód - + Rename... Átnevezés... - + Download in sequential order Letöltés sorrendben - + Download first and last piece first Első és utolsó szelet letöltése először - + New... New label... Új... - + Reset Reset label Visszaállítás @@ -7246,74 +7304,74 @@ Viszont kikapcsoltam a modult. misc - + B bytes B - + KiB kibibytes (1024 bytes) KiB - + MiB mebibytes (1024 kibibytes) MiB - + GiB gibibytes (1024 mibibytes) GiB - + TiB tebibytes (1024 gibibytes) TiB - - - - + + + + Unknown Ismeretlen - + %1h %2m e.g: 3hours 5minutes %1ó %2p - + %1d %2h e.g: 2days 10hours %1nap %2ó - + Unknown Unknown (size) Ismeretlen - + qBittorrent will shutdown the computer now because all downloads are complete. - + < 1m < 1 minute < 1perc - + %1m e.g: 10minutes %1perc diff --git a/src/lang/qbittorrent_it.ts b/src/lang/qbittorrent_it.ts index a82facafa..b55ec6567 100644 --- a/src/lang/qbittorrent_it.ts +++ b/src/lang/qbittorrent_it.ts @@ -1915,7 +1915,7 @@ You should get this information from your Web browser preferences. GUI - + Open Torrent Files Apri file torrent @@ -1980,7 +1980,7 @@ You should get this information from your Web browser preferences. Impossibile creare la directory: - + Torrent Files File torrent @@ -2209,7 +2209,7 @@ Example: Downloading www.example.com/test.torrent Attendere prego... - + Transfers Trasferimenti @@ -2245,7 +2245,7 @@ Example: Downloading www.example.com/test.torrent - + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 @@ -2313,7 +2313,7 @@ Example: Downloading www.example.com/test.torrent qBittorrent %1 avviato. - + qBittorrent qBittorrent @@ -2323,15 +2323,15 @@ Example: Downloading www.example.com/test.torrent qBittorrent %1 - - + + DL speed: %1 KiB/s e.g: Download speed: 10 KiB/s Velocità DL: %1 KiB/s - - + + UP speed: %1 KiB/s e.g: Upload speed: 10 KiB/s Velocità UP: %1 KiB/s @@ -2414,13 +2414,13 @@ Example: Downloading www.example.com/test.torrent '%1' ripreso. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 è stato scaricato. - + I/O Error i.e: Input/Output Error Errore I/O @@ -2475,38 +2475,65 @@ Example: Downloading www.example.com/test.torrent Si è verificato un errore (disco pieno?), '%1' fermato. - + Search Ricerca - + Torrent file association - + + Set the password... + + + + qBittorrent is not the default application to open torrent files or Magnet links. Do you want to associate qBittorrent to torrent files and Magnet links? - + + + Password lock + + + + + + Please define the locking password: + + + + + Password update + + + + + The UI lock password has been successfully updated + + + + RSS RSS - + Transfers (%1) - + Download completion Completamento download - + An I/O error occured for torrent %1. Reason: %2 e.g: An error occured for torrent xxx.avi. @@ -2515,50 +2542,70 @@ Do you want to associate qBittorrent to torrent files and Magnet links? Motivo: %2 - + Alt+2 shortcut to switch to third tab Alt+2 - + Recursive download confirmation - + The torrent %1 contains torrent files, do you want to proceed with their download? - - + + Yes - - + + No No - + Never Mai - + + UI lock password + + + + + Please type the UI lock password: + + + + + Invalid password + + + + + The password is invalid + + + + Exiting qBittorrent - + Always - + qBittorrent %1 (Down: %2/s, Up: %3/s) %1 is qBittorrent version qBittorrent %1 (Down: %2/s, Up: %3/s) @@ -2628,7 +2675,7 @@ Sei sicuro di voler uscire da qBittorrent? Rapporto - + Alt+1 shortcut to switch to first tab Alt+1 @@ -2649,12 +2696,12 @@ Sei sicuro di voler uscire da qBittorrent? Alt+4 - + Url download error Errore download da indirizzo web - + Couldn't download file at url: %1, reason: %2. Impossibile scaricare il file all'indirizzo: %1, motivo: %2. @@ -2685,29 +2732,29 @@ Sei sicuro di voler uscire da qBittorrent? Alt+3 - + Ctrl+F shortcut to switch to search tab Ctrl+F - + Alt+3 shortcut to switch to fourth tab Alt+3 - + Global Upload Speed Limit Limite globale upload - + Global Download Speed Limit Limite globale download - + Some files are currently transferring. Are you sure you want to quit qBittorrent? Alcuni file sono ancora in trasferimento. @@ -2777,7 +2824,7 @@ Sei sicuro di voler chiudere qBittorrent? Upload - + Options were saved successfully. Le opzioni sono state salvate. @@ -3347,17 +3394,17 @@ No further notices will be issued. - + &Add File... - + E&xit - + &Options... @@ -3390,22 +3437,22 @@ No further notices will be issued. Visita il sito web - + Add &URL... - + Torrent &creator - + Set upload limit... - + Set download limit... @@ -3414,92 +3461,103 @@ No further notices will be issued. Documentazione - + &About - + &Start - + &Pause - + &Delete - + P&ause All - + S&tart All - + Visit &Website - + Report a &bug - + &Documentation - + Set global download limit... - + Set global upload limit... - + &Log viewer... - + Log viewer - + Shutdown when downloads complete + + + + Lock qBittorrent + + + + + Ctrl+L + + Log Window Finestra di log - - + + Alternative speed limits - + &RSS reader - + Search &engine @@ -3508,22 +3566,22 @@ No further notices will be issued. Motore di ricerca - + Top &tool bar - + Display top tool bar - + &Speed in title bar - + Show transfer speed in title bar @@ -3600,12 +3658,12 @@ No further notices will be issued. Trasferimenti - + Preview file Anteprima file - + Clear log Cancella log @@ -3658,12 +3716,12 @@ No further notices will be issued. Apri torrent - + Decrease priority Diminuisci priorità - + Increase priority Aumenta priorità @@ -6072,13 +6130,13 @@ Please install it manually. Dimensione - + Down Speed i.e: Download speed Velocità download - + Up Speed i.e: Upload speed Velocità upload @@ -6093,7 +6151,7 @@ Please install it manually. Rapporto - + ETA i.e: Estimated Time of Arrival / Time left ETA @@ -6107,22 +6165,22 @@ Please install it manually. &No - + Column visibility Visibilità colonna - + Start Avvia - + Pause Ferma - + Delete Cancella @@ -6143,150 +6201,150 @@ Please install it manually. Cancella permanentemente - + Name i.e: torrent name Nome - + Size i.e: torrent size Dimensione - + Done % Done % Completo - + Status Torrent status (e.g. downloading, seeding, paused) Status - + Seeds i.e. full sources (often untranslated) Seeds - + Peers i.e. partial sources (often untranslated) Peers - + Ratio Share ratio Rapporto - - + + Label Etichetta - + Added On Torrent was added to transfer list on 01/01/2010 08:00 - + Completed On Torrent was completed on 01/01/2010 08:00 - + Down Limit i.e: Download limit - + Up Limit i.e: Upload limit - + Choose save path Scegliere una directory di salvataggio - + Save path creation error Errore nella creazione della directory di salvataggio - + Could not create the save path Impossibile creare la directory di salvataggio - + Torrent Download Speed Limiting Limitazione velocità download - + Torrent Upload Speed Limiting Limitazione velocità upload - + New Label Nuova etichetta - + Label: Etichetta: - + Invalid label name - + Please don't use any special characters in the label name. - + Rename Rinomina - + New name: Nuovo nome: - + Preview file... - + Limit upload rate... - + Limit download rate... - + Priority Priorità @@ -6299,36 +6357,36 @@ Please install it manually. Limita il rapporto di download - + Open destination folder Apri cartella di destinazione - + Move up i.e. move up in the queue - + Move down i.e. Move down in the queue - + Move to top i.e. Move to top of the queue - + Move to bottom i.e. Move to bottom of the queue - + Set location... @@ -6345,43 +6403,43 @@ Please install it manually. Diminuisci priorità - + Force recheck Forza ricontrollo - + Copy magnet link Copia link magnetico - + Super seeding mode Modalità super seeding - + Rename... Rinomina... - + Download in sequential order Scarica in ordine sequenziale - + Download first and last piece first Scarica prima il primo e l'ultimo pezzo - + New... New label... Nuova... - + Reset Reset label Azzera @@ -7687,48 +7745,48 @@ Comunque, quei plugin sono stati disabilitati. misc - + qBittorrent will shutdown the computer now because all downloads are complete. - + B bytes B - + KiB kibibytes (1024 bytes) KiB - + MiB mebibytes (1024 kibibytes) MiB - + GiB gibibytes (1024 mibibytes) GiB - + TiB tebibytes (1024 gibibytes) TiB - + %1h %2m e.g: 3hours 5minutes - + %1d %2h e.g: 2days 10hours @@ -7744,10 +7802,10 @@ Comunque, quei plugin sono stati disabilitati. gg - - - - + + + + Unknown Sconosciuto @@ -7762,19 +7820,19 @@ Comunque, quei plugin sono stati disabilitati. h - + Unknown Unknown (size) Sconosciuta - + < 1m < 1 minute < 1m - + %1m e.g: 10minutes %1m diff --git a/src/lang/qbittorrent_ja.ts b/src/lang/qbittorrent_ja.ts index 5c54913bc..85e445677 100644 --- a/src/lang/qbittorrent_ja.ts +++ b/src/lang/qbittorrent_ja.ts @@ -1675,7 +1675,7 @@ You should get this information from your Web browser preferences. GUI - + Open Torrent Files Torrent ファイルを開く @@ -1704,7 +1704,7 @@ You should get this information from your Web browser preferences. ダウンロードしています.... - + Torrent Files Torrent ファイル @@ -1744,13 +1744,18 @@ Please close the other one first. - + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 - + + Set the password... + + + + Transfers @@ -1807,12 +1812,12 @@ Please close the other one first. qBittorrent %1 が開始されました。 - + qBittorrent qBittorrent - + Some files are currently transferring. Are you sure you want to quit qBittorrent? @@ -1823,15 +1828,15 @@ Are you sure you want to quit qBittorrent? qBittorrent %1 - - + + DL speed: %1 KiB/s e.g: Download speed: 10 KiB/s DL 速度: %1 KiB/s - - + + UP speed: %1 KiB/s e.g: Upload speed: 10 KiB/s UP 速度: %1 KiB/s @@ -1904,18 +1909,18 @@ Are you sure you want to quit qBittorrent? '%1' が再開されました。 - + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 はダウンロードが完了しました。 - + Download completion - + I/O Error i.e: Input/Output Error I/O エラー @@ -1953,17 +1958,17 @@ Are you sure you want to quit qBittorrent? エラーが発生しました (ディスクいっぱい?)、'%1' が停止されました。 - + Search 検索 - + Torrent file association - + RSS RSS @@ -2056,7 +2061,7 @@ qBittorrent を終了してもよろしいですか? - + Alt+1 shortcut to switch to first tab Alt+1 @@ -2077,12 +2082,12 @@ qBittorrent を終了してもよろしいですか? Alt+4 - + Url download error Url のダウンロード エラー - + Couldn't download file at url: %1, reason: %2. 次の url にあるファイルをダウンロードできませんでした: %1、理由: %2。 @@ -2113,7 +2118,7 @@ qBittorrent を終了してもよろしいですか? Alt+3 - + Ctrl+F shortcut to switch to search tab Ctrl+F @@ -2145,18 +2150,40 @@ qBittorrent を終了してもよろしいですか? qBittorrent %1 (DL: %2KiB/s、UP: %3KiB/s) - + qBittorrent is not the default application to open torrent files or Magnet links. Do you want to associate qBittorrent to torrent files and Magnet links? - + + + Password lock + + + + + + Please define the locking password: + + + + + Password update + + + + + The UI lock password has been successfully updated + + + + Transfers (%1) - + An I/O error occured for torrent %1. Reason: %2 e.g: An error occured for torrent xxx.avi. @@ -2164,71 +2191,91 @@ Do you want to associate qBittorrent to torrent files and Magnet links? - + Alt+2 shortcut to switch to third tab Alt+2 - + Alt+3 shortcut to switch to fourth tab Alt+3 - + Recursive download confirmation - + The torrent %1 contains torrent files, do you want to proceed with their download? - - + + Yes - - + + No - + Never しない - + Global Upload Speed Limit - + Global Download Speed Limit - + + UI lock password + + + + + Please type the UI lock password: + + + + + Invalid password + + + + + The password is invalid + + + + Exiting qBittorrent - + Always - + Options were saved successfully. オプションの保存に成功しました。 - + qBittorrent %1 (Down: %2/s, Up: %3/s) %1 is qBittorrent version @@ -2799,17 +2846,17 @@ No further notices will be issued. - + &Add File... - + E&xit - + &Options... @@ -2838,132 +2885,143 @@ No further notices will be issued. すべて開始 - + &About - + &Start - + &Pause - + &Delete - + P&ause All - + S&tart All - + Visit &Website - + Add &URL... - + Torrent &creator - + Report a &bug - + Set upload limit... - + Set download limit... - + &Documentation - + Set global download limit... - + Set global upload limit... - + &Log viewer... - + Log viewer - - + + Alternative speed limits - + &RSS reader - + Search &engine - + Shutdown when downloads complete + + + + Lock qBittorrent + + + + + Ctrl+L + + Search engine 検索エンジン - + Top &tool bar - + Display top tool bar - + &Speed in title bar - + Show transfer speed in title bar @@ -2988,12 +3046,12 @@ No further notices will be issued. セッション率: - + Preview file ファイルのプレビュー - + Clear log ログのクリア @@ -3046,12 +3104,12 @@ No further notices will be issued. オプション - + Decrease priority - + Increase priority @@ -5269,13 +5327,13 @@ Please install it manually. UP 速度 - + Down Speed i.e: Download speed - + Up Speed i.e: Upload speed @@ -5285,7 +5343,7 @@ Please install it manually. - + ETA i.e: Estimated Time of Arrival / Time left ETA @@ -5299,22 +5357,22 @@ Please install it manually. いいえ(&N) - + Column visibility - + Start 開始 - + Pause 一時停止 - + Delete 削除 @@ -5335,184 +5393,184 @@ Please install it manually. 永久に削除 - + Name i.e: torrent name 名前 - + Size i.e: torrent size サイズ - + Done % Done - + Status Torrent status (e.g. downloading, seeding, paused) 状態 - + Seeds i.e. full sources (often untranslated) - + Peers i.e. partial sources (often untranslated) - + Ratio Share ratio - - + + Label - + Added On Torrent was added to transfer list on 01/01/2010 08:00 - + Completed On Torrent was completed on 01/01/2010 08:00 - + Down Limit i.e: Download limit - + Up Limit i.e: Upload limit - + Choose save path 保存パスの選択 - + Save path creation error 保存パスの作成エラー - + Could not create the save path 保存パスを作成できませんでした - + Torrent Download Speed Limiting - + Torrent Upload Speed Limiting - + New Label - + Label: - + Invalid label name - + Please don't use any special characters in the label name. - + Rename 名前の変更 - + New name: - + Preview file... - + Limit upload rate... - + Limit download rate... - + Open destination folder 作成先のフォルダを開く - + Move up i.e. move up in the queue - + Move down i.e. Move down in the queue - + Move to top i.e. Move to top of the queue - + Move to bottom i.e. Move to bottom of the queue - + Set location... - + Priority 優先度 @@ -5521,43 +5579,43 @@ Please install it manually. 購入 - + Force recheck - + Copy magnet link - + Super seeding mode - + Rename... - + Download in sequential order - + Download first and last piece first - + New... New label... - + Reset Reset label @@ -6790,74 +6848,74 @@ However, those plugins were disabled. misc - + B bytes B - + KiB kibibytes (1024 bytes) KiB - + MiB mebibytes (1024 kibibytes) MiB - + GiB gibibytes (1024 mibibytes) GiB - + TiB tebibytes (1024 gibibytes) TiB - - - - + + + + Unknown 不明 - + %1h %2m e.g: 3hours 5minutes - + %1d %2h e.g: 2days 10hours - + Unknown Unknown (size) 不明 - + qBittorrent will shutdown the computer now because all downloads are complete. - + < 1m < 1 minute < 1 分 - + %1m e.g: 10minutes %1 分 diff --git a/src/lang/qbittorrent_ko.ts b/src/lang/qbittorrent_ko.ts index a8c1c9c05..f909d73f3 100644 --- a/src/lang/qbittorrent_ko.ts +++ b/src/lang/qbittorrent_ko.ts @@ -1969,12 +1969,12 @@ list: 업로딩 속도: - + Open Torrent Files 토런트 파일 열기 - + Torrent Files 토런트 파일 @@ -2137,7 +2137,7 @@ download list? 개발자: 크리스토프 두메스 :: Copyright (c) 2006 - + qBittorrent 큐비토런트 @@ -2388,7 +2388,7 @@ Please close the other one first. 기다려주십시오... - + Transfers 전송 @@ -2415,7 +2415,7 @@ Please close the other one first. - + qBittorrent %1 e.g: qBittorrent v0.x 큐비토런트 %1 @@ -2483,15 +2483,15 @@ Please close the other one first. 큐비토런트 %1가 시작되었습니다. - - + + DL speed: %1 KiB/s e.g: Download speed: 10 KiB/s 다운로딩 속도: %1 KiB/s - - + + UP speed: %1 KiB/s e.g: Upload speed: 10 KiB/s 업로딩 속도: %1 KiB/s @@ -2574,13 +2574,13 @@ Please close the other one first. '%1' 가 다운로드를 다시 시작되었습니다. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1가 다운로드를 완료하였습니다. - + I/O Error i.e: Input/Output Error I/O 에러 @@ -2640,38 +2640,65 @@ Please close the other one first. 오류 발생 (디스크가 꽉찼습니까?), '%1'가 정지 되었습니다. - + Search 검색 - + Torrent file association - + + Set the password... + + + + qBittorrent is not the default application to open torrent files or Magnet links. Do you want to associate qBittorrent to torrent files and Magnet links? - + + + Password lock + + + + + + Please define the locking password: + + + + + Password update + + + + + The UI lock password has been successfully updated + + + + RSS - + Transfers (%1) - + Download completion 다운 완료 - + An I/O error occured for torrent %1. Reason: %2 e.g: An error occured for torrent xxx.avi. @@ -2680,28 +2707,48 @@ Do you want to associate qBittorrent to torrent files and Magnet links? 이유: %2 - + Alt+2 shortcut to switch to third tab - + Recursive download confirmation - + The torrent %1 contains torrent files, do you want to proceed with their download? - + + UI lock password + + + + + Please type the UI lock password: + + + + + Invalid password + + + + + The password is invalid + + + + Exiting qBittorrent - + Always @@ -2711,7 +2758,7 @@ Do you want to associate qBittorrent to torrent files and Magnet links? 큐비토런트 %1 - + qBittorrent %1 (Down: %2/s, Up: %3/s) %1 is qBittorrent version 큐비토렌트 %1 (다운:%2/초, 업:%3/초) @@ -2789,18 +2836,18 @@ Are you sure you want to quit qBittorrent? 비율 - + Alt+1 shortcut to switch to first tab - + Url download error Url 다운로드 오류 - + Couldn't download file at url: %1, reason: %2. 다음 주소(Url)에서 파일을 다운로드할수 없습니다: %1, 이유:%2. @@ -2826,46 +2873,46 @@ Are you sure you want to quit qBittorrent? 다음 Url 완전체(Url seed)의 검색이 실패하였습니다: %1, 관련내용: %2 - + Ctrl+F shortcut to switch to search tab - + Alt+3 shortcut to switch to fourth tab - - + + Yes - - + + No 아니오 - + Never 전혀 사용안함 - + Global Upload Speed Limit 전체 업로드 속도 제한 - + Global Download Speed Limit 전체 다운 속도 제한 - + Some files are currently transferring. Are you sure you want to quit qBittorrent? 현재 몇몇 파일은 아직 전송 중에 있습니다. 큐비토렌트를 종료하시겠습니까? @@ -2934,7 +2981,7 @@ Are you sure you want to quit qBittorrent? 업로드 - + Options were saved successfully. 설정이 성공적으로 저장되었습니다. @@ -3554,17 +3601,17 @@ No further notices will be issued. - + &Add File... - + E&xit - + &Options... @@ -3597,22 +3644,22 @@ No further notices will be issued. 웹사이트 방문 - + Add &URL... - + Torrent &creator - + Set upload limit... - + Set download limit... @@ -3621,92 +3668,103 @@ No further notices will be issued. 참고자료 - + &About - + &Start - + &Pause - + &Delete - + P&ause All - + S&tart All - + Visit &Website - + Report a &bug - + &Documentation - + Set global download limit... - + Set global upload limit... - + &Log viewer... - + Log viewer - + Shutdown when downloads complete + + + + Lock qBittorrent + + + + + Ctrl+L + + Log Window 로그 창 - - + + Alternative speed limits - + &RSS reader - + Search &engine @@ -3719,22 +3777,22 @@ No further notices will be issued. 설정한 속도 제한을 사용하기 - + Top &tool bar - + Display top tool bar - + &Speed in title bar - + Show transfer speed in title bar @@ -3831,12 +3889,12 @@ No further notices will be issued. 전송 - + Preview file 미리보기 - + Clear log 로그 지우기 @@ -3885,12 +3943,12 @@ No further notices will be issued. 토런트 열기 - + Decrease priority 우선순위(priority)를 낮추기 - + Increase priority 우선순위(priority)를 낮추기 @@ -6308,13 +6366,13 @@ Please install it manually. 업로드 속도 - + Down Speed i.e: Download speed 다운로드 속도 - + Up Speed i.e: Upload speed 업로드 속도 @@ -6329,7 +6387,7 @@ Please install it manually. 비율 - + ETA i.e: Estimated Time of Arrival / Time left 남은시간 @@ -6343,22 +6401,22 @@ Please install it manually. &아니요 - + Column visibility 세로행 숨기기 - + Start 시작 - + Pause 정지 - + Delete 삭제 @@ -6379,150 +6437,150 @@ Please install it manually. 영구 삭제 - + Name i.e: torrent name 토렌트 이름 - + Size i.e: torrent size 크기 - + Done % Done 완료 - + Status Torrent status (e.g. downloading, seeding, paused) 상태 - + Seeds i.e. full sources (often untranslated) 완전체 - + Peers i.e. partial sources (often untranslated) 공유자(Peers) - + Ratio Share ratio 비율 - - + + Label 라벨 - + Added On Torrent was added to transfer list on 01/01/2010 08:00 추가됨 - + Completed On Torrent was completed on 01/01/2010 08:00 완료됨 - + Down Limit i.e: Download limit 다운 제한 - + Up Limit i.e: Upload limit 업 제한 - + Choose save path 저장 경로 선택 - + Save path creation error - + Could not create the save path 저장 경로를 생성할수가 없습니다 - + Torrent Download Speed Limiting 토렌트 다운로드 속도 제한 - + Torrent Upload Speed Limiting 토렌트 업로드 속도 제한 - + New Label 새 라벨 - + Label: 라벨: - + Invalid label name 잘못된 라벨 이름 - + Please don't use any special characters in the label name. 라벨 이름에 특수 문자를 사용하지 마십시오. - + Rename 이름 바꾸기 - + New name: 새 이름: - + Preview file... - + Limit upload rate... - + Limit download rate... - + Priority 우선순위 @@ -6535,36 +6593,36 @@ Please install it manually. 다운로드 비율 제한 - + Open destination folder 저장 폴더 열기 - + Move up i.e. move up in the queue - + Move down i.e. Move down in the queue - + Move to top i.e. Move to top of the queue - + Move to bottom i.e. Move to bottom of the queue - + Set location... @@ -6581,43 +6639,43 @@ Please install it manually. 우선순위(priority)를 낮추기 - + Force recheck 강제로 재확인하기 - + Copy magnet link 마그넷 링크 (Copy magnet link) 복사하기 - + Super seeding mode 수퍼 공유 모드 (Super seeding mode) - + Rename... 이름 바꾸기... - + Download in sequential order 차레대로 다운받기 - + Download first and last piece first 첫번째 조각과 마지막 조각을 먼저 다운받기 - + New... New label... 새라벨... - + Reset Reset label 재설정 @@ -7927,48 +7985,48 @@ However, those plugins were disabled. misc - + qBittorrent will shutdown the computer now because all downloads are complete. - + B bytes 바이트 - + KiB kibibytes (1024 bytes) 킬로바이트 - + MiB mebibytes (1024 kibibytes) 메가바이트 - + GiB gibibytes (1024 mibibytes) 기가바이트 - + TiB tebibytes (1024 gibibytes) 테라바이트 - + %1h %2m e.g: 3hours 5minutes - + %1d %2h e.g: 2days 10hours @@ -7989,10 +8047,10 @@ However, those plugins were disabled. - - - - + + + + Unknown 알수 없음 @@ -8007,19 +8065,19 @@ However, those plugins were disabled. - + Unknown Unknown (size) 알수 없음 - + < 1m < 1 minute < 1분 - + %1m e.g: 10minutes %1분 diff --git a/src/lang/qbittorrent_nb.ts b/src/lang/qbittorrent_nb.ts index 7479416ca..8b4f5f656 100644 --- a/src/lang/qbittorrent_nb.ts +++ b/src/lang/qbittorrent_nb.ts @@ -1256,7 +1256,7 @@ You should get this information from your Web browser preferences. GUI - + Open Torrent Files Åpne torrentfiler @@ -1321,7 +1321,7 @@ You should get this information from your Web browser preferences. Klarte ikke å opprette mappen: - + Torrent Files Torrentfiler @@ -1549,7 +1549,7 @@ Vennligst avslutt denne først. Vent litt... - + Transfers Overføringer @@ -1580,7 +1580,7 @@ Vennligst avslutt denne først. - + qBittorrent %1 e.g: qBittorrent v0.x qBittorrent %1 @@ -1648,7 +1648,7 @@ Vennligst avslutt denne først. qBittorrent %1 er startet. - + qBittorrent qBittorrent @@ -1658,15 +1658,15 @@ Vennligst avslutt denne først. qBittorrent %1 - - + + DL speed: %1 KiB/s e.g: Download speed: 10 KiB/s Nedlastingshastighet: %1 KiB/s - - + + UP speed: %1 KiB/s e.g: Upload speed: 10 KiB/s Opplastingshastighet: %1 KiB/s @@ -1749,13 +1749,13 @@ Vennligst avslutt denne først. '%1' gjenopptatt. - + %1 has finished downloading. e.g: xxx.avi has finished downloading. %1 er ferdig nedlastet. - + I/O Error i.e: Input/Output Error Lese/Skrive feil @@ -1815,39 +1815,39 @@ Vennligst avslutt denne først. Det har oppstått en feil (full disk?), '%1' er pauset. - + Search Søk - + qBittorrent is not the default application to open torrent files or Magnet links. Do you want to associate qBittorrent to torrent files and Magnet links? - + RSS - + Alt+1 shortcut to switch to first tab - + Url download error - + Couldn't download file at url: %1, reason: %2. - + An I/O error occured for torrent %1. Reason: %2 e.g: An error occured for torrent xxx.avi. @@ -1855,99 +1855,146 @@ Do you want to associate qBittorrent to torrent files and Magnet links? - + + Set the password... + + + + Torrent file association - + + + Password lock + + + + + + Please define the locking password: + + + + + Password update + + + + + The UI lock password has been successfully updated + + + + Transfers (%1) - + Download completion - + Alt+2 shortcut to switch to third tab - + Ctrl+F shortcut to switch to search tab - + Alt+3 shortcut to switch to fourth tab - + Recursive download confirmation - + The torrent %1 contains torrent files, do you want to proceed with their download? - - + + Yes - - + + No - + Never - + Global Upload Speed Limit - + Global Download Speed Limit - + + UI lock password + + + + + Please type the UI lock password: + + + + + Invalid password + + + + + The password is invalid + + + + Exiting qBittorrent - + Some files are currently transferring. Are you sure you want to quit qBittorrent? - + Always - + qBittorrent %1 (Down: %2/s, Up: %3/s) %1 is qBittorrent version - + Options were saved successfully. Innstillingene ble lagret. @@ -2517,17 +2564,17 @@ No further notices will be issued. - + &Add File... - + E&xit - + &Options... @@ -2556,22 +2603,22 @@ No further notices will be issued. Start alle - + Add &URL... - + Torrent &creator - + Set upload limit... - + Set download limit... @@ -2580,112 +2627,123 @@ No further notices will be issued. Hjelpetekst - + &About - + &Start - + &Pause - + &Delete - + P&ause All - + S&tart All - + Visit &Website - + Report a &bug - + &Documentation - + Set global download limit... - + Set global upload limit... - + &Log viewer... - + Log viewer - - + + Alternative speed limits - + &RSS reader - + Search &engine - + Shutdown when downloads complete + + + + Lock qBittorrent + + + + + Ctrl+L + + Search engine Søkemotor - + Top &tool bar - + Display top tool bar - + &Speed in title bar - + Show transfer speed in title bar @@ -2762,12 +2820,12 @@ No further notices will be issued. Overføringer - + Preview file Forhåndsvis filen - + Clear log Nullstill loggen @@ -2784,12 +2842,12 @@ No further notices will be issued. Send en feilrapport - + Decrease priority - + Increase priority @@ -4802,19 +4860,19 @@ Please install it manually. Opplastingshastighet - + Down Speed i.e: Download speed - + Up Speed i.e: Upload speed - + ETA i.e: Estimated Time of Arrival / Time left Gjenværende tid @@ -4828,22 +4886,22 @@ Please install it manually. &Nei - + Column visibility - + Start Start - + Pause Pause - + Delete Slett @@ -4856,225 +4914,225 @@ Please install it manually. Slett data - + Name i.e: torrent name Navn - + Size i.e: torrent size Størrelse - + Done % Done - + Status Torrent status (e.g. downloading, seeding, paused) Status - + Seeds i.e. full sources (often untranslated) - + Peers i.e. partial sources (often untranslated) - + Ratio Share ratio - - + + Label - + Added On Torrent was added to transfer list on 01/01/2010 08:00 - + Completed On Torrent was completed on 01/01/2010 08:00 - + Down Limit i.e: Download limit - + Up Limit i.e: Upload limit - + Choose save path Velg filsti for nedlasting - + Save path creation error Feil ved oprettelsen av filsti - + Could not create the save path Kunne ikke opprette nedlastingsfilstien - + Torrent Download Speed Limiting - + Torrent Upload Speed Limiting - + New Label - + Label: - + Invalid label name - + Please don't use any special characters in the label name. - + Rename - + New name: - + Preview file... - + Limit upload rate... - + Limit download rate... - + Open destination folder - + Move up i.e. move up in the queue - + Move down i.e. Move down in the queue - + Move to top i.e. Move to top of the queue - + Move to bottom i.e. Move to bottom of the queue - + Set location... - + Priority - + Force recheck - + Copy magnet link - + Super seeding mode - + Rename... - + Download in sequential order - + Download first and last piece first - + New... New label... - + Reset Reset label @@ -6124,48 +6182,48 @@ However, those plugins were disabled. misc - + qBittorrent will shutdown the computer now because all downloads are complete. - + B bytes B - + KiB kibibytes (1024 bytes) KiB - + MiB mebibytes (1024 kibibytes) MiB - + GiB gibibytes (1024 mibibytes) GiB - + TiB tebibytes (1024 gibibytes) TiB - + %1h %2m e.g: 3hours 5minutes - + %1d %2h e.g: 2days 10hours @@ -6181,10 +6239,10 @@ However, those plugins were disabled. timer - - - - + + + + Unknown ukjent @@ -6199,19 +6257,19 @@ However, those plugins were disabled. dager - + Unknown Unknown (size) Ukjent - + < 1m < 1 minute < 1 min - + %1m e.g: 10minutes %1min diff --git a/src/lang/qbittorrent_nl.ts b/src/lang/qbittorrent_nl.ts index 9751d9e26..b40890e2a 100644 --- a/src/lang/qbittorrent_nl.ts +++ b/src/lang/qbittorrent_nl.ts @@ -2674,6 +2674,42 @@ Do you want to associate qBittorrent to torrent files and Magnet links? Exiting qBittorrent + + Set the password... + + + + Password lock + + + + Please define the locking password: + + + + Password update + + + + The UI lock password has been successfully updated + + + + UI lock password + + + + Please type the UI lock password: + + + + Invalid password + + + + The password is invalid + + GeoIP @@ -3461,6 +3497,14 @@ No further notices will be issued. Shutdown when downloads complete + + Lock qBittorrent + + + + Ctrl+L + + PeerAdditionDlg diff --git a/src/lang/qbittorrent_pl.ts b/src/lang/qbittorrent_pl.ts index a0cbb3b2d..e7f4efe58 100644 --- a/src/lang/qbittorrent_pl.ts +++ b/src/lang/qbittorrent_pl.ts @@ -2764,6 +2764,42 @@ Czy powiązać qBittorrent z plikami torrent i linkami Magnet? Exiting qBittorrent Zamykanie qBittorrent + + Set the password... + + + + Password lock + + + + Please define the locking password: + + + + Password update + + + + The UI lock password has been successfully updated + + + + UI lock password + + + + Please type the UI lock password: + + + + Invalid password + + + + The password is invalid + + GeoIP @@ -3592,6 +3628,14 @@ W przyszłości powiadomienie nie będzie wyświetlane. Shutdown when downloads complete + + Lock qBittorrent + + + + Ctrl+L + + PeerAdditionDlg diff --git a/src/lang/qbittorrent_pt.ts b/src/lang/qbittorrent_pt.ts index 4d6c31115..6501913b7 100644 --- a/src/lang/qbittorrent_pt.ts +++ b/src/lang/qbittorrent_pt.ts @@ -2642,6 +2642,42 @@ Gostaria de associar o qBittorrent para arquivos torrent e links magnéticos?Exiting qBittorrent Saindo do qBittorrent + + Set the password... + + + + Password lock + + + + Please define the locking password: + + + + Password update + + + + The UI lock password has been successfully updated + + + + UI lock password + + + + Please type the UI lock password: + + + + Invalid password + + + + The password is invalid + + GeoIP @@ -3455,6 +3491,14 @@ Nenhum outro aviso será dado. Shutdown when downloads complete + + Lock qBittorrent + + + + Ctrl+L + + PeerAdditionDlg diff --git a/src/lang/qbittorrent_pt_BR.ts b/src/lang/qbittorrent_pt_BR.ts index 4d6c31115..6501913b7 100644 --- a/src/lang/qbittorrent_pt_BR.ts +++ b/src/lang/qbittorrent_pt_BR.ts @@ -2642,6 +2642,42 @@ Gostaria de associar o qBittorrent para arquivos torrent e links magnéticos?Exiting qBittorrent Saindo do qBittorrent + + Set the password... + + + + Password lock + + + + Please define the locking password: + + + + Password update + + + + The UI lock password has been successfully updated + + + + UI lock password + + + + Please type the UI lock password: + + + + Invalid password + + + + The password is invalid + + GeoIP @@ -3455,6 +3491,14 @@ Nenhum outro aviso será dado. Shutdown when downloads complete + + Lock qBittorrent + + + + Ctrl+L + + PeerAdditionDlg diff --git a/src/lang/qbittorrent_ro.ts b/src/lang/qbittorrent_ro.ts index cad9af08c..7b2f95427 100644 --- a/src/lang/qbittorrent_ro.ts +++ b/src/lang/qbittorrent_ro.ts @@ -2570,6 +2570,42 @@ Do you want to associate qBittorrent to torrent files and Magnet links? Exiting qBittorrent + + Set the password... + + + + Password lock + + + + Please define the locking password: + + + + Password update + + + + The UI lock password has been successfully updated + + + + UI lock password + + + + Please type the UI lock password: + + + + Invalid password + + + + The password is invalid + + GeoIP @@ -3369,6 +3405,14 @@ No further notices will be issued. Shutdown when downloads complete + + Lock qBittorrent + + + + Ctrl+L + + PeerAdditionDlg diff --git a/src/lang/qbittorrent_ru.ts b/src/lang/qbittorrent_ru.ts index 9e8993a3d..aeb81ca2d 100644 --- a/src/lang/qbittorrent_ru.ts +++ b/src/lang/qbittorrent_ru.ts @@ -2754,6 +2754,42 @@ Do you want to associate qBittorrent to torrent files and Magnet links? Или Завершаю работу будет правильнее? Завершение работы qBittorrent + + Set the password... + + + + Password lock + + + + Please define the locking password: + + + + Password update + + + + The UI lock password has been successfully updated + + + + UI lock password + + + + Please type the UI lock password: + + + + Invalid password + + + + The password is invalid + + GeoIP @@ -3589,6 +3625,14 @@ No further notices will be issued. Shutdown when downloads complete + + Lock qBittorrent + + + + Ctrl+L + + PeerAdditionDlg diff --git a/src/lang/qbittorrent_sk.ts b/src/lang/qbittorrent_sk.ts index 8a7a2b269..134bcd569 100644 --- a/src/lang/qbittorrent_sk.ts +++ b/src/lang/qbittorrent_sk.ts @@ -2668,6 +2668,42 @@ Chcete asociovať qbittorrent so súbormi torrent a odkazmi Magnet?Exiting qBittorrent Ukončuje sa qBittorrent + + Set the password... + + + + Password lock + + + + Please define the locking password: + + + + Password update + + + + The UI lock password has been successfully updated + + + + UI lock password + + + + Please type the UI lock password: + + + + Invalid password + + + + The password is invalid + + GeoIP @@ -3481,6 +3517,14 @@ Už vás nebudeme ďalej upozorňovať. Shutdown when downloads complete + + Lock qBittorrent + + + + Ctrl+L + + PeerAdditionDlg diff --git a/src/lang/qbittorrent_sr.ts b/src/lang/qbittorrent_sr.ts index 3fd044e84..a24791312 100644 --- a/src/lang/qbittorrent_sr.ts +++ b/src/lang/qbittorrent_sr.ts @@ -1316,6 +1316,42 @@ Do you want to associate qBittorrent to torrent files and Magnet links? Exiting qBittorrent Излазак из qBittorrent-а + + Set the password... + + + + Password lock + + + + Please define the locking password: + + + + Password update + + + + The UI lock password has been successfully updated + + + + UI lock password + + + + Please type the UI lock password: + + + + Invalid password + + + + The password is invalid + + GeoIP @@ -1989,6 +2025,14 @@ No further notices will be issued. Shutdown when downloads complete + + Lock qBittorrent + + + + Ctrl+L + + PeerAdditionDlg diff --git a/src/lang/qbittorrent_sv.ts b/src/lang/qbittorrent_sv.ts index 723f7e5ec..4ca90c69e 100644 --- a/src/lang/qbittorrent_sv.ts +++ b/src/lang/qbittorrent_sv.ts @@ -1725,6 +1725,42 @@ Vill du associera qBittorrent med torrentfiler och Magnet-länkar? Exiting qBittorrent Avslutar qBittorrent + + Set the password... + + + + Password lock + + + + Please define the locking password: + + + + Password update + + + + The UI lock password has been successfully updated + + + + UI lock password + + + + Please type the UI lock password: + + + + Invalid password + + + + The password is invalid + + GeoIP @@ -2406,6 +2442,14 @@ Detta meddelande kommer inte att visas igen. Shutdown when downloads complete + + Lock qBittorrent + + + + Ctrl+L + + PeerAdditionDlg diff --git a/src/lang/qbittorrent_tr.ts b/src/lang/qbittorrent_tr.ts index 5f85c3b4d..e7ccb1abf 100644 --- a/src/lang/qbittorrent_tr.ts +++ b/src/lang/qbittorrent_tr.ts @@ -2721,6 +2721,42 @@ qBittorrent'u bunlarla ilişkilendirmek ister misiniz? Exiting qBittorrent qBittorrent'ten çıkılıyor + + Set the password... + + + + Password lock + + + + Please define the locking password: + + + + Password update + + + + The UI lock password has been successfully updated + + + + UI lock password + + + + Please type the UI lock password: + + + + Invalid password + + + + The password is invalid + + GeoIP @@ -3525,6 +3561,14 @@ Başka bir bildiri yayınlanmayacaktır. Shutdown when downloads complete + + Lock qBittorrent + + + + Ctrl+L + + PeerAdditionDlg diff --git a/src/lang/qbittorrent_uk.ts b/src/lang/qbittorrent_uk.ts index 77c946a97..c15c50abc 100644 --- a/src/lang/qbittorrent_uk.ts +++ b/src/lang/qbittorrent_uk.ts @@ -2455,6 +2455,42 @@ Do you want to associate qBittorrent to torrent files and Magnet links? Exiting qBittorrent Вихід із qBittorrent + + Set the password... + + + + Password lock + + + + Please define the locking password: + + + + Password update + + + + The UI lock password has been successfully updated + + + + UI lock password + + + + Please type the UI lock password: + + + + Invalid password + + + + The password is invalid + + GeoIP @@ -3272,6 +3308,14 @@ No further notices will be issued. Shutdown when downloads complete + + Lock qBittorrent + + + + Ctrl+L + + PeerAdditionDlg diff --git a/src/lang/qbittorrent_zh.ts b/src/lang/qbittorrent_zh.ts index 6cd8f916c..90cc98229 100644 --- a/src/lang/qbittorrent_zh.ts +++ b/src/lang/qbittorrent_zh.ts @@ -2867,6 +2867,42 @@ Do you want to associate qBittorrent to torrent files and Magnet links? Exiting qBittorrent 正在退出qBittorrent + + Set the password... + + + + Password lock + + + + Please define the locking password: + + + + Password update + + + + The UI lock password has been successfully updated + + + + UI lock password + + + + Please type the UI lock password: + + + + Invalid password + + + + The password is invalid + + GeoIP @@ -3670,6 +3706,14 @@ No further notices will be issued. Shutdown when downloads complete + + Lock qBittorrent + + + + Ctrl+L + + PeerAdditionDlg diff --git a/src/lang/qbittorrent_zh_TW.ts b/src/lang/qbittorrent_zh_TW.ts index acc7594e4..3839e8b47 100644 --- a/src/lang/qbittorrent_zh_TW.ts +++ b/src/lang/qbittorrent_zh_TW.ts @@ -1820,6 +1820,42 @@ Do you want to associate qBittorrent to torrent files and Magnet links? Exiting qBittorrent 退出 qBittorrent + + Set the password... + + + + Password lock + + + + Please define the locking password: + + + + Password update + + + + The UI lock password has been successfully updated + + + + UI lock password + + + + Please type the UI lock password: + + + + Invalid password + + + + The password is invalid + + GeoIP @@ -2501,6 +2537,14 @@ No further notices will be issued. Shutdown when downloads complete + + Lock qBittorrent + + + + Ctrl+L + + PeerAdditionDlg diff --git a/src/preferences.h b/src/preferences.h index f2d73c839..042219b43 100644 --- a/src/preferences.h +++ b/src/preferences.h @@ -852,6 +852,29 @@ public: // Advanced settings + static void setUILockPassword(QString clear_password) { + QIniSettings settings("qBittorrent", "qBittorrent"); + QCryptographicHash md5(QCryptographicHash::Md5); + md5.addData(clear_password.toLocal8Bit()); + QString md5_password = md5.result().toHex(); + settings.setValue("Locking/password", md5_password); + } + + static QString getUILockPasswordMD5() { + QIniSettings settings("qBittorrent", "qBittorrent"); + return settings.value("Locking/password", QString()).toString(); + } + + static bool isUILocked() { + QIniSettings settings("qBittorrent", "qBittorrent"); + return settings.value("Locking/locked", false).toBool(); + } + + static void setUILocked(bool locked) { + QIniSettings settings("qBittorrent", "qBittorrent"); + return settings.setValue("Locking/locked", locked); + } + static bool shutdownWhenDownloadsComplete() { QIniSettings settings("qBittorrent", "qBittorrent"); return settings.value(QString::fromUtf8("Preferences/Downloads/AutoShutDownOnCompletion"), false).toBool(); diff --git a/src/transferlistdelegate.h b/src/transferlistdelegate.h index 6af1a5a71..172ff79e2 100644 --- a/src/transferlistdelegate.h +++ b/src/transferlistdelegate.h @@ -73,7 +73,7 @@ public: qulonglong tot_val = index.data().toULongLong(); QString display = QString::number((qulonglong)tot_val/1000000); if(tot_val%2 == 0) { - // Scrape was sucessful, we have total values + // Scrape was successful, we have total values display += " ("+QString::number((qulonglong)(tot_val%1000000)/10)+")"; } QItemDelegate::drawBackground(painter, opt, index); diff --git a/src/ui/mainwindow.ui b/src/ui/mainwindow.ui index fbcd75baf..a5167efc2 100644 --- a/src/ui/mainwindow.ui +++ b/src/ui/mainwindow.ui @@ -135,6 +135,8 @@ + + @@ -330,6 +332,17 @@ Shutdown when downloads complete + + + Lock qBittorrent + + + Lock qBittorrent + + + Ctrl+L + +